/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

/* HEADER COM FUNDO PRETO */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%); /* Fundo preto fixo */
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-image {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

/* Header Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #10b981;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-small {
    font-size: 18px;
    display: inline-block;
    outline: 0;
    border: 0;
    cursor: pointer;
    will-change: box-shadow,transform;
    background: radial-gradient( 100% 100% at 100% 0%, #10b981 0%, #059669 100% );
    box-shadow: 0px 0.01em 0.01em rgb(45 35 66 / 40%), 0px 0.3em 0.7em -0.01em rgb(45 35 66 / 30%), inset 0px -0.01em 0px rgb(58 65 111 / 50%);
    padding: 0 2em;
    border-radius: 0.3em;
    color: #fff;
    height: 2.6em;
    text-shadow: 0 1px 0 rgb(0 0 0 / 40%);
    transition: box-shadow 0.15s ease, transform 0.15s ease;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: -0.01em;
    min-width: auto;
}

.btn-small:hover {
    box-shadow: 0px 0.1em 0.2em rgb(45 35 66 / 40%), 0px 0.4em 0.7em -0.1em rgb(45 35 66 / 30%), inset 0px -0.1em 0px #059669;
    transform: translateY(-0.1em);
    color: #fff;
    text-decoration: none;
}

.btn-small:active {
    box-shadow: inset 0px 0.1em 0.6em #059669;
    transform: translateY(0em);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
    background: #10b981;
}

@media (max-width: 768px) {
    .logo-image {
        height: 40px;
    }
    
    .header-nav {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .header-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-content {
        padding: 15px 0;
    }
    
    .btn-small {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.5rem;
    }
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
    justify-content: center;
    letter-spacing: -0.01em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    min-height: 60px;
    border-radius: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.45);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-arrow {
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .btn {
        padding: 1rem 1.75rem;
        font-size: 1.05rem;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .btn-large {
        padding: 1.125rem 2rem;
        font-size: 1.125rem;
        min-height: 56px;
    }
}

/* HERO SECTION COM LAYOUT VERTICAL MELHORADO */
.hero {
    padding-top: 90px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    opacity: 0.6;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2310b981" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Layout sempre em coluna única */
@media (min-width: 769px) {
    .hero {
        padding: 140px 0 120px;
        min-height: 100vh;
    }
    
    .hero-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 100px;
        min-height: auto;
    }
    
    .hero-content {
        gap: 2.5rem;
    }
}

/* Título Principal Melhorado */
.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: #1a1a1a;
    letter-spacing: -0.03em;
    margin-bottom: 0;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
}

/* Título com fonte reduzida */
.hero-title-reduced {
    font-size: clamp(2rem, 5.5vw, 3.5rem);
    line-height: 1.15;
}

.hero-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 2px;
    opacity: 0.8;
}

.text-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.text-green::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 2px;
    opacity: 0.4;
    animation: underlineGlow 2s ease-in-out infinite alternate;
}

@keyframes underlineGlow {
    0% { opacity: 0.4; transform: scaleX(1); }
    100% { opacity: 0.7; transform: scaleX(1.02); }
}

/* Vídeo Section Melhorada */
.hero-video-section {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    order: 2;
}

@media (min-width: 769px) {
    .hero-video-section {
        max-width: 750px;
    }
}

/* Video Container com design premium */
.video-container {
    position: relative;
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    aspect-ratio: 16/9;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: perspective(1000px) rotateX(2deg);
}

.video-container:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-8px);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    display: block;
}

.video-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    display: block;
}

/* Descrição Melhorada */
.hero-description {
    font-size: clamp(1.2rem, 2.8vw, 1.4rem);
    color: #4b5563;
    max-width: 700px;
    line-height: 1.8;
    margin: 0 auto;
    font-weight: 400;
    text-align: center;
    order: 3;
    position: relative;
    padding: 0 1rem;
}

.hero-description::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: #10b981;
    opacity: 0.3;
    font-family: serif;
    line-height: 1;
}

.description-highlight {
    color: #10b981;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.description-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 1px;
    opacity: 0.5;
}

