/* Reset e Variáveis */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --branco: #ede4dd;
    --verde: #39513B;
    --vermelho: #620206;
    --preto: #211d1e;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Simple Michael', serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--preto);
    background-color: var(--branco);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

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


/* Hero Section */
.hero {
    min-height: 100vh;
    background-image: url('Imagens/Design sem nome (1).png');
    background-size: cover;
    background-position: center 70%;
    background-repeat: no-repeat;
    color: var(--branco);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 4rem 2rem;
    gap: 3rem;
    width: 100%;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(33, 29, 30, 0.5) 0%, rgba(57, 81, 59, 0.4) 100%);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 18%;
    background: linear-gradient(to top, #39513B 0%, #39513B 30%, rgba(57, 81, 59, 0.95) 60%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.hero > * {
    position: relative;
    z-index: 3;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    animation: fadeInLeft 1s ease-out;
    max-width: 700px;
    margin: 0 auto;
}

.hero-logo {
    margin-bottom: 2rem;
    text-align: center;
}

.hero-logo img {
    height: 240px;
    width: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-family: 'Simple Michael', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--branco);
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeInRight 1s ease-out;
    z-index: 1;
}

.hero-image-placeholder {
    width: 100%;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-image-placeholder img {
    width: 120%;
    height: 120%;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* Hero Image Mobile Section */
.hero-image-mobile {
    display: none;
    padding: 3rem 0;
    background: var(--branco);
}

.hero-image-mobile-wrapper {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.hero-image-mobile-wrapper img {
    width: 110%;
    height: auto;
    display: block;
    margin-left: -5%;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: #25D366;
    color: var(--branco);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* Section Titles */
.section-title {
    font-family: 'Simple Michael', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--preto);
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--verde);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefícios Section */
.beneficios {
    padding: 5rem 0;
    background-color: white;
}

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

.beneficio-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.beneficio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(98, 2, 6, 0.1);
}

.beneficio-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--vermelho) 0%, var(--verde) 100%);
    border-radius: 50%;
    padding: 14px;
    transition: all 0.3s;
}

.beneficio-icon svg {
    width: 100%;
    height: 100%;
    color: white;
    stroke: white;
}

.beneficio-card:hover .beneficio-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(98, 2, 6, 0.3);
}

.beneficio-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--preto);
}

.beneficio-card p {
    color: var(--verde);
}

/* Sobre Section */
.sobre {
    padding: 5rem 0;
    background-image: url('Imagens/Design sem nome (2).png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.sobre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(237, 228, 221, 0.5);
    z-index: 1;
}

.sobre .container {
    position: relative;
    z-index: 2;
}

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

.sobre-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.sobre-image img:hover {
    transform: scale(1.02);
}

.sobre-text .section-title {
    text-align: left;
}

.sobre-subtitle {
    font-family: 'Simple Michael', serif;
    font-size: 1.8rem;
    color: var(--vermelho);
    margin-bottom: 1.5rem;
}

.sobre-description {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--vermelho);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--verde);
    margin-top: 0.5rem;
}

/* Serviços Section */
.servicos {
    padding: 0;
    background-image: url('../Imagens/Foto Leonardo 1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    min-height: 700px;
}

.servicos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(237, 228, 221, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.servicos-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    padding: 6rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.servicos-left {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.servicos-title {
    font-family: 'Simple Michael', serif;
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--preto);
    font-weight: 400;
    margin-bottom: 1rem;
    text-align: center;
}

.highlight-red {
    color: var(--vermelho);
    font-weight: 700;
}

.servicos-list,
.servicos-list-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.servicos-list-right {
    margin-top: 0;
}

.servicos-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
    gap: 2rem;
}

.servicos-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.servicos-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servicos-image-wrapper img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.servicos-cta {
    margin-top: 1rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    width: auto;
    min-width: 300px;
}

.servico-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.servico-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.check-icon {
    color: var(--vermelho);
    font-size: 1.8rem;
    font-weight: bold;
    flex-shrink: 0;
    line-height: 1;
}

.servico-item p {
    color: var(--preto);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

/* Processo Section */
.processo {
    padding: 5rem 0;
    background-image: url('Imagens/Design sem nome 3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.processo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(237, 228, 221, 0.6);
    z-index: 1;
}

.processo .container {
    position: relative;
    z-index: 2;
}

.processo-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.processo-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--vermelho);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-marker {
    width: 40px;
    height: 40px;
    background-color: var(--vermelho);
    border-radius: 50%;
    flex-shrink: 0;
    border: 4px solid var(--branco);
    box-shadow: 0 0 0 2px var(--vermelho);
}

.timeline-content {
    background-color: var(--branco);
    padding: 1.5rem;
    border-radius: 10px;
    flex: 1;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--preto);
}

.timeline-content p {
    color: var(--verde);
}

/* Cases de Sucesso */
.cases {
    padding: 5rem 0;
    background-color: white;
}

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

.case-card {
    background: linear-gradient(to bottom, white 0%, var(--branco) 100%);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(98, 2, 6, 0.2);
    border-color: var(--vermelho);
}

.case-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--verde) 0%, var(--preto) 100%);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
    flex-shrink: 0;
}

