/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}



/* Hero Section com Vídeo de Fundo */
.hero {
    padding: 80px 0 60px; /* Reduzido para compensar header removido */
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 80vh; /* Reduzido de 100vh para 80vh */
    display: flex;
    align-items: center;
}

/* Container do Vídeo */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Estilos do Vídeo */
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Fallback para navegadores sem suporte a vídeo */
.video-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%); /* Gradiente neutro */
}

/* Overlay para melhorar legibilidade */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%, /* Preto mais escuro */
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 2;
}

/* Conteúdo do Hero */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7); /* Sombra mais forte */
    color: #ffffff; /* Branco puro para máximo contraste */
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #f3f4f6; /* Cinza claro para melhor contraste */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Sombra mais forte */
    font-weight: 500;
    position: relative;
    z-index: 2;
}

/* Efeito de destaque com fundo transparente */
.hero-content h1::before,
.hero-subtitle::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -20px;
    right: -20px;
    bottom: -15px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    z-index: -1;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* Ajuste de espaçamento para evitar sobreposição */
.hero-subtitle {
    margin-top: 2rem;
}

.pain-points {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.pain-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.2); /* Fundo mais visível */
    border-radius: 10px;
    border-left: 4px solid #fbbf24; /* Dourado elegante */
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra sutil */
}

.pain-item:hover {
    background: rgba(255, 255, 255, 0.3); /* Fundo mais claro no hover */
    transform: translateX(10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Sombra mais pronunciada */
}

.pain-item i {
    color: #fbbf24; /* Dourado elegante */
    font-size: 1.25rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Sombra sutil */
}

.pain-item span {
    font-weight: 600; /* Mais peso na fonte */
    color: #ffffff; /* Branco puro */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Sombra mais forte */
}

.hero-cta {
    text-align: center;
    margin-top: 2rem;
}



.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%); /* Gradiente dourado elegante */
    color: #ffffff;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-primary i {
    color: #ffffff; /* Branco para melhor visibilidade */
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); /* Gradiente dourado mais escuro */
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%); /* Gradiente dourado elegante */
    color: #ffffff;
    border: 2px solid #fbbf24;
}

.btn-secondary i {
    color: #ffffff; /* Branco para melhor visibilidade */
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); /* Gradiente dourado mais escuro */
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4);
}

.btn-map {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%); /* Gradiente azul elegante */
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-map i {
    color: #ffffff;
}

.btn-map:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%); /* Gradiente azul mais escuro */
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual {
    position: relative;
    width: 600px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    width: 600px;
    height: auto;
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.6)) drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.4));
    transition: all 0.3s ease;
    animation: logoGlow 3s ease-in-out infinite alternate;
}

.hero-logo:hover {
    filter: drop-shadow(0 0 40px rgba(59, 130, 246, 0.9)) drop-shadow(2px 2px 15px rgba(0, 0, 0, 0.6));
    transform: scale(1.05);
    animation-play-state: paused;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.6)) drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.4));
        transform: scale(1);
    }
    100% {
        filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.8)) drop-shadow(2px 2px 12px rgba(0, 0, 0, 0.5));
        transform: scale(1.02);
    }
}

/* Seções Gerais */
section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1f2937;
}

/* Seção de Urgência */
.urgency {
    background: #1e3a8a;
    border-top: 4px solid #3b82f6;
    border-bottom: 4px solid #3b82f6;
}

.urgency-content {
    text-align: center;
}

.urgency-content h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.urgency-content p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.urgency-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.urgency-stat {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
    border: 2px solid #3b82f6;
}

.urgency-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.urgency-stat .stat-label {
    color: #374151;
    font-weight: 500;
    line-height: 1.4;
}

/* Seção de Solução */
.solution {
    background: #f8fafc;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.solution-text p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.solution-features {
    display: grid;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    color: #3b82f6; /* Azul profissional */
    font-size: 1.25rem;
}

.feature span {
    font-weight: 500;
    color: #374151;
}

.success-stats {
    display: grid;
    gap: 2rem;
}