/* Hero Stats - Forçando layout lado a lado no mobile */
.hero-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    order: 4;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Stats elevados com menos espaçamento */
.hero-stats-elevated {
    margin-top: -0.5rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .stat-card {
        flex: 1 1 auto;
        min-width: 140px;
    }
}

@media (min-width: 769px) {
    .hero-stats {
        gap: 3rem;
        max-width: 600px;
        justify-content: center;
    }
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 1.25rem;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
    justify-content: center;
    transition: all 0.4s ease;
    flex: 1;
    min-width: 0;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .stat-card {
        padding: 0.875rem 1rem;
        gap: 0.5rem;
        font-size: 0.9rem;
    }
}

.stat-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 1.375rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
    letter-spacing: -0.01em;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 600;
    margin-top: 1px;
}

/* Removendo o overlay de som */
.vsl-sound-overlay {
    display: none !important;
}

/* Hero CTA */
.hero-cta {
    order: 5;
}

/* SECTIONS */
.services,
.process,
.contact {
    padding: 100px 0;
    position: relative;
}

@media (max-width: 768px) {
    .services,
    .process,
    .contact {
        padding: 80px 0;
    }
}

.services {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.process {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 3rem;
    }
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    color: #059669;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
}

.section-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.15);
}

.section-title {
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.section-description {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* GRIDS */
.services-grid,
.process-grid {
    display: grid;
    gap: 2.5rem;
    margin-top: 4rem;
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 2rem;
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
}

/* CARDS */
.service-card,
.process-step {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.3);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before,
.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before,
.process-step:hover::before {
    transform: scaleX(1);
}

.service-card:hover,
.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .service-card,
    .process-step {
        padding: 2rem;
    }
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.service-title,
.step-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.service-description,
.step-description {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.service-features,
.step-features {
    list-style: none;
    padding: 0;
}

.service-features li,
.step-features li {
    color: #059669;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Process Steps */
.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

/* Contact Section */
.contact-content {
    display: grid;
    gap: 4rem;
    margin-top: 4rem;
}

@media (min-width: 769px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.3);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.contact-cta {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
}

.contact-cta h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contact-cta p {
    color: #4b5563;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

@media (max-width: 768px) {
    .contact-cta {
        padding: 2rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.footer-logo-image {
    height: 40px;
    width: auto;
    margin-bottom: 0.5rem;
    margin-left: -8px;
    align-self: flex-start;
}

.footer-description {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-address {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-address p {
    margin-bottom: 0.25rem;
}

.policy-link {
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.policy-link:hover {
    color: #059669;
}

.footer-services h4,
.footer-social h4,
.footer-contact h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-services ul {
    list-style: none;
    padding: 0;
}

.footer-services li {
    color: #d1d5db;
    margin-bottom: 0.75rem;
    padding-left: 1rem;
    position: relative;
}

.footer-services li::before {
    content: '•';
    color: #10b981;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.footer-services li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-services li a:hover {
    color: #10b981;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #059669;
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #d1d5db;
    font-weight: 600;
}

.contact-icon {
    font-size: 1.2rem;
}

.contact-schedule {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-schedule p {
    color: #d1d5db;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

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

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    animation: whatsappFloat 3s ease-in-out infinite;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 
        0 8px 25px rgba(37, 211, 102, 0.4),
        0 0 0 0 rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 
        0 12px 35px rgba(37, 211, 102, 0.5),
        0 0 0 8px rgba(37, 211, 102, 0.2);
}

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

@keyframes whatsappPulse {
    0% {
        box-shadow: 
            0 8px 25px rgba(37, 211, 102, 0.4),
            0 0 0 0 rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 
            0 12px 35px rgba(37, 211, 102, 0.5),
            0 0 0 15px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 
            0 8px 25px rgba(37, 211, 102, 0.4),
            0 0 0 0 rgba(37, 211, 102, 0.3);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-button svg {
        width: 28px;
        height: 28px;
    }
}

/* Animações de entrada */
.service-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsividade adicional */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-card {
        width: 100%;
        max-width: 280px;
    }
}



/* Video Overlay and Play Button - VSL Style */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 28px;
    z-index: 10;
    backdrop-filter: blur(2px);
}

.video-overlay:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    backdrop-filter: blur(3px);
}

.play-button {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    border: 6px solid rgba(255, 255, 255, 1);
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 0 0 15px rgba(0, 0, 0, 0.4),
        0 25px 60px rgba(16, 185, 129, 0.8),
        0 0 0 0 rgba(16, 185, 129, 0.5),
        0 0 120px rgba(16, 185, 129, 0.6),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
    animation: playButtonPulse 2s infinite;
    filter: drop-shadow(0 0 40px rgba(16, 185, 129, 1)) drop-shadow(0 0 60px rgba(16, 185, 129, 0.8));
    z-index: 100;
}

@keyframes playButtonPulse {
    0% {
        box-shadow: 
            0 15px 35px rgba(16, 185, 129, 0.4),
            0 0 0 0 rgba(16, 185, 129, 0.3);
    }
    50% {
        box-shadow: 
            0 20px 45px rgba(16, 185, 129, 0.5),
            0 0 0 15px rgba(16, 185, 129, 0.1);
    }
    100% {
        box-shadow: 
            0 15px 35px rgba(16, 185, 129, 0.4),
            0 0 0 0 rgba(16, 185, 129, 0.3);
    }
}

.play-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 42px solid white;
    border-top: 26px solid transparent;
    border-bottom: 26px solid transparent;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.play-button:hover {
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 1);
    box-shadow: 
        0 0 0 20px rgba(0, 0, 0, 0.5),
        0 35px 80px rgba(16, 185, 129, 1),
        0 0 0 0 rgba(16, 185, 129, 0.6),
        0 0 150px rgba(16, 185, 129, 0.8),
        inset 0 0 40px rgba(255, 255, 255, 0.3);
    filter: drop-shadow(0 0 50px rgba(16, 185, 129, 1)) drop-shadow(0 0 80px rgba(16, 185, 129, 1));
}

.play-button:hover::before {
    border-left-color: #f0f9ff;
}

.play-message {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.video-overlay:hover .play-message {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

/* VSL Sound Indicator */
.sound-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sound-indicator::before {
    content: '🔇';
    font-size: 1rem;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95);
}




/* Diagnostic Benefits Section */
.diagnostic-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem 0;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #6b7280;
    font-size: 0.95rem;
}

/* Enhanced Contact Cards */
.contact-card.featured {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    transform: scale(1.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-card.featured .contact-icon {
    color: white;
}

.contact-card.featured h3 {
    color: white;
}

.contact-number {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0.5rem 0;
}

.contact-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.schedule p {
    margin-bottom: 0.3rem;
}

/* Enhanced CTA Section */
.cta-header {
    text-align: center;
    margin-bottom: 2rem;
}

.cta-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.cta-feature span:first-child {
    font-size: 1.2rem;
}

.cta-guarantee {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    font-size: 0.95rem;
    color: #059669;
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
    }
    50% {
        box-shadow: 0 12px 35px rgba(16, 185, 129, 0.55);
        transform: translateY(-2px);
    }
    100% {
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
    }
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 100px 0;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-rating {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: #1a1a1a;
    font-weight: 700;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-brand {
    max-width: 400px;
}

.footer-description {
    color: #d1d5db;
    line-height: 1.6;
    margin: 1rem 0 2rem;
}

.footer-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-stat .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #10b981;
}

.footer-stat .stat-label {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 0.25rem;
}

.footer-services h4,
.footer-contact h4,
.footer-cta h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-services ul {
    list-style: none;
    padding: 0;
}

.footer-services li {
    color: #d1d5db;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-contact-item .contact-icon {
    font-size: 1.2rem;
    margin-top: 0.25rem;
}

.footer-contact-item strong {
    color: white;
    display: block;
    margin-bottom: 0.25rem;
}

.footer-contact-item p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
}

.footer-cta p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

.footer-copyright p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #d1d5db;
}

@media (max-width: 768px) {
    .diagnostic-benefits {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-stats {
        justify-content: center;
    }
    
    .footer-badges {
        justify-content: center;
    }
}


/* BOTÃO WHATSAPP FLUTUANTE */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    box-shadow: 
        0 8px 25px rgba(37, 211, 102, 0.4),
        0 0 0 0 rgba(37, 211, 102, 0.7);
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-button:hover::before {
    opacity: 1;
}

.whatsapp-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 12px 35px rgba(37, 211, 102, 0.5),
        0 0 0 10px rgba(37, 211, 102, 0.1);
}

.whatsapp-button:active {
    transform: translateY(-1px) scale(1.02);
}

.whatsapp-button svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Animação de pulso */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Animação de ondas */
.whatsapp-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(37, 211, 102, 0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1);
    animation: ripple 2s infinite;
    pointer-events: none;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-button svg {
        width: 28px;
        height: 28px;
    }
}

/* Estilos para o overlay do vídeo */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 10;
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.sound-indicator {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.play-button {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.play-button:hover {
    transform: scale(1.1);
    background: white;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.play-button svg {
    margin-left: 3px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

@media (max-width: 768px) {
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button svg {
        width: 20px;
        height: 20px;
    }
    
    .sound-indicator {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
}

/* Estilos para o nome da empresa no footer */
.footer-company-name {
    font-size: 1.8rem;
    font-weight: 900;
    color: #10b981;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .footer-company-name {
        font-size: 1.5rem;
    }
}


/* LOCATION AND REVIEWS SECTION */
.location-reviews {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.location-reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.location-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

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

.location-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.3);
}

.location-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.location-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.location-card-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.location-card-content {
    color: #4b5563;
    line-height: 1.6;
}

.location-card-content p {
    margin: 0.5rem 0;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-day {
    font-weight: 600;
    color: #374151;
}

.schedule-time {
    font-weight: 500;
    color: #10b981;
}

@media (max-width: 768px) {
    .location-reviews {
        padding: 80px 0;
    }
    
    .location-content {
        margin-top: 3rem;
        gap: 3rem;
    }
    
    .location-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .location-card {
        padding: 1.5rem;
    }
    
    .location-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Map Container */
.map-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 250px;
    border: none;
    border-radius: 24px;
}

@media (max-width: 768px) {
    .map-container iframe {
        height: 200px;
    }
}

/* Location Info */
.location-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.location-details h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-details p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.location-details p strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Google Reviews */
.google-reviews {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.google-reviews h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reviews-summary {
    margin-bottom: 2rem;
}

.rating-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.rating-number {
    font-size: 3rem;
    font-weight: 900;
    color: #10b981;
    line-height: 1;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.star {
    font-size: 1.5rem;
    color: #d1d5db;
}

.star.filled {
    color: #fbbf24;
}

.reviews-count {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Reviews List */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.review-item {
    padding: 1.5rem;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
}

.review-item:hover {
    background: rgba(248, 250, 252, 1);
    border-color: rgba(16, 185, 129, 0.2);
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.reviewer-name {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.review-stars {
    color: #fbbf24;
    font-size: 0.9rem;
}

.review-text {
    color: #4b5563;
    line-height: 1.6;
    font-size: 0.95rem;
    font-style: italic;
    margin: 0;
}

.review-text::before {
    content: '"';
    color: #10b981;
    font-size: 1.2em;
    opacity: 0.6;
}

.review-text::after {
    content: '"';
    color: #10b981;
    font-size: 1.2em;
    opacity: 0.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .location-details h3 {
        font-size: 1.125rem;
    }
    
    .google-reviews {
        padding: 1.5rem;
    }
    
    .rating-number {
        font-size: 2.5rem;
    }
    
    .review-item {
        padding: 1.25rem;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}



/* Enhanced Google Reviews */
.google-reviews-enhanced {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.reviews-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.reviews-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.reviews-summary-enhanced {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.rating-display-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.rating-number-large {
    font-size: 4rem;
    font-weight: 800;
    color: #10b981;
    line-height: 1;
}

.stars-large {
    display: flex;
    gap: 0.25rem;
}

.star-large {
    font-size: 2rem;
    color: #fbbf24;
    text-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
}

.reviews-count-enhanced {
    font-size: 1.1rem;
    color: #6b7280;
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.review-card {
    background: rgba(248, 250, 252, 0.8);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.reviewer-details {
    flex: 1;
}

.reviewer-name {
    font-weight: 600;
    color: #1f2937;
    display: block;
    margin-bottom: 0.25rem;
}

.review-stars {
    color: #fbbf24;
    font-size: 1rem;
}

.review-text {
    color: #4b5563;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

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

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 200px;
    justify-content: center;
}

.btn-large span {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .google-reviews-enhanced {
        padding: 2rem;
    }
    
    .reviews-header h3 {
        font-size: 1.5rem;
    }
    
    .rating-number-large {
        font-size: 3rem;
    }
    
    .star-large {
        font-size: 1.5rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .review-card {
        padding: 1.25rem;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}


/* Efeitos de entrada removidos conforme solicitado */

/* Cores brancas para WhatsApp */
.contact-card.featured .contact-number,
.contact-card.featured .contact-subtitle {
    color: white !important;
}

.contact-card.featured {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.contact-card.featured h3 {
    color: white !important;
}

/* Carrossel de Avaliações */
.reviews-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 2rem;
    margin: 2rem 0;
}

.reviews-track {
    display: flex;
    animation: scroll 20s linear infinite;
    gap: 2rem;
}

.review-card {
    min-width: 300px;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.review-info h4 {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.review-stars {
    color: #fbbf24;
    font-size: 0.9rem;
}

.review-text {
    color: #4b5563;
    line-height: 1.6;
    font-style: italic;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .review-card {
        min-width: 250px;
    }
    
    .reviews-track {
        animation-duration: 15s;
    }
}
/* Estilos para imagem do Google Reviews */
.reviews-image {
    text-align: center;
    margin: 2rem 0;
}

.google-reviews-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.google-reviews-img:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .google-reviews-img {
        max-width: 90%;
    }
}

/* Estilos para imagens dos avatares */
.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

/* Brands Section */
.brands {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.brands-carousel {
    margin-top: 3rem;
    overflow: hidden;
    position: relative;
}

.brands-track {
    display: flex;
    animation: brandScroll 30s linear infinite;
    gap: 3rem;
}

.brand-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.8rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 80px;
    height: 50px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.brand-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border-color: rgba(16, 185, 129, 0.2);
}

.brand-logo {
    max-width: 50px;
    max-height: 25px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(80%) brightness(1.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-item:hover .brand-logo {
    filter: grayscale(0%);
    transform: scale(1.1);
}

@keyframes brandScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.brands-carousel:hover .brands-track {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .brands {
        padding: 50px 0;
    }
    
    .brands-track {
        gap: 1.5rem;
    }
    
    .brand-item {
        min-width: 70px;
        height: 40px;
        padding: 0.4rem 0.6rem;
    }
    
    .brand-logo {
        max-width: 40px;
        max-height: 20px;
    }
}
/* Estilos para Mapa Interativo */
.location-map-section {
    margin: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.map-header {
    text-align: center;
    margin-bottom: 2rem;
}

.map-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.map-header p {
    font-size: 1.1rem;
    color: #6b7280;
    margin: 0;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

.map-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.map-directions-btn,
.map-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    min-width: 160px;
    justify-content: center;
}

.map-directions-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.map-directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    color: white;
}

.map-call-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #374151;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-call-btn:hover {
    transform: translateY(-2px);
    background: white;
    border-color: #10b981;
    color: #10b981;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsividade do Mapa */
@media (max-width: 768px) {
    .location-map-section {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .map-header h3 {
        font-size: 1.5rem;
    }
    
    .map-header p {
        font-size: 1rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .map-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .map-directions-btn,
    .map-call-btn {
        width: 100%;
        max-width: 280px;
        padding: 1.2rem 2rem;
    }
}

@media (max-width: 480px) {
    .location-map-section {
        padding: 1.5rem 1rem;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    .map-header h3 {
        font-size: 1.3rem;
    }
}