.case-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--vermelho) 0%, var(--verde) 100%);
}

.case-content {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.case-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--vermelho);
    font-weight: 600;
}

.case-location {
    color: var(--vermelho);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.case-description {
    color: var(--preto);
    margin-bottom: 0;
    line-height: 1.8;
    font-size: 0.95rem;
}

.case-result {
    display: inline-block;
    background: linear-gradient(135deg, var(--vermelho) 0%, var(--verde) 100%);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(98, 2, 6, 0.3);
}

/* Avaliações Section */
.avaliacoes {
    padding: 5rem 0;
    background-image: url('Imagens/Design sem nome 5.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.avaliacoes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(237, 228, 221, 0.45);
    z-index: 1;
}

.avaliacoes .container {
    position: relative;
    z-index: 2;
}

.google-rating {
    text-align: center;
    margin-bottom: 3rem;
}

.rating-stars {
    font-size: 3rem;
    color: #FFA500;
    margin-bottom: 0.5rem;
}

.rating-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--preto);
    margin-bottom: 0.5rem;
}

.rating-count {
    color: var(--verde);
}

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

.avaliacao-card {
    background-color: var(--branco);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.avaliacao-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(98, 2, 6, 0.1);
}

.avaliacao-stars {
    color: #FFA500;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.avaliacao-text {
    color: var(--verde);
    margin-bottom: 1rem;
    line-height: 1.7;
    font-style: italic;
}

.avaliacao-autor {
    color: var(--preto);
    font-weight: 600;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background-color: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--preto);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: var(--branco);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--vermelho);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--verde);
    line-height: 1.7;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--vermelho) 0%, var(--preto) 100%);
    color: var(--branco);
    text-align: center;
}

.cta-title {
    font-family: 'Simple Michael', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
    background-color: #25D366;
}

.cta .btn-primary:hover {
    background-color: #1da851;
}

.cta .btn-primary svg {
    flex-shrink: 0;
}

/* Footer */
.footer {
    background-color: var(--preto);
    color: var(--branco);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 160px;
    width: auto;
    margin-bottom: 1.5rem;
    object-fit: contain;
}