.success-stat {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #25d366;
}

.success-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #25d366;
    margin-bottom: 0.5rem;
}

.success-stat .stat-label {
    color: #6b7280;
    font-weight: 500;
}

/* CTA Principal */
.cta-main {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.urgency-text {
    font-size: 1.1rem;
    color: #3b82f6;
    font-weight: 600;
}



/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-main h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-main p {
    color: #d1d5db;
    line-height: 1.6;
    margin-top: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Botão WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Seção de Localização */
.location {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.location-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.location-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.location-content > p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2.5rem;
}

.location-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.address-info {
    text-align: left;
}

.address-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.address-item i {
    font-size: 1.5rem;
    color: #3b82f6;
    margin-top: 0.3rem;
}

.address-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.4rem;
}

.address-item p {
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
}

.location-cta {
    margin-top: 1.5rem;
}

.map-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.map-container iframe {
    border-radius: 12px;
    height: 320px;
}

.map-fallback {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 0.8rem;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
    display: none;
}

.map-container:hover .map-fallback {
    display: block;
}

/* Responsividade */
@media (max-width: 1024px) {
    .hero-container {
        gap: 2rem;
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    
    .hero {
        min-height: auto;
        padding: 60px 0 40px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1.2rem;
        margin-bottom: 1rem;
    }
    
    .pain-points {
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .pain-item {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .pain-item i {
        font-size: 1rem;
        margin-right: 0.8rem;
    }
    
    .hero-cta {
        margin-top: 1.5rem;
    }
    
    .btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solution-text h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .solution-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .solution-features {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .feature {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .feature i {
        font-size: 1rem;
        margin-right: 0.8rem;
    }
    
    .urgency-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .urgency-stat {
        padding: 1.5rem 1rem;
    }
    
    .urgency-stat .stat-number {
        font-size: 2.5rem;
    }
    
    .urgency-stat .stat-label {
        font-size: 0.9rem;
    }
    
    .success-stats {
        gap: 1.5rem;
    }
    
    .success-stat {
        padding: 1.5rem 1rem;
    }
    
    .success-stat .stat-number {
        font-size: 2.2rem;
    }
    
    .success-stat .stat-label {
        font-size: 0.9rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-main h3 {
        font-size: 1.3rem;
    }
    
    .footer-main p {
        font-size: 0.9rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float a {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    section h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .urgency h2 {
        font-size: 1.6rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .urgency-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    
    .hero {
        padding: 50px 0 30px;
    }
    
    .hero-container {
        padding: 0 10px;
        gap: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.3rem 1rem;
    }
    
    .pain-points {
        gap: 0.8rem;
        margin: 1.2rem 0;
    }
    
    .pain-item {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
        text-align: left;
    }
    
    .pain-item i {
        font-size: 0.9rem;
        margin-right: 0.6rem;
    }
    
    .btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
        max-width: 280px;
    }
    
    .cta-buttons .btn {
        max-width: 280px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .solution-text h3 {
        font-size: 1.6rem;
    }
    
    .solution-text p {
        font-size: 0.95rem;
    }
    
    .feature {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
        text-align: left;
    }
    
    .feature i {
        font-size: 0.9rem;
        margin-right: 0.6rem;
    }
    
    .urgency-stat {
        padding: 1.2rem 0.8rem;
    }
    
    .urgency-stat .stat-number {
        font-size: 2.2rem;
    }
    
    .urgency-stat .stat-label {
        font-size: 0.85rem;
    }
    
    .success-stat {
        padding: 1.2rem 0.8rem;
    }
    
    .success-stat .stat-number {
        font-size: 2rem;
    }
    
    .success-stat .stat-label {
        font-size: 0.85rem;
    }
    
    section {
        padding: 40px 0;
    }
    
    section h2 {
        font-size: 1.6rem;
    }
    
    .urgency h2 {
        font-size: 1.4rem;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .urgency-text {
        font-size: 0.95rem;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-main h3 {
        font-size: 1.2rem;
    }
    
    .footer-main p {
        font-size: 0.85rem;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
}

@media (max-width: 360px) {
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.8rem;
    }
    
    .pain-item {
        font-size: 0.8rem;
        padding: 0.6rem 0.7rem;
    }
    
    .btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        max-width: 260px;
    }
    
    .cta-buttons .btn {
        max-width: 260px;
    }
    
    section h2 {
        font-size: 1.4rem;
    }
    
    .urgency h2 {
        font-size: 1.3rem;
    }
    
    .cta-content h2 {
        font-size: 1.4rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pain-item,
.urgency-stat,
.success-stat {
    animation: fadeInUp 0.6s ease forwards;
}

.pain-item:nth-child(2) {
    animation-delay: 0.1s;
}

.pain-item:nth-child(3) {
    animation-delay: 0.2s;
}

.pain-item:nth-child(4) {
    animation-delay: 0.3s;
}

/* Estados de hover melhorados */
.urgency-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
}

.success-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

/* Melhorias de acessibilidade */
.btn:focus,
a:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Melhorias para Mobile - Logo e Elementos Visuais */
@media (max-width: 768px) {
    .hero-visual {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
    
    .hero-logo {
        width: 180px;
        height: auto;
        filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5)) drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    }
    
    .pulse-ring {
        width: 200px;
        height: 200px;
        border: 2px solid rgba(59, 130, 246, 0.3);
    }
}

@media (max-width: 480px) {
    .hero-visual {
        width: 160px;
        height: 160px;
    }
    
    .hero-logo {
        width: 140px;
        height: auto;
    }
    
    .pulse-ring {
        width: 160px;
        height: 160px;
        border: 1.5px solid rgba(59, 130, 246, 0.3);
    }
}

@media (max-width: 360px) {
    .hero-visual {
        width: 140px;
        height: 140px;
    }
    
    .hero-logo {
        width: 120px;
        height: auto;
    }
    
    .pulse-ring {
        width: 140px;
        height: 140px;
        border: 1px solid rgba(59, 130, 246, 0.3);
    }
}

/* Melhorias para Mobile - Vídeo de Fundo */
@media (max-width: 768px) {
    .hero-video-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .hero-video {
        object-position: center center;
    }
    
    .hero-video-overlay {
        background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.6) 100%
        );
    }
}

@media (max-width: 480px) {
    .hero-video-overlay {
        background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.7) 100%
        );
    }
}

/* Compatibilidade Safari iOS e iPhone */
@supports (-webkit-touch-callout: none) {
    /* Estilos específicos para dispositivos iOS */
    .hero {
        -webkit-overflow-scrolling: touch;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .hero-video {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    .btn {
        -webkit-appearance: none;
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
    }
    
    .pain-item,
    .feature,
    .urgency-stat,
    .success-stat {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

/* Safari iOS - Correções específicas */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .hero-container {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .hero-content h1 {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-smoothing: antialiased;
    }
    
    .hero-subtitle {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-smoothing: antialiased;
    }
}

/* iPhone - Ajustes específicos */
@media only screen 
    and (device-width: 375px) 
    and (device-height: 667px) 
    and (-webkit-device-pixel-ratio: 2) {
    /* iPhone 6/7/8 */
    .hero {
        padding: 70px 0 50px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 44px;
    }
}

@media only screen 
    and (device-width: 414px) 
    and (device-height: 896px) 
    and (-webkit-device-pixel-ratio: 2) {
    /* iPhone X/XS/11 Pro */
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media only screen 
    and (device-width: 390px) 
    and (device-height: 844px) 
    and (-webkit-device-pixel-ratio: 3) {
    /* iPhone 12/13/14 */
    .hero {
        padding: 75px 0 55px;
    }
    
    .hero-content h1 {
        font-size: 2.1rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
}

@media only screen 
    and (device-width: 428px) 
    and (device-height: 926px) 
    and (-webkit-device-pixel-ratio: 3) {
    /* iPhone 12/13/14 Pro Max */
    .hero {
        padding: 85px 0 65px;
    }
    
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
}

/* Safari iOS - Melhorias de performance */
@supports (-webkit-overflow-scrolling: touch) {
    .hero-video-container {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000;
        perspective: 1000;
    }
    
    .hero-video {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    .pulse-ring {
        -webkit-animation: pulse 2s infinite;
        animation: pulse 2s infinite;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

/* Safari iOS - Correções de scroll e touch */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    body {
        -webkit-overflow-scrolling: touch;
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    .hero {
        -webkit-overflow-scrolling: touch;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    
    .container {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

/* Safari iOS - Melhorias de fonte e texto */
@supports (-webkit-font-smoothing: antialiased) {
    .hero-content h1,
    .hero-subtitle,
    .btn,
    .pain-item span,
    .feature span,
    .urgency-stat .stat-number,
    .urgency-stat .stat-label,
    .success-stat .stat-number,
    .success-stat .stat-label {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-smoothing: antialiased;
        text-rendering: optimizeLegibility;
    }
}

/* Safari iOS - Correções de vídeo */
@supports (-webkit-touch-callout: none) {
    .hero-video {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000;
        perspective: 1000;
        will-change: transform;
    }
    
    .hero-video-container {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        will-change: transform;
    }
}

/* iPhone Notch e Safe Area */
@supports (padding: max(0px)) {
    .hero {
        padding-top: max(80px, env(safe-area-inset-top) + 60px);
        padding-bottom: max(60px, env(safe-area-inset-bottom) + 40px);
    }
    
    .whatsapp-float {
        bottom: max(30px, env(safe-area-inset-bottom) + 20px);
        right: max(30px, env(safe-area-inset-right) + 20px);
    }
    
    .footer {
        padding-bottom: max(20px, env(safe-area-inset-bottom) + 10px);
    }
}

/* iPhone X e posteriores - Safe Area */
@supports (padding: env(safe-area-inset-top)) {
    .hero {
        padding-top: calc(80px + env(safe-area-inset-top));
        padding-bottom: calc(60px + env(safe-area-inset-bottom));
    }
    
    .whatsapp-float {
        bottom: calc(30px + env(safe-area-inset-bottom));
        right: calc(30px + env(safe-area-inset-right));
    }
    
    .footer {
        padding-bottom: calc(20px + env(safe-area-inset-bottom));
    }
}

/* Safari iOS - Correções de scroll suave */
@supports (-webkit-overflow-scrolling: touch) {
    html {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: auto;
    }
    
    .hero {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: auto;
    }
}

/* Safari iOS - Melhorias de animação */
@supports (-webkit-animation: name) {
    .pain-item,
    .urgency-stat,
    .success-stat {
        -webkit-animation: fadeInUp 0.6s ease forwards;
        animation: fadeInUp 0.6s ease forwards;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    
    .pain-item:nth-child(2) {
        -webkit-animation-delay: 0.1s;
        animation-delay: 0.1s;
    }
    
    .pain-item:nth-child(3) {
        -webkit-animation-delay: 0.2s;
        animation-delay: 0.2s;
    }
    
    .pain-item:nth-child(4) {
        -webkit-animation-delay: 0.3s;
        animation-delay: 0.3s;
    }
}

/* Safari iOS - Correções de vídeo autoplay */
@supports (-webkit-touch-callout: none) {
    .hero-video {
        -webkit-playsinline: true;
        playsinline: true;
        -webkit-muted: true;
        muted: true;
        -webkit-loop: true;
        loop: true;
        -webkit-autoplay: true;
        autoplay: true;
    }
}

/* Responsividade para a seção de localização */
@media (max-width: 768px) {
    .location {
        padding: 40px 0;
    }
    
    .location-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .location-content h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .location-content > p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .address-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .address-item i {
        font-size: 1.3rem;
    }
    
    .address-item h3 {
        font-size: 1rem;
    }
    
    .address-item p {
        font-size: 0.9rem;
    }
    
    .map-container iframe {
        height: 280px;
    }
}


