/* ========================================
   MAE SEGURA - CSS COMPLETO FINAL
   Logo: 180px (desktop) / 120px (mobile)
   WhatsApp: 98px (desktop) / 77px (mobile)
   Header: NÃO FIXO
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #FFB6C1;
    --color-secondary: #4A90E2;
    --color-accent: #FF69B4;
    --color-dark: #2C3E50;
    --color-light: #F8F9FA;
    --color-white: #FFFFFF;
    --color-success: #28A745;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
    overflow-x: hidden;
    word-wrap: break-word;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    width: 100%;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

p, h1, h2, h3, h4, h5, h6, span, div {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* ========================================
   HEADER - NÃO FIXO + LOGO 180px
   ======================================== */

.header {
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
    position: relative; /* NÃO FIXO */
    width: 100%;
    z-index: 1000;
    padding: 0.5rem 0; /* Padding reduzido */
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO 180px */
.logo img {
    height: 180px;
    width: auto;
    transition: var(--transition);
}

.nav {
    display: flex;
    gap: var(--spacing-md);
}

.nav-link {
    font-weight: 500;
    color: var(--color-dark);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--color-secondary);
}

.btn-header {
    background-color: var(--color-success);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-header:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 32px;
    height: 3px;
    background-color: var(--color-dark);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
    background-color: var(--color-accent);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
    background-color: var(--color-accent);
}

/* ========================================
   BOTÕES
   ======================================== */

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--color-white);
    color: var(--color-secondary);
    padding: 1rem 2rem;
    border: 2px solid var(--color-secondary);
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

.btn-secondary:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-3px);
}

