/* ==========================================================================
   RRM Advogados - Estilos Principais
   ========================================================================== */

:root {
    --azul-royal: #002341;
    --azul-claro: #001527;
    --azul-hover: #2a5e9e;
    --branco: #ffffff;
    --cinza-claro: #f8f9fa;
    --sombra: rgba(0, 0, 0, 0.1);
    --sombra-forte: rgba(0, 0, 0, 0.2);
    --verde-whatsapp: #25d366;
    --verde-whatsapp-hover: #1ca851;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--branco);
    overflow-x: hidden;
    background: var(--azul-royal);
}

/* Background Gradiente */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--azul-royal), var(--azul-claro));
    z-index: -1;
}

/* Header Bar */
.header-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 35, 65, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.header-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--azul-royal);
    letter-spacing: 2px;
}

.header-logo {
    height: 80px;
    width: auto;
    max-width: 150px;
    transition: var(--transition);
}

/* Efeito Glass Morphism */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    margin: 1.5rem auto;
    max-width: 1200px;
    box-shadow: 0 8px 32px var(--sombra);
    transition: var(--transition);
}

/* Remover hover effect apenas do hero */
.hero .glass-card:hover {
    transform: none;
    box-shadow: 0 8px 32px var(--sombra);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Manter hover effect para outras seções */
.services .glass-card:hover,
.about .glass-card:hover,
.testimonials .glass-card:hover,
.location .glass-card:hover,
.final-cta .glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Botões CTA - Todos verdes uniformes */
.cta-button {
    background: #25d366;
    color: white !important;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.cta-button:hover {
    background: #1ca851;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white !important;
}

/* Botão CTA Urgente */
.cta-button-urgent {
    background: #25d366;
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
    margin-top: 2rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button-urgent:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    background: #1ca851;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem;
    padding-top: 6rem;
    background: url('images/hero-imovel.jpg') center/cover no-repeat;
    background-attachment: scroll;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 35, 65, 0.8);
    z-index: 1;
}

.hero .glass-card {
    text-align: center;
    padding: 4rem 3rem;
    margin: 0 auto;
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Seções */
.intro, .services, .about, .testimonials, .location, .final-cta {
    padding: 4rem 1rem;
}

.services h2, .about h2, .testimonials h2, .location h2, .final-cta h2 {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

/* Seção Intro */
.intro {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--azul-claro), var(--azul-royal));
    position: relative;
}

.intro .glass-card {
    text-align: center;
    padding: 3rem;
    margin: 0 auto;
    max-width: 1000px;
}

.intro h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--branco);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.intro h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--branco);
    opacity: 0.9;
    line-height: 1.6;
    text-align: center;
}

.intro h3:last-child {
    margin-bottom: 0;
}

/* Grid de Serviços */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--azul-claro), var(--branco));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.service-card p {
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Sobre - Seção Unificada */
.about-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--branco);
    font-weight: 700;
    text-align: left;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-text h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-align: left;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.about .glass-card {
    padding: 3rem;
    position: relative;
    min-height: 500px;
}

/* Botão centralizado na seção inteira */
.about-cta-center {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}

.about-cta-center .cta-button {
    background: #25d366;
    color: white !important;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.about-cta-center .cta-button:hover {
    background: #1ca851;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white !important;
}

.features-list {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.features-list li {
    padding: 1rem 0;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.features-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--branco);
    font-weight: bold;
    font-size: 1.2rem;
}

.features-list li:hover {
    transform: translateX(10px);
    opacity: 1;
    color: var(--branco);
}

.features-list li:last-child {
    border-bottom: none;
}

/* Depoimentos */
.testimonials > p {
    text-align: center;
    opacity: 0.9;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    margin: 3rem 0;
    border-radius: 15px;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    animation: slideTestimonials 25s linear infinite;
    width: calc(350px * 7 + 2rem * 6); /* 7 cards + gaps */
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes slideTestimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-350px * 4 - 2rem * 3)); } /* Move 4 cards */
}

.testimonial-card {
    min-width: 320px;
    width: 320px;
    height: 250px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.testimonial-card blockquote {
    font-size: 1rem;
    font-style: italic;
    margin: 0 0 1.5rem 0;
    opacity: 0.95;
    position: relative;
    line-height: 1.6;
    flex: 1;
    display: flex;
    align-items: center;
    text-align: center;
}

.testimonial-card blockquote::before,
.testimonial-card blockquote::after {
    content: '"';
    font-size: 1.5rem;
    opacity: 0.5;
    position: absolute;
}

.testimonial-card blockquote::before {
    left: -15px;
    top: -10px;
}

.testimonial-card blockquote::after {
    right: -15px;
    bottom: -10px;
}

.testimonial-card .client-name {
    font-weight: 600;
    opacity: 0.8;
    font-size: 0.95rem;
    margin-top: auto;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.dot.active {
    background: var(--branco);
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.dot.active {
    background: var(--branco);
    transform: scale(1.2);
}

/* Localização */
.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
    margin-top: 2rem;
    min-height: 450px;
}

.location-text {
    text-align: left;
    font-size: 1.1rem;
}

.location-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--branco);
    font-weight: 600;
}

.address {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--branco);
}

