/* Self-hosted Inter fonts (local files in /fonts) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuOKfMZg.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuDyYMZg.ttf') format('truetype');
}
/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variáveis CSS para consistência */
:root {
    --primary-color: #c77dff;
    --primary-dark: #9d4edd;
    --text-primary: #1a1a1a;
    --text-secondary: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow-light: rgba(0,0,0,0.08);
    --shadow-medium: rgba(0,0,0,0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--white);
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Melhorias de acessibilidade */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Foco visível para navegação por teclado */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Melhorias de acessibilidade para navegação */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

/* Melhorias para leitores de tela */
.sr-only:focus {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section with Background Slideshow */
.hero {
    background: linear-gradient(135deg, rgba(26,26,26,0.7) 0%, rgba(45,45,45,0.7) 100%);
    color: white;
    padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 6vw, 80px);
    text-align: center;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Melhorias de responsividade para mobile */
@media (max-width: 768px) {
    .hero {
        padding: 80px 20px 60px;
        min-height: 90vh;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f8f9fa;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

/* Remover limitação de proporção para ocupar tela inteira */
.hero-slide::before {
    display: none;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide:nth-child(1) {
    background-image: url('imagens/sl4.jpg');
}

.hero-slide:nth-child(2) {
    background-image: url('imagens/sl5.jpg');
}

.hero-slide:nth-child(3) {
    background-image: url('imagens/sl6.jpg');
}

/* Imagens locais para todas as telas */

/* CTA da Galeria */
.gallery-cta-section {
    padding: 80px 0;
    background-color: #e6e6e6;
    position: relative;
    overflow: hidden;
}

.gallery-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(199, 125, 255, 0.05) 0%, transparent 70%);
    animation: float-background 20s ease-in-out infinite;
}

@keyframes float-background {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.gallery-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(199, 125, 255, 0.3);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.gallery-cta-content h2 {
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 25px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-cta-content p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.benefit {
    background: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 2px solid rgba(199, 125, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(199, 125, 255, 0.2);
    border-color: var(--primary-color);
}

.gallery-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 25px 50px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    box-shadow: 0 15px 40px rgba(199, 125, 255, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-cta-button::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;
}

.gallery-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(199, 125, 255, 0.5);
}

.gallery-cta-button:hover::before {
    left: 100%;
}

.cta-icon {
    font-size: 24px;
    animation: bounce-icon 2s infinite;
}

@keyframes bounce-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.cta-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.cta-text small {
    font-size: 12px;
    opacity: 0.9;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
}

.cta-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.gallery-cta-button:hover .cta-arrow {
    transform: translateX(5px);
}

.cta-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 20px;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: #ff4757;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,26,26,0.65) 0%, rgba(45,45,45,0.55) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1080px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animação de entrada escalonada para os cards */
.pain-point {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.pain-point:nth-child(1) { animation-delay: 0.1s; }
.pain-point:nth-child(2) { animation-delay: 0.2s; }
.pain-point:nth-child(3) { animation-delay: 0.3s; }
.pain-point:nth-child(4) { animation-delay: 0.4s; }
.pain-point:nth-child(5) { animation-delay: 0.5s; }
.pain-point:nth-child(6) { animation-delay: 0.6s; }

/* Garantir que os cards permaneçam visíveis após a animação */
.pain-point.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Fallback para garantir visibilidade dos cards */
@media (prefers-reduced-motion: no-preference) {
    .pain-point {
        animation: fadeInUp 0.8s ease-out forwards;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pain-point {
        opacity: 1;
        transform: translateY(0);
        animation: none;
    }
}

/* Garantir que os cards sejam sempre visíveis após um tempo */
.pain-point {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Estado final garantido para os cards */
.pain-point.final-state {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.hero-badge {
    display: inline-block;
    background: rgba(199, 125, 255, 0.2);
    border: 1px solid rgba(199, 125, 255, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.3rem, 3vw, 1.7rem);
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.4;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
}

.benefit-item {
    background: rgba(255,255,255,0.15);
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.hero-cta-group {
    text-align: center;
}

.cta-subtitle {
    font-size: 14px;
    margin-top: 15px;
    opacity: 0.8;
    font-weight: 500;
}

.cta-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: clamp(18px, 4vw, 22px) clamp(40px, 8vw, 55px);
    border: none;
    border-radius: 8px;
    font-size: clamp(16px, 3vw, 18px);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.3);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Melhorias de acessibilidade para botões */
.cta-primary:focus-visible {
    outline: 3px solid var(--white);
    outline-offset: 2px;
}

.cta-primary:active {
    transform: translateY(1px);
}

.cta-primary::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;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.4);
}

.cta-primary:hover::before {
    left: 100%;
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.problem-content {
    text-align: center;
    max-width: 1080px;
    margin: 0 auto;
}

.problem-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.2;
    animation: slideInFromLeft 0.8s ease-out;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.problem-description {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.6;
    animation: slideInFromRight 0.8s ease-out 0.2s both;
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.pain-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(20px, 4vw, 35px);
    margin-bottom: 60px;
}

/* Garantir que em telas grandes os cards fiquem em 3x2 */
@media (min-width: 1200px) {
    .pain-points {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
}

/* Ajuste para telas médias */
@media (min-width: 768px) and (max-width: 1199px) {
    .pain-points {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Melhorias para mobile */
@media (max-width: 767px) {
    .pain-points {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .pain-point {
        padding: 30px 25px;
    }
    
    .pain-point h3 {
        font-size: 1.1rem;
    }
    
    .pain-point p {
        font-size: 0.95rem;
    }
}

/* Melhorias para tablets */
@media (min-width: 768px) and (max-width: 1023px) {
    .pain-points {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .pain-point {
        padding: 35px 30px;
    }
}

/* Ajuste para telas médias */
@media (min-width: 1024px) and (max-width: 1199px) {
    .pain-points {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

.pain-point {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,249,255,0.8) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 35px;
    border-radius: 20px;
    border: 1px solid rgba(199, 125, 255, 0.1);
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.08),
        0 4px 15px rgba(199, 125, 255, 0.1),
        inset 0 1px 0 rgba(255,255,255,0.8);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out;
    position: relative;
    overflow: hidden;
}

.pain-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark), #ff6b9d);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pain-point::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(199, 125, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
    opacity: 0;
}

/* Removidas as partículas flutuantes */

/* Ícone dos cards */
.pain-point-icon {
    text-align: center;
    margin-bottom: 20px;
}

.pain-point-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: all 0.3s ease;
}

.pain-point:hover .pain-point-icon img {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

/* Ícones removidos - design limpo */

/* Cores personalizadas para cada card */
.pain-point:nth-child(1) { 
    animation-delay: 0.1s; 
    --card-accent: #ff6b9d;
}
.pain-point:nth-child(2) { 
    animation-delay: 0.2s; 
    --card-accent: #4ecdc4;
}
.pain-point:nth-child(3) { 
    animation-delay: 0.3s; 
    --card-accent: #45b7d1;
}
.pain-point:nth-child(4) { 
    animation-delay: 0.4s; 
    --card-accent: #96ceb4;
}
.pain-point:nth-child(5) { 
    animation-delay: 0.5s; 
    --card-accent: #feca57;
}
.pain-point:nth-child(6) { 
    animation-delay: 0.6s; 
    --card-accent: #ff9ff3;
}

/* Aplicar cores personalizadas */
.pain-point:nth-child(1)::before { background: linear-gradient(90deg, var(--card-accent), #ff8fab); }
.pain-point:nth-child(2)::before { background: linear-gradient(90deg, var(--card-accent), #6dd5ed); }
.pain-point:nth-child(3)::before { background: linear-gradient(90deg, var(--card-accent), #74b9ff); }
.pain-point:nth-child(4)::before { background: linear-gradient(90deg, var(--card-accent), #a8e6cf); }
.pain-point:nth-child(5)::before { background: linear-gradient(90deg, var(--card-accent), #ffd93d); }
.pain-point:nth-child(6)::before { background: linear-gradient(90deg, var(--card-accent), #ffb3e6); }

.pain-point:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.12),
        0 8px 25px rgba(199, 125, 255, 0.2),
        inset 0 1px 0 rgba(255,255,255,0.9);
    border-color: rgba(199, 125, 255, 0.3);
}

.pain-point:hover::before {
    transform: scaleX(1);
}

.pain-point:hover::after {
    opacity: 1;
    transform: scale(1.2);
}

/* Hover sem partículas */

.pain-point h3 {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 18px;
    line-height: 1.3;
    position: relative;
    display: inline-block;
}

.pain-point h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transition: width 0.3s ease;
}

.pain-point:hover h3::after {
    width: 100%;
}

.pain-point p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
    margin-top: 10px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.pain-point:hover p {
    opacity: 1;
}

/* Solution Section */
.solution-section {
    padding: 100px 0;
    background: #eeeeee;
    position: relative;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(199, 125, 255, 0.02) 50%, transparent 70%);
    pointer-events: none;
}

.solution-header {
    text-align: center;
    margin-bottom: 60px;
    animation: slideInFromLeft 0.8s ease-out;
}

.solution-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.2rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.2;
}

.solution-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.solution-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.benefits-column {
    animation: slideInFromLeft 0.8s ease-out;
}

.benefits-column h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
    line-height: 1.2;
}

.benefits-list {
    list-style: none;
    margin-bottom: 40px;
}

.benefits-list li {
    padding: 10px 0;
    font-size: 1.1rem;
    color: #1a1a1a;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #f0f0f0;
    flex-direction: column;
}

.benefits-list li strong {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 8px;
    display: block;
}

.benefits-list li span {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    display: block;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.results-column {
    animation: slideInFromRight 0.8s ease-out;
}

.results-column h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.2;
    text-align: center;
}

/* Slider de imagens */
.image-slider {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    width: 100%;
    height: 400px;
    background: #f8f9fa;
}

.slider-track {
    display: flex;
    transition: transform 0.8s ease-in-out;
    width: 300%;
}

.slide {
    flex: 0 0 33.333%;
    width: 33.333%;
    position: relative;
}

.slide img {
    width: 100%;
    height: auto; /* preserve intrinsic ratio and avoid layout shift */
    aspect-ratio: 7 / 4; /* matches slider container default (700x400) */
    display: block;
    object-fit: cover;
    object-position: center;
    loading: lazy;
    border-radius: 15px;
    image-rendering: -webkit-optimize-contrast;
}

/* Placeholder para lazy loading */
.slide img[loading="lazy"] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.slider-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
}

.nav-btn {
    background: linear-gradient(135deg, #c77dff, #9d4edd);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(157, 78, 221, 0.2);
}

.nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(157, 78, 221, 0.3);
}

.nav-dots {
    display: flex;
    gap: 8px;
}

.dot {
    /* Visual dot kept small, but clickable area enlarged for touch */
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;   /* ensure accessible touch target */
    min-height: 48px;  /* ensure accessible touch target */
    box-sizing: content-box;
    touch-action: manipulation;
}

.dot::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    display: block;
    transition: background 0.25s ease, transform 0.25s ease;
}

.dot.active::before {
    background: #c77dff;
    transform: scale(1.2);
}

.dot:hover::before {
    background: #9d4edd;
}

/* Selos de Qualidade */
.quality-seals {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.seal-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.1);
    padding: 15px 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.seal-item:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.15);
}

.seal-icon {
    font-size: 2rem;
}

.seal-text {
    display: flex;
    flex-direction: column;
}

.seal-text strong {
    font-size: 1.1rem;
    color: white;
}

.seal-text span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

/* Contador Regressivo */
.countdown-section.full-width {
    background: linear-gradient(135deg, #251333 0%, #9f39f2 100%);
    padding: 60px 0;
    color: white;
    text-align: center;
    width: 100%;
    margin: 0;
}

.countdown-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.countdown-content {
    max-width: 600px;
    margin: 0 auto;
}

.countdown-badge {
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.countdown-header h4 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.cta-button {
    background: white;
    color: #9d4edd;
    padding: 20px 40px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Authority Section */
.authority-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d1640 0%, #8f34d9 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.authority-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.authority-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.doctor-image {
    width: 370px;
    height: 508px;
    border-radius: 7px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: -2rem;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    border: none;
    overflow: hidden;
    animation: scaleIn 0.8s ease-out;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.authority-content {
    animation: slideInFromRight 0.8s ease-out 0.2s both;
}

.authority-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.authority-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.95;
    line-height: 1.6;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.credential {
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.credential:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* Statistics Section */
.statistics-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #251333 0%, #9f39f2 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    animation: fadeInUp 0.6s ease-out;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Social Proof */
.social-proof {
    padding: 100px 0;
    background: #f8f9fa;
}

.social-proof h2 {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
    animation: slideInFromLeft 0.8s ease-out;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.testimonial:nth-child(1) { animation-delay: 0.1s; }
.testimonial:nth-child(2) { animation-delay: 0.2s; }
.testimonial:nth-child(3) { animation-delay: 0.3s; }

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 4rem;
    color: #c77dff;
    font-weight: 700;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: white;
}

.process-section h2 {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
    animation: slideInFromLeft 0.8s ease-out;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.process-step {
    text-align: center;
    padding: 30px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c77dff, #9d4edd);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.step-description {
    color: #666;
    line-height: 1.5;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
    animation: slideInFromLeft 0.8s ease-out;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
    border: none;
    box-shadow: none;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-question {
    padding: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #1a1a1a;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-bottom: none;
    outline: none;
}

.faq-question:hover {
    color: #c77dff;
}

.faq-answer {
    padding: 0 25px 25px;
    color: #666;
    line-height: 1.6;
    display: none;
    border-top: none;
    border-bottom: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: slideDown 0.3s ease-out;
    border-top: none;
    border-bottom: none;
}

/* Remover qualquer linha ou separador visual */
.faq-item::before,
.faq-item::after,
.faq-question::before,
.faq-question::after,
.faq-answer::before,
.faq-answer::after {
    display: none !important;
    content: none !important;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 200px;
    }
}

/* CTA Final Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(199, 125, 255, 0.1), transparent);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.final-cta-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.urgency-badge {
    background: #ff4757;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.final-cta h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.final-cta p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(199, 125, 255, 0.03) 0%, transparent 70%);
    animation: float-background 20s ease-in-out infinite;
}

.contact-section h2 {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 3.2rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    animation: slideInFromLeft 0.8s ease-out;
}

.contact-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: slideInFromRight 0.8s ease-out 0.2s both;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 350px);
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.contact-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,249,255,0.9) 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(199, 125, 255, 0.1);
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.08),
        0 4px 15px rgba(199, 125, 255, 0.1),
        inset 0 1px 0 rgba(255,255,255,0.8);
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark), #ff6b9d);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-item::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(199, 125, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
    opacity: 0;
}

.contact-item:nth-child(1) { 
    animation-delay: 0.1s; 
    --card-accent: #4ecdc4;
}
.contact-item:nth-child(2) { 
    animation-delay: 0.2s; 
    --card-accent: #feca57;
}

.contact-item:nth-child(1)::before { background: linear-gradient(90deg, var(--card-accent), #6dd5ed); }
.contact-item:nth-child(2)::before { background: linear-gradient(90deg, var(--card-accent), #ffd93d); }

.contact-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.12),
        0 8px 25px rgba(199, 125, 255, 0.2),
        inset 0 1px 0 rgba(255,255,255,0.9);
    border-color: rgba(199, 125, 255, 0.3);
}

.contact-item:hover::before {
    transform: scaleX(1);
}

.contact-item:hover::after {
    opacity: 1;
    transform: scale(1.2);
}



.contact-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--card-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.contact-item h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--card-accent), var(--primary-color));
    transition: width 0.3s ease;
}

.contact-item:hover h3::after {
    width: 100%;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1rem;
}

.contact-item .contact-details {
    background: rgba(199, 125, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    margin-top: 15px;
    border: 1px solid rgba(199, 125, 255, 0.1);
}

.contact-item .contact-details strong {
    color: var(--card-accent);
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.contact-item .contact-details span {
    color: #666;
    font-size: 0.9rem;
    display: block;
    line-height: 1.4;
}

.contact-item .contact-note {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    margin-top: 10px;
    padding: 8px 12px;
    background: rgba(199, 125, 255, 0.03);
    border-radius: 8px;
    border-left: 3px solid var(--card-accent);
}

/* Atendimento específico */
.contact-item:nth-child(1) .contact-details {
    background: rgba(78, 205, 196, 0.05);
    border-color: rgba(78, 205, 196, 0.1);
}

.contact-item:nth-child(1) .contact-details strong {
    color: #4ecdc4;
}

/* Localização específico */
.contact-item:nth-child(2) .contact-details {
    background: rgba(255, 107, 157, 0.05);
    border-color: rgba(255, 107, 157, 0.1);
}

.contact-item:nth-child(2) .contact-details strong {
    color: #ff6b9d;
}

/* Horários específico */
.contact-item:nth-child(3) .contact-details {
    background: rgba(254, 202, 87, 0.05);
    border-color: rgba(254, 202, 87, 0.1);
}

.contact-item:nth-child(3) .contact-details strong {
    color: #feca57;
}

/* Link Como Chegar */

/* Botão de ação flutuante */
.contact-cta {
    text-align: center;
    margin-top: 60px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.contact-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(199, 125, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-cta-button::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;
}

.contact-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(199, 125, 255, 0.4);
}

.contact-cta-button:hover::before {
    left: 100%;
}

.contact-cta-button .cta-icon {
    font-size: 1.2rem;
    animation: bounce-icon 2s infinite;
}

@keyframes bounce-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: clamp(20px, 5vw, 30px);
    right: clamp(20px, 5vw, 30px);
    width: clamp(60px, 12vw, 70px);
    height: clamp(60px, 12vw, 70px);
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: clamp(24px, 6vw, 30px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    animation: bounce 2s infinite;
    transition: var(--transition);
    cursor: pointer;
}

/* Melhorias de acessibilidade para WhatsApp */
.whatsapp-float:focus-visible {
    outline: 3px solid var(--white);
    outline-offset: 2px;
    transform: scale(1.1);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Responsividade para mobile */
@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
}

/* Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(157, 78, 221, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(157, 78, 221, 0.4);
}

.back-to-top:focus-visible {
    outline: 3px solid var(--white);
    outline-offset: 2px;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Responsive */
@media (max-width: 768px) {
    .solution-content-grid,
    .authority-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .slide img {
        height: 100%;
        object-fit: cover;
    }

    .slider-container {
        height: 300px;
    }

    /* CTA da Galeria - Mobile */
    .gallery-cta-section {
        padding: 60px 0;
    }

    .cta-benefits {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .benefit {
        width: 80%;
        text-align: center;
    }

    .gallery-cta-button {
        padding: 20px 30px;
        font-size: 16px;
        flex-direction: column;
        gap: 10px;
    }

    .cta-text {
        text-align: center;
    }

    .hero {
        padding: 80px 0 60px;
        min-height: 80vh;
    }

    .container {
        padding: 0 15px;
    }

    /* Ajuste para telas médias com nova largura */
    @media (min-width: 769px) and (max-width: 1080px) {
        .container {
            padding: 0 25px;
        }
    }

    .pain-points {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .pain-point {
        padding: 30px 25px;
    }

    .testimonials {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pain-point h3 {
        font-size: 1rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-item {
        padding: 30px 25px;
    }



    .contact-item h3 {
        font-size: 1.2rem;
    }

    .contact-item p {
        font-size: 0.95rem;
    }

    .contact-details {
        padding: 12px;
        margin-top: 12px;
    }

    .contact-details strong {
        font-size: 0.9rem;
    }

    .contact-details span {
        font-size: 0.85rem;
    }

    .contact-note {
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    .contact-cta-button {
        padding: 18px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .hero-benefits {
        flex-direction: column;
        align-items: center;
    }

    .benefit-item {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .image-slider {
        padding: 0 10px;
    }

    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .countdown-section.full-width {
        padding: 40px 0;
    }

    .countdown-section .container {
        padding: 0 15px;
    }

    .quality-seals {
        gap: 15px;
    }

    .seal-item {
        width: calc(50% - 8px);
        padding: 12px 15px;
        justify-content: center;
    }

    .seal-icon {
        font-size: 1.5rem;
    }

    .seal-text strong {
        font-size: 1rem;
    }

    .seal-text span {
        font-size: 0.8rem;
    }

    .cta-button {
        padding: 15px 20px;
        font-size: 0.9rem;
        width: 100%;
        white-space: normal;
        height: auto;
    }
}

@media (max-width: 480px) {
    .process-steps,
    .contact-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .pain-points {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pain-point {
        padding: 25px 20px;
    }

    .pain-point h3 {
        font-size: 0.95rem;
        white-space: normal;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .cta-primary {
        padding: 18px 40px;
        font-size: 16px;
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