.btn-success {
    background-color: #4CAF50;
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-success:hover {
    background-color: #45a049;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ========================================
   HERO
   ======================================== */

.hero {
    margin-top: 0; /* Sem margin pois header não é fixo */
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    color: var(--color-white);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

.hero-title .highlight {
    color: var(--color-accent);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-md);
    font-weight: 400;
}

.hero-list {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.hero-list li {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
    padding-left: 0;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
}

/* ========================================
   QUEM TEM DIREITO
   ======================================== */

.who-has-right {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-light);
}

.section-title-center {
    font-size: 2rem;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    line-height: 1.4;
    font-weight: 400;
}

.title-highlight {
    color: var(--color-accent);
    font-weight: 700;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.right-card {
    background-color: var(--color-white);
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 200px;
}

.right-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.check-icon {
    width: 50px;
    height: 50px;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.right-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-dark);
}

.rights-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* ========================================
   DEPOIMENTOS
   ======================================== */

.testimonials {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
}

.section-title .highlight {
    color: var(--color-secondary);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-dark);
    margin-bottom: var(--spacing-lg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.testimonial-card {
    background-color: var(--color-light);
    border-radius: 15px;
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto var(--spacing-sm);
    object-fit: cover;
    border: 3px solid var(--color-primary);
}

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

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
}

.testimonial-name {
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 0.25rem;
}

.testimonial-location {
    font-size: 0.9rem;
    color: #6c757d;
}

.testimonials-cta {
    text-align: center;
}

/* ========================================
   GOOGLE REVIEWS
   ======================================== */

.google-reviews {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    color: var(--color-white);
    text-align: center;
}

.reviews-content h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.reviews-badge {
    max-width: 200px;
    margin: 0 auto var(--spacing-sm);
}

/* ========================================
   BENEFÍCIOS
   ======================================== */

.benefits {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.benefit-card {
    background-color: var(--color-white);
    padding: var(--spacing-md);
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-sm);
}

.benefit-card h3 {
    color: var(--color-secondary);
    margin-bottom: var(--spacing-xs);
    font-size: 1.3rem;
}

.benefit-card p {
    color: var(--color-dark);
    line-height: 1.6;
}

/* ========================================
   COMO FUNCIONA
   ======================================== */

.how-it-works {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.step-card {
    text-align: center;
    padding: var(--spacing-md);
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-sm);
}

.step-card h3 {
    color: var(--color-secondary);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.step-card p {
    color: var(--color-dark);
    line-height: 1.7;
}

.steps-cta {
    text-align: center;
}

/* ========================================
   SOBRE O BENEFÍCIO
   ======================================== */

.about-benefit {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-text h2 {
    color: var(--color-secondary);
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    word-wrap: break-word;
    line-height: 1.3;
}

.about-text h3 {
    color: var(--color-dark);
    font-size: 1.5rem;
    margin: var(--spacing-md) 0 var(--spacing-sm);
    word-wrap: break-word;
    line-height: 1.3;
}

.about-text p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
    text-align: justify;
    word-wrap: break-word;
}

.about-list {
    list-style: none;
    padding-left: 0;
}

.about-list li {
    margin-bottom: var(--spacing-xs);
    font-size: 1.05rem;
    word-wrap: break-word;
    line-height: 1.5;
}

.about-image img {
    max-width: 400px;
    margin: 0 auto;
}

/* ========================================
   CTA FINAL
   ======================================== */

.final-cta {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
    color: var(--color-white);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-md);
}

/* ========================================
   SOBRE A EMPRESA
   ======================================== */

.about-company {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
    text-align: center;
}

.about-company p {
    max-width: 800px;
    margin: 0 auto var(--spacing-md);
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-info {
    background-color: var(--color-light);
    padding: var(--spacing-md);
    border-radius: 15px;
    border-left: 4px solid var(--color-accent);
    margin: var(--spacing-md) auto !important;
    max-width: 600px;
}

.contact-info strong {
    color: var(--color-secondary);
    font-size: 1.2rem;
}

.email-link-inline {
    color: var(--color-secondary);
    text-decoration: underline;
    font-weight: 600;
    transition: var(--transition);
}

.email-link-inline:hover {
    color: var(--color-accent);
    text-decoration: none;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: var(--spacing-lg) 0 var(--spacing-sm);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.2fr 1fr;
    gap: 2rem;
    margin-bottom: var(--spacing-md);
    align-items: start;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

/* LOGO */
.footer-logo {
    max-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.footer-logo img {
    height: 200px;
    width: auto;
    margin-bottom: 0;
    display: block;
}

/* TÍTULOS */
.footer h4 {
    margin-bottom: 1rem;
    color: var(--color-primary);
    font-size: 1.1rem;
    font-weight: 600;
}

/* LINKS RÁPIDOS */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-primary);
}

/* CONTATO */
.footer-contact p {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.contact-link {
    color: var(--color-primary) !important;
    font-weight: 500;
    text-decoration: none;
}

.contact-link:hover {
    color: var(--color-white) !important;
}

/* REDES SOCIAIS */
.footer-social {
    min-width: 160px;
}

.footer-social h4 {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid transparent;
    text-decoration: none;
    width: 100%;
    max-width: 150px;
}

.social-link:hover {
    background-color: rgba(255, 182, 193, 0.2);
    border-color: var(--color-primary);
    transform: translateX(5px);
}

.social-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: var(--transition);
}

.social-link:hover .social-icon {
    transform: scale(1.15);
}

/* Cores específicas no hover */
.social-link:nth-child(1):hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    border-color: #bc1888;
}

.social-link:nth-child(2):hover {
    background-color: #1877f2;
    border-color: #1877f2;
}

.social-link:nth-child(3):hover {
    background-color: #000000;
    border-color: #69C9D0;
}

/* FOOTER BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-sm);
    text-align: center;
    margin-top: var(--spacing-md);
}

.footer-bottom p {
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   WHATSAPP - 98px (30% MENOR)
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 98px; /* 30% menor que 140px */
    height: 98px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: opacity 0.5s ease, transform 0.3s ease;
    animation: float 3s ease-in-out infinite;
    opacity: 1; /* SEMPRE VISÍVEL */
    visibility: visible; /* SEMPRE VISÍVEL */
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

.whatsapp-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(3px 3px 8px rgba(0, 0, 0, 0.4));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ========================================
   TABLET
   ======================================== */

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero {
        margin-top: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-lg);
        z-index: 999;
        gap: var(--spacing-sm);
    }
    
    .nav.active {
        display: flex;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-link {
        padding: var(--spacing-sm);
        border-bottom: 1px solid var(--color-light);
        text-align: center;
        font-size: 1.1rem;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .btn-header {
        display: none;
    }
    
    .rights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Footer Tablet */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .footer-logo {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
    }
    
    .footer-logo img {
        margin: 0 auto var(--spacing-sm);
    }
    
    .logo img {
        height: 140px;
    }
    
    .whatsapp-float {
        width: 84px; /* 30% menor que 120px */
        height: 84px;
    }
}

/* ========================================
   MOBILE
   ======================================== */

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .container {
        padding: 0 1.25rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    section {
        padding: 2rem 0 !important;
        overflow-x: hidden;
    }
    
    .hero {
        padding: 2rem 0 !important;
        margin-top: 0;
        overflow-x: hidden;
    }
    
    .hero-content {
        gap: 1.5rem;
        padding: 0;
    }
    
    .hero-title {
        font-size: 1.65rem;
        line-height: 1.25;
        margin-bottom: 1rem;
        word-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }
    
    .hero-list {
        margin-bottom: 1.5rem;
    }
    
    .hero-list li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }
    
    .hero-image {
        display: none;
    }
    
    .section-title {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        word-wrap: break-word;
        padding: 0 0.5rem;
    }
    
    .section-title-center {
        font-size: 1.3rem;
        line-height: 1.35;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
        padding: 0 0.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
        word-wrap: break-word;
    }
    
    .btn-large {
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
        word-wrap: break-word;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-success {
        width: 100%;
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
        word-wrap: break-word;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .right-card {
        min-height: 140px;
        padding: 1.25rem 1rem;
        word-wrap: break-word;
    }
    
    .right-card p {
        font-size: 0.9rem;
        line-height: 1.5;
        word-wrap: break-word;
    }
    
    .check-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.75rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem 1rem;
        word-wrap: break-word;
    }
    
    .benefit-card h3 {
        font-size: 1.05rem;
        word-wrap: break-word;
    }
    
    .benefit-card p {
        font-size: 0.9rem;
        line-height: 1.5;
        word-wrap: break-word;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem 1rem;
        word-wrap: break-word;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.5;
        word-wrap: break-word;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .step-card {
        padding: 1.5rem 1rem;
        word-wrap: break-word;
    }
    
    .step-card h3 {
        font-size: 1.15rem;
        word-wrap: break-word;
    }
    
    .step-card p {
        font-size: 0.9rem;
        line-height: 1.5;
        word-wrap: break-word;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .about-text h2 {
        font-size: 1.4rem;
        word-wrap: break-word;
        line-height: 1.3;
    }
    
    .about-text h3 {
        font-size: 1.15rem;
        word-wrap: break-word;
        line-height: 1.3;
    }
    
    .about-text p {
        font-size: 0.9rem;
        line-height: 1.6;
        word-wrap: break-word;
        text-align: justify;
    }
    
    .about-list li {
        font-size: 0.9rem;
        line-height: 1.5;
        word-wrap: break-word;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    
    .footer-column {
        align-items: center;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer p {
        word-wrap: break-word;
    }
    
    .footer-logo {
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo img {
        height: 100px;
        margin: 0 auto var(--spacing-sm);
        display: block;
    }
    
    .footer-logo p {
        font-size: 0.9rem;
        text-align: center;
        max-width: 300px;
    }
    
    /* Links mobile */
    .footer-links ul {
        padding: 0;
    }
    
    .footer-links ul li {
        margin-bottom: 0.75rem;
    }
    
    /* Contato mobile */
    .footer-contact p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    /* Redes sociais mobile */
    .footer-social {
        text-align: center;
    }
    
    .social-links {
        align-items: center;
    }
    
    .social-link {
        width: 100%;
        max-width: 250px;
        justify-content: center;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .social-icon {
        width: 18px;
        height: 18px;
    }
    
    .logo img {
        height: 120px; /* Logo maior mobile */
    }
    
    .header {
        padding: 0.5rem 0;
    }
    
    .whatsapp-float {
        width: 77px; /* 30% menor que 110px */
        height: 77px;
        bottom: 15px;
        right: 15px;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .whatsapp-img {
        width: 100%;
        height: 100%;
    }
    
    .google-reviews {
        padding: 2rem 0 !important;
    }
    
    .reviews-content h3 {
        font-size: 1.2rem;
        word-wrap: break-word;
        padding: 0 1rem;
        line-height: 1.4;
    }
    
    .title-highlight {
        display: inline;
    }
}

/* ========================================
   ANIMAÇÕES
   ======================================== */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}