@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #191717;
    --secondary-color: #c1c1c1;
    --accent-color: #e1e0df;
    --text-color: #191717;
    --light-bg: #f4f3f2;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    line-height: 1.6;
    background: var(--light-bg);
    color: var(--text-color);
}

h1, h2, h3 {
    font-weight: 500;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header e Navegação */
header {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-header {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--primary-color);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    min-height: 30vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    padding-bottom: 4rem;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('imagem secao 1.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 1rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-content .cta-button {
    margin-top: 40rem;
}

.cta-button {
    background-color: #800020;
    color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #600018;
}

/* Sobre Section */
.sobre {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.sobre-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-align: justify;
}

.sobre-imagem img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Serviços Section */
.servicos {
    padding: 5rem 0;
    background-color: #f4f3f2;
}

.servicos h2 {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 400;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.servico-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.servico-card:hover {
    transform: translateY(-5px);
}

.servico-card i {
    font-size: 2.5rem;
    color: #8b4513;
    margin-bottom: 1rem;
}

.servico-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.servico-card p {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

/* Como Ajudar Section */
.como-ajudar {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.como-ajudar h2 {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 400;
}

.ajuda-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.ajuda-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--white);
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.ajuda-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.ajuda-item p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

/* Contato Section */
.contato {
    padding: 5rem 0;
    background-color: var(--white);
}

.contato h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.contato-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.logo-circular {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}

.logo-circular img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.contato-item {
    background: #f4f3f2;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
    flex: 1;
    min-width: 180px;
    max-width: 400px;
}

.contato-item:hover {
    transform: translateY(-5px);
}

.contato-item i {
    font-size: 2rem;
    color: #8b4513;
    margin-bottom: 1rem;
}

.contato-item h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.contato-item p, .contato-item .contact-link {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
    text-decoration: none;
}

.contato-item .contact-link {
    display: inline-block;
    margin: 0.5rem 0;
    color: #666;
    font-weight: 400;
    transition: color 0.3s ease;
}

.contato-item .contact-link:hover {
    color: #333;
}

.contato-item.endereco p {
    font-size: 1rem;
}

.mapa-container {
    margin-top: 3rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-logo {
        flex: 0 0 150px;
    }

    .contato-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .contato-item {
        width: 100%;
        max-width: 100%;
    }
}

.depoimentos {
    padding: 5rem 0;
    background-color: #f4f3f2;
    text-align: center;
}

.google-rating {
    margin: 3rem auto;
    max-width: 600px;
}

.google-rating .stars {
    color: #FFD700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.rating-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.review-count {
    color: #666;
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.depoimento-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.depoimento-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.depoimento-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.depoimento-info h3 {
    margin: 0;
    color: #333;
}

.depoimento-info .stars {
    color: #FFD700;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.depoimento-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

/* Avaliações Section */
.avaliacoes {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.avaliacoes h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.avaliacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.avaliacao-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.avaliacao-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.avaliacao-card p {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.avaliacoes-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .sobre-content {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .avaliacoes-grid {
        grid-template-columns: 1fr;
    }

    .contato-grid {
        flex-direction: column;
        align-items: center;
    }

    .contato-item {
        width: 100%;
        max-width: 100%;
    }

    .logo-header {
        height: 30px;
    }

    .logo-hero {
        max-width: 200px;
    }

    .logo-circular {
        width: 150px;
        height: 150px;
    }

    .contato-info {
        text-align: center;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    nav {
        padding: 0.5rem 1rem;
    }

    .nav-links a {
        margin-left: 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 600px) {
    .hero-logo {
        max-width: 80px;
        height: auto;
    }
}

.contact-section {
    padding: 5rem 0;
    background-color: #f4f3f2;
}

.contact-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.contact-logo {
    flex: 0 0 200px;
}

.contact-logo-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.contact-content {
    flex: 1;
    text-align: center;
}

.contato-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.contato-item {
    background: #f4f3f2;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contato-item:hover {
    transform: translateY(-5px);
}

.contato-item i {
    font-size: 2rem;
    color: #8b4513;
    margin-bottom: 1rem;
}

.contato-item h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.contato-item p, .contato-item .contact-link {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
    text-decoration: none;
}

.contact-link {
    color: #666;
    font-weight: 400;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #333;
}

.mapa-container {
    margin-top: 3rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-logo {
        flex: 0 0 150px;
    }

    .contato-grid {
        grid-template-columns: 1fr;
    }
}

.depoimentos {
    padding: 5rem 0;
    background-color: #f4f3f2;
    text-align: center;
}

.google-rating {
    margin: 3rem auto;
    max-width: 600px;
}

.google-rating .stars {
    color: #FFD700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.rating-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.review-count {
    color: #666;
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.depoimento-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.depoimento-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.depoimento-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.depoimento-info h3 {
    margin: 0;
    color: #333;
}

.depoimento-info .stars {
    color: #FFD700;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.depoimento-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1100px) {
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }
}

.area-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
}

.area-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.area-card p {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.areas-grid, .area-card, .area-card h3, .area-card p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.submit-button {
    background-color: #800020;
    color: white;
    padding: 10px 20px;
    border: 2px solid #800020;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #600018;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group h3 {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    color: #333;
}

.contato-form {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contato-form form {
    width: 100%;
    max-width: 500px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.atuacao-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.atuacao-card {
    width: 300px;
    text-align: center;
    margin: 0 auto;
} 