.contact-methods {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-details strong {
    color: var(--branco);
    font-weight: 600;
    font-size: 1rem;
    display: block;
}

.contact-details p {
    margin: 0.2rem 0 0 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

.location-highlight {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.location-highlight p {
    margin: 0.8rem 0;
    line-height: 1.6;
}

.consultation-info {
    color: var(--branco);
    font-size: 1.05rem;
    margin-top: 1rem;
}

.location-text strong {
    color: var(--branco);
    font-weight: 600;
}

.location-map {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
   
    height: 100%;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.location-map iframe:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* CTA Final */
.final-cta .glass-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
}

.final-cta h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.contact-info {
    margin-top: 3rem;
    font-size: 1.1rem;
}

.contact-info p {
    margin: 0.5rem 0;
}

.contact-info strong {
    font-weight: 600;
}

/* Links Sociais */
.social-links {
    text-align: center;
    padding: 2rem;
    font-size: 1.1rem;
}

.social-links h3 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-links a {
    color: var(--branco);
    text-decoration: none;
    margin: 0 1rem;
    transition: var(--transition);
    padding: 0.5rem;
    border-radius: 8px;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--verde-whatsapp);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    z-index: 1000;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    background: var(--verde-whatsapp-hover);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: white;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    opacity: 0.8;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.1);
}

footer p {
    margin: 0.5rem 0;
}

/* Animações - Centralizadas */
@keyframes slideTestimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-350px * 4 - 2rem * 3)); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Responsividade */
@media (max-width: 768px) {
    /* Header otimizado */
    .header-bar {
        padding: 0.5rem 1rem;
    }
    
    .header-text {
        font-size: 0.8rem;
        font-weight: 600;
    }
    
    .header-logo {
        height: 35px;
    }
    
    /* Hero otimizado para conversão */
    .hero {
        padding: 1rem;
        padding-top: 5rem;
        min-height: 90vh;
    }
    
    .hero .glass-card {
        padding: 2rem 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 2rem;
    }
    
    /* Botão CTA otimizado para mobile */
    .cta-button-urgent {
        padding: 18px 30px;
        font-size: 16px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
        text-align: center;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Serviços otimizados */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Botões CTA otimizados */
    .cta-button {
        padding: 16px 24px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
        margin: 2rem auto 0;
        display: block;
        text-align: center;
    }
    
    /* Seção sobre otimizada */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .about-image {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 2rem;
    }
    
    .about-image img {
        width: 280px;
        height: auto;
        max-width: 90vw;
        object-fit: cover;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border: none;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    .about-text h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .about-cta-center {
        position: static;
        transform: none;
        left: auto;
        bottom: auto;
        margin-top: 2rem;
    }
    
    .about-cta-center .cta-button {
        width: 100%;
        max-width: 280px;
        padding: 16px 24px;
        font-size: 14px;
    }
    
    .features-list {
        text-align: left;
        margin: 2rem 0;
    }
    
    .features-list li {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    /* Depoimentos otimizados */
    .testimonials-slider {
        overflow: hidden;
        margin: 2rem 0;
    }
    
    .testimonials-track {
        display: flex;
        gap: 1rem;
        animation: slideTestimonials 20s linear infinite;
    }
    
    .testimonial-card {
        min-width: calc(100vw - 3rem);
        width: calc(100vw - 3rem);
        height: auto;
        min-height: 200px;
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .testimonial-card blockquote {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        white-space: normal;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .testimonial-card .client-name {
        font-size: 0.9rem;
        margin-top: auto;
    }
    
    /* Localização otimizada */
    .location-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .location-text {
        text-align: center;
        padding: 1rem;
    }

    .location-info {
        text-align: center;
    }

    .location-info h3 {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .address-box {
        margin: 1rem 0;
        text-align: center;
    }

    .contact-methods {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin: 1.5rem 0;
    }

    .contact-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .contact-details {
        text-align: center;
    }

    .contact-details strong {
        display: block;
        margin-bottom: 0.5rem;
    }

    .whatsapp-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        max-width: none;
        width: auto;
    }

    .location-highlight {
        text-align: center;
        margin-top: 1.5rem;
    }

    /* Mapa com carregamento otimizado para mobile */
    .location-map {
        height: 280px;
        border-radius: 12px;
        margin: 1rem 0;
        position: relative;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .location-map iframe {
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 12px;
        transition: opacity 0.3s ease;
    }

    .location-map::before {
        content: "Toque para carregar o mapa";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.9rem;
        font-weight: 500;
        text-align: center;
        z-index: 1;
        pointer-events: none;
    }
    
    /* CTA Final otimizado */
    .final-cta .glass-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .final-cta h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .final-cta p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    /* WhatsApp flutuante otimizado */
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    
    .whatsapp-float:hover {
        transform: scale(1.1);
    }
    
    /* Footer otimizado */
    footer {
        padding: 2rem 1rem;
        text-align: center;
    }
    
    footer p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    /* Seção Intro - Sobrescrições para mobile */
    .intro {
        padding: 2rem 1rem;
    }
    
    .intro .glass-card {
        padding: 1.5rem;
    }
    
    .intro h1 {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    
    .intro h3 {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
}

/* Ícones Font Awesome */
.fas, .fab {
    margin-right: 0.5rem;
    color: var(--branco);
}

.service-card h3 i {
    color: var(--branco);
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--branco);
    margin: 0;
}

.address-box {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--azul-royal);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.address-box p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

/* Botão WhatsApp na localização */
.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    margin-top: 0.5rem;
}

.whatsapp-button:hover {
    background: #1ca851;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white !important;
}

.whatsapp-button i {
    font-size: 1.1rem;
}