.footer-section h3,
.footer-section h4 {
    font-family: var(--font-secondary);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--branco);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--vermelho);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-contact-item svg {
    flex-shrink: 0;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(237, 228, 221, 0.1);
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-10px);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: white;
    color: var(--preto);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    white-space: nowrap;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    transform: translateX(0);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid white;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    body, html {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        position: relative;
    }

    img, svg {
        max-width: 100%;
        height: auto;
    }

    .container {
        padding: 0 1rem;
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
    }

    section {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box;
    }

    /* Hero Section */
    .hero {
        grid-template-columns: 1fr;
        padding: 1rem 1rem;
        min-height: auto;
        gap: 0;
        width: 100%;
        background-image: url('Imagens/fundo hero mobile.png');
        background-size: cover;
        background-position: center;
    }

    .hero-left {
        padding: 1rem 0.5rem;
        text-align: center;
        max-width: 100%;
    }

    .hero-content {
        text-align: center;
    }

    .hero-logo {
        margin-bottom: 1rem;
    }

    .hero-logo img {
        height: 130px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .hero-text {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
        line-height: 1.6;
    }

    .hero-right {
        display: block;
        padding: 0;
        margin-top: 0.5rem;
    }

    .hero-image-placeholder {
        height: auto;
    }

    .hero-image-placeholder img {
        width: 100%;
        height: auto;
        max-width: 500px;
        margin: 0 auto;
    }

    /* Hero Image Mobile */
    .hero-image-mobile {
        display: none;
    }

    .btn-primary {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        margin-bottom: 0;
    }

    /* Benefícios Section */
    .beneficios {
        padding: 3rem 0;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }

    .beneficio-card {
        padding: 1.5rem;
    }

    .beneficio-icon {
        width: 56px;
        height: 56px;
        padding: 12px;
    }

    .beneficio-card h3 {
        font-size: 1.1rem;
    }

    .beneficio-card p {
        font-size: 0.95rem;
    }

    /* Sobre Section */
    .sobre {
        padding: 3rem 0;
    }

    .sobre-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
    }

    .sobre-text .section-title {
        text-align: center;
        font-size: 1.8rem;
    }

    .sobre-subtitle {
        font-size: 1.4rem;
        text-align: center;
    }

    .sobre-description {
        font-size: 0.95rem;
        text-align: center;
    }

    .sobre-image img {
        height: 350px;
        border-radius: 8px;
    }

    .sobre-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    /* Serviços Section */
    .servicos {
        background-attachment: scroll;
        min-height: auto;
    }

    .servicos-content {
        grid-template-columns: 1fr;
        padding: 3rem 0;
        gap: 2rem;
        max-width: 100%;
        width: 100%;
    }

    .servicos-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
        text-align: center;
        padding: 0 1rem;
    }

    .servicos-list,
    .servicos-list-right {
        padding: 0 1rem;
    }

    .servicos-right {
        display: none;
    }

    .servicos-list-right {
        margin-top: 0.5rem;
    }

    .servico-item {
        padding: 0.8rem;
        gap: 0.8rem;
    }

    .servico-item p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .check-icon {
        font-size: 1.3rem;
    }

    /* Processo Section */
    .processo {
        padding: 3rem 0;
    }

    .processo-timeline {
        padding: 0 1rem;
        position: relative;
    }

    .processo-timeline::before {
        left: calc(1rem + 15px);
    }

    .timeline-item {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .timeline-marker {
        width: 30px;
        height: 30px;
        border: 3px solid var(--branco);
    }

    .timeline-content {
        padding: 1rem;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
    }

    /* Cases Section */
    .cases {
        padding: 3rem 0;
    }

    .cases-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }

    .case-image {
        height: 250px;
        background-position: center top;
    }

    .case-content {
        padding: 1.2rem;
    }

    .case-content h3 {
        font-size: 1.1rem;
    }

    .case-description {
        font-size: 0.9rem;
    }

    /* Avaliações Section */
    .avaliacoes {
        padding: 3rem 0;
    }

    .google-rating {
        margin-bottom: 2rem;
    }

    .rating-stars {
        font-size: 2.5rem;
    }

    .rating-text {
        font-size: 1.2rem;
    }

    .avaliacoes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }

    .avaliacao-card {
        padding: 1.5rem;
    }

    .avaliacao-text {
        font-size: 0.9rem;
    }

    /* FAQ Section */
    .faq {
        padding: 3rem 0;
    }

    .faq-list {
        padding: 0 1rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }

    .faq-icon {
        font-size: 1.3rem;
    }

    .faq-answer p {
        padding: 0 1rem 1rem;
        font-size: 0.9rem;
    }

    /* CTA Section */
    .cta {
        padding: 3rem 1.5rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-text {
        font-size: 1rem;
    }


    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        padding: 0 1rem;
    }

    .footer-logo {
        height: 120px;
        margin: 0 auto 1rem;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        font-size: 0.85rem;
        padding: 1.5rem 1rem 0;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.8rem;
        padding: 0 1rem;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    /* WhatsApp Flutuante Mobile */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-tooltip {
        right: 65px;
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
        max-width: 200px;
        white-space: normal;
        text-align: center;
    }
}