/* SOS Empregador Doméstico - Modern Sales Page CSS */

/* Import Modern Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
    /* Cores principais da marca SOS Empregador Doméstico */
    --primary-color: #262323;
    --primary-dark: #1a1818;
    --primary-light: #3a3636;
    --accent-color: #d6c47c;
    --accent-dark: #c4b069;
    --highlight-color: #d6c47c;
    --highlight-dark: #c4b069;
    
    /* Cores de texto */
    --text-primary: #262323;
    --text-secondary: #a7a6a7;
    --text-hint: #d0d0d0;
    
    /* Cores de fundo */
    --background-primary: #ffffff;
    --background-secondary: #f8f8f8;
    --background-accent: #faf9f7;
    
    /* Cores de status */
    --success-color: #d6c47c;
    --error-color: #f44336;
    --warning-color: #d6c47c;
    
    /* Sistema de Sombras Profissional */
    --shadow-1: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-2: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-3: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-4: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
    --shadow-5: 0 25px 50px rgba(0, 0, 0, 0.15);
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Sistema Tipográfico Hierárquico */
    --font-family-primary: 'Poppins', sans-serif;
    --font-family-secondary: 'Inter', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    /* Line Heights Otimizados */
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;
}

body {
    font-family: var(--font-family-secondary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    color: var(--text-primary);
    background-color: var(--background-primary);
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.01em;
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-normal);
    border-bottom: 1px solid rgba(214, 196, 124, 0.2);
}

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

.logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    transition: var(--transition-normal);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    object-fit: contain;
    transition: var(--transition-normal);
}

/* Hero Section - Fluid Layout */
.hero {
    background: linear-gradient(135deg, var(--background-primary) 0%, var(--background-accent) 100%);
    padding: 120px 0 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

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

.hero-badge {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-badge span:first-child {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.hero-badge span:last-child {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: var(--font-size-sm);
    font-weight: 500;
    box-shadow: var(--shadow-2);
}

.hero h1 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero .highlight {
    color: var(--accent-color);
    position: relative;
}

.hero .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #25D366;
    border-radius: 2px;
}

.hero-description {
    font-size: var(--font-size-lg);
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

/* Benefits Grid - Fluid Integration */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0 20px 0;
    padding: 20px 0;
    position: relative;
}

.benefits-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(38, 35, 35, 0.05);
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition-normal);
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-3);
    background: rgba(38, 35, 35, 0.08);
}

.benefit-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-text h4 {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 5px 0;
}

.benefit-text p {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

/* CTA Buttons */
/* CONTAINER CTA BUTTONS - MOBILE FIRST */
.cta-buttons {
    /* Mobile First */
    margin: 24px 0 32px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 0 20px;
}

/* Desktop Enhancement */
@media (min-width: 768px) {
    .cta-buttons {
        margin: 40px 0 50px 0;
        flex-direction: row;
        gap: 24px;
        padding: 0;
    }
}

/* BOTÕES CTA REDESENHADOS - MOBILE FIRST */
.btn-primary {
    /* Mobile First - Base */
    background: linear-gradient(135deg, #25D366 0%, #22C55E 100%);
    color: white;
    padding: 18px 24px;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-family-primary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    text-align: center !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    
    /* Layout - SEMPRE FLEX PARA CENTRALIZAR */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    gap: 12px;
    
    /* Visual */
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    
    /* Typography */
    line-height: 1.2;
    white-space: nowrap;
}

/* Desktop Enhancement */
@media (min-width: 768px) {
    .btn-primary {
        padding: 20px 40px;
        font-size: 18px;
        border-radius: 50px;
        max-width: 400px;
    }
}

/* FORÇA ABSOLUTA DE CENTRALIZAÇÃO */
.btn-primary .material-icons {
    font-size: 20px;
    margin: 0 !important;
    flex-shrink: 0;
    display: inline-block;
}

.btn-primary span:not(.material-icons) {
    margin: 0 !important;
    text-align: center !important;
    display: inline-block;
    flex: 1;
}

@media (min-width: 768px) {
    .btn-primary .material-icons {
        font-size: 24px;
    }
}

/* FORÇA TOTAL - ÚLTIMO RECURSO */
.btn-primary {
    text-align: center !important;
}

.btn-primary * {
    text-align: center !important;
}

/* Estados Interativos */
.btn-primary:hover {
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-primary:focus {
    outline: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25), 0 0 0 4px rgba(37, 211, 102, 0.1);
}

/* Efeito de brilho melhorado */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

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

/* Conteúdo do botão */
.btn-primary > * {
    position: relative;
    z-index: 2;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.hero-image-container {
    position: relative;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: 500px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-4);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 30px 20px 20px;
    text-align: center;
}

.overlay-content {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-image-overlay h3 {
    font-size: var(--font-size-xl);
    margin-bottom: 10px;
    font-weight: 700;
    color: white;
}

.hero-image-overlay p {
    font-size: var(--font-size-base);
    color: white;
    font-weight: 500;
    margin: 0;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: var(--shadow-3);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 10%;
    right: -30px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 60%;
    left: -30px;
    animation-delay: 1s;
}

.floating-card.card-3 {
    bottom: 10%;
    right: -20px;
    animation-delay: 2s;
}

.card-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.card-text {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-primary);
}

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

/* Services Section - Fluid Transition */
.services {
    padding: 80px 0;
    background: var(--background-primary);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.services h2 {
    text-align: center;
    color: var(--text-primary);
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: 20px;
}

.services p {
    text-align: center;
    color: var(--text-secondary);
    font-size: var(--font-size-lg);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-2);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-4);
}

.service-card.featured {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 8px 16px;
    border-radius: 0 0 12px 12px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.service-header {
    margin-bottom: 30px;
}

.service-icon {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--text-primary);
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: 15px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.currency {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    font-weight: 500;
}

.amount {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    font-weight: 500;
}

.service-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: var(--font-size-sm);
}

.feature-item .material-icons {
    font-size: 1.2rem;
    color: var(--success-color);
}

.feature-item .material-icons:not(.check_circle) {
    color: var(--text-hint);
}

.feature-item .disabled {
    color: var(--text-hint);
}

/* BOTÕES DE SERVIÇO - MOBILE FIRST */
.btn-service {
    /* Mobile First - Base */
    width: 100%;
    background: linear-gradient(135deg, #25D366 0%, #22C55E 100%);
    color: white;
    padding: 18px 24px;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-family-primary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    
    /* Layout */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px auto 0 auto;
    max-width: 320px;
    
    /* Visual */
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    
    /* Touch-friendly */
    min-height: 56px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* Desktop Enhancement */
@media (min-width: 768px) {
    .btn-service {
        padding: 20px 32px;
        font-size: 18px;
        border-radius: 50px;
        min-height: 60px;
        max-width: 350px;
    }
}

/* Estados Interativos dos Botões de Serviço */
.btn-service:hover {
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-service:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-service:focus {
    outline: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25), 0 0 0 4px rgba(37, 211, 102, 0.1);
}

/* Variante Primary */
.btn-service.primary {
    background: linear-gradient(135deg, #25D366 0%, #22C55E 100%);
    color: white;
}

.btn-service.primary:hover {
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
    color: white;
}

.whatsapp-doubt {
    text-align: center;
    margin-top: 50px;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--primary-color);
    padding: 18px 36px;
    border: none;
    border-radius: 30px;
    font-size: var(--font-size-base);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: var(--shadow-2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    max-width: 400px;
    margin: 0 auto;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-3);
    background: #20BA5A;
    color: var(--primary-color);
}

/* Testimonials Section - Fluid Transition */
.testimonials {
    background: var(--background-secondary);
    padding: 80px 0;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.testimonials h2 {
    text-align: center;
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.testimonials p {
    text-align: center;
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.testimonial-card {
    display: none;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-3);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(100%);
    opacity: 0;
}

.testimonial-card.active {
    display: block;
    transform: translateX(0);
    opacity: 1;
    animation: slideInFromRight 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card.prev {
    display: block;
    transform: translateX(-100%);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.testimonial-card.next {
    display: block;
    transform: translateX(100%);
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-content p {
    font-size: var(--font-size-lg);
    line-height: 1.7;
    color: var(--text-primary);
    font-style: italic;
    position: relative;
    margin: 0;
}

.testimonial-content p::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-color);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-content p::after {
    content: '"';
    font-size: 4rem;
    color: var(--accent-color);
    position: absolute;
    bottom: -40px;
    right: -10px;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* Removed author-image styles - using text-only testimonials */

.author-info h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 5px 0;
}

.author-info span {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    font-weight: 500;
}

/* Carousel Navigation */
.carousel-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.carousel-btn {
    background: #25D366;
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-2);
}

.carousel-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-3);
    background: #20BA5A;
}

.carousel-btn .material-icons {
    font-size: 1.5rem;
}

.carousel-dots {
    display: flex;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-hint);
    cursor: pointer;
    transition: var(--transition-normal);
}

.dot.active {
    background: #25D366;
    transform: scale(1.3);
}

.dot:hover {
    background: #25D366;
    transform: scale(1.1);
}

/* Responsive Testimonials */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials h2 {
        font-size: var(--font-size-2xl);
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-content p {
        font-size: var(--font-size-base);
    }
    
    .testimonial-content p::before,
    .testimonial-content p::after {
        font-size: 2.5rem;
    }
    
    .testimonial-content p::before {
        top: -10px;
        left: -5px;
    }
    
    .testimonial-content p::after {
        bottom: -25px;
        right: -5px;
    }
    
    .testimonial-author {
        flex-direction: column;
        gap: 15px;
    }
    
    .carousel-navigation {
        gap: 20px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
}

/* ===== MODERN TYPOGRAPHY & SALES DESIGN ===== */

/* Modern Typography System */
body {
    font-family: var(--font-family-secondary);
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.6;
}

/* Headlines with Modern Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-primary);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
}

/* Hero Typography - Sales Focused */
.hero h1 {
    font-size: clamp(1.4rem, 2.8vw, 1.8rem);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.hero h1 .highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.hero h2 {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-secondary);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.hero p {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    line-height: 1.5;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 20px;
    max-width: 600px;
}

/* Section Headlines */
section h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-primary);
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-dark));
    border-radius: 2px;
}

section p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Service Card Typography */
.service-title {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-family: var(--font-family-primary);
}

.service-price {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-family: var(--font-family-primary);
}

.service-price span {
    font-size: 0.6em;
    font-weight: 600;
    color: var(--text-secondary);
    vertical-align: top;
}

/* Benefit Items Typography */
.benefit-item h4 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-family: var(--font-family-primary);
}

.benefit-item p {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Testimonial Typography */
.testimonial-content p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.7;
    color: var(--text-primary);
    font-style: italic;
    font-weight: 400;
    margin: 0;
}

.author-info h4 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 4px 0;
    font-family: var(--font-family-primary);
}

.author-info span {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    font-weight: 500;
}

/* CTA Button Typography */
.btn-primary, .btn-service, .btn-whatsapp {
    font-family: var(--font-family-primary);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

/* Hero Badge Typography */
.hero-badge span:last-child {
    font-family: var(--font-family-primary);
    font-weight: 600;
    font-size: var(--font-size-sm);
    letter-spacing: 0.3px;
}

/* Stats Typography */
.stat-number {
    font-family: var(--font-family-primary);
    font-weight: 800;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--accent-color);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-family-secondary);
    font-weight: 500;
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Floating Cards Typography */
.card-text {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Responsive Typography Adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        line-height: 1.2;
    }
    
    .hero h2 {
        font-size: clamp(0.9rem, 3.5vw, 1.2rem);
        line-height: 1.3;
    }
    
    section h2 {
        font-size: clamp(1.3rem, 4vw, 1.7rem);
    }
    
    .service-title {
        font-size: clamp(1rem, 3vw, 1.3rem);
    }
    
    .service-price {
        font-size: clamp(1.3rem, 4vw, 1.8rem);
    }
    
    .stat-number {
        font-size: clamp(1.3rem, 4vw, 1.8rem);
    }
    
    /* Centralizar botões em mobile */
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-service {
        max-width: 100%;
        margin: 20px 0 0 0;
    }
    
    .btn-whatsapp {
        max-width: 100%;
    }
}

/* Fluid Layout Enhancements */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 40px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(214, 196, 124, 0.2);
}

/* Smooth Transitions Between Sections */
section {
    transition: all 0.3s ease;
}

section:hover {
    transform: translateY(-2px);
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    z-index: 9999;
    transition: all 0.3s ease;
    opacity: 1;
    visibility: visible;
}

/* Desktop - Right Side */
@media (min-width: 769px) {
    .floating-cta {
        right: 20px;
        bottom: 30px;
        top: auto;
        transform: none;
    }
    
    .btn-floating {
        background: #25D366;
        color: white;
        border: none;
        border-radius: 50px;
        padding: 16px 24px;
        font-family: var(--font-family-primary);
        font-weight: 700;
        font-size: var(--font-size-sm);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 10px;
        box-shadow: var(--shadow-3);
        white-space: nowrap;
        animation: pulse 2s infinite;
    }
    
    .btn-floating:hover {
        transform: scale(1.05);
        box-shadow: var(--shadow-4);
        background: #20BA5A;
    }
    
    .btn-floating .material-icons {
        font-size: 1.2rem;
    }
    
    .btn-floating .btn-text {
        display: block;
    }
}

/* Mobile - Bottom Bar */
@media (max-width: 768px) {
    .floating-cta {
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(214, 196, 124, 0.3);
        padding: 15px 20px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .btn-floating {
        background: #25D366;
        color: white;
        border: none;
        border-radius: 50px;
        padding: 18px 32px;
        font-family: var(--font-family-primary);
        font-weight: 700;
        font-size: var(--font-size-base);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        box-shadow: var(--shadow-2);
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .btn-floating:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-3);
        background: #20BA5A;
    }
    
    .btn-floating .material-icons {
        font-size: 1.3rem;
    }
    
    .btn-floating .btn-text {
        display: block;
    }
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: var(--shadow-3);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(37, 211, 102, 0.3);
    }
    100% {
        box-shadow: var(--shadow-3);
    }
}

/* Hide floating CTA when modal is open */
.modal-open .floating-cta {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%) scale(0.8);
}

@media (max-width: 768px) {
    .modal-open .floating-cta {
        transform: translateY(100%);
    }
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-top: 80px;
}

.footer p {
    margin-bottom: 10px;
}

.footer-credit {
    margin-top: 20px !important;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-credit a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-credit a:hover {
    color: white;
    transform: translateY(-2px);
    text-shadow: 0 2px 8px rgba(214, 196, 124, 0.5);
}

/* Modal de Conversão */
.conversion-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.conversion-modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-4);
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 20px 30px;
    border-radius: 20px 20px 0 0;
    text-align: center;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.modal-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.modal-logo img {
    height: 40px;
    width: auto;
}

.modal-online {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: var(--font-size-xs);
    font-weight: 500;
}

.modal-body {
    padding: 30px;
}

.modal-welcome {
    text-align: center;
    margin-bottom: 30px;
}

.modal-welcome h3 {
    color: var(--text-primary);
    font-size: var(--font-size-lg);
    font-weight: 500;
    line-height: 1.5;
}

.modal-form-group {
    margin-bottom: 20px;
    position: relative;
}

.modal-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
    font-size: var(--font-size-sm);
}

.modal-form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--text-hint);
    border-radius: 10px;
    font-size: var(--font-size-base);
    transition: var(--transition-normal);
    box-sizing: border-box;
}

.modal-form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(38, 35, 35, 0.1);
}

.phone-input {
    position: relative;
    display: flex;
    align-items: center;
}

.phone-flag {
    position: absolute;
    left: 12px;
    font-size: 1.2rem;
    z-index: 1;
}

.phone-input input {
    padding-left: 45px;
}

.question-label {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: var(--font-size-base);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    padding: 18px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: white;
    position: relative;
    overflow: hidden;
    min-height: 60px;
    width: 100%;
    margin-bottom: 10px;
}

.radio-item:hover {
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.15);
}

.radio-item.selected {
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.1);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.radio-item.selected::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(37, 211, 102, 0.05));
    z-index: 1;
}

.radio-item input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 32px;
    height: 32px;
    border: 3px solid #d1d5db;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    background: white;
    z-index: 2;
    flex-shrink: 0;
    min-width: 32px;
}

.radio-item:hover .radio-custom {
    border-color: #25D366;
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.1);
}

.radio-item input[type="radio"]:checked + .radio-custom {
    border-color: #25D366;
    background: #25D366;
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.2);
}

.radio-item input[type="radio"]:checked + .radio-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.radio-text {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 600;
    z-index: 2;
    position: relative;
    flex: 1;
    line-height: 1.3;
}

/* Mobile Enhancement para área de toque */
@media (max-width: 768px) {
    .radio-item {
        padding: 22px 20px;
        min-height: 70px;
        gap: 16px;
    }
    
    .radio-text {
        font-size: 1rem;
        font-weight: 600;
    }
    
    .radio-custom {
        width: 28px;
        height: 28px;
        min-width: 28px;
    }
}

.field-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

.field-icon.success {
    color: var(--success-color);
}

.field-icon.error {
    color: var(--error-color);
}

.field-error {
    color: var(--error-color);
    font-size: var(--font-size-xs);
    margin-top: 5px;
    display: none;
}

.field-success {
    color: var(--success-color);
    font-size: var(--font-size-xs);
    margin-top: 5px;
    display: none;
}

.modal-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* MODAL BUTTONS - MOBILE FIRST REDESIGN */
.modal-btn {
    /* Mobile First - Base */
    width: 100%;
    padding: 20px 24px;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-family-primary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 auto 16px auto;
    
    /* Layout */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    
    /* Visual */
    position: relative;
    overflow: hidden;
    
    /* Touch-friendly */
    min-height: 56px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* Desktop Enhancement */
@media (min-width: 768px) {
    .modal-btn {
        padding: 18px 32px;
        font-size: 18px;
        border-radius: 50px;
        margin-bottom: 20px;
        min-height: 60px;
    }
}

.modal-btn-primary {
    background: linear-gradient(135deg, #25D366 0%, #22C55E 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
    border: 2px solid transparent;
}

.modal-btn-primary:hover {
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.modal-btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.modal-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.modal-success {
    text-align: center;
    padding: 40px 30px;
}

.modal-success-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.modal-success h3 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: var(--font-size-xl);
    font-weight: 600;
}

.modal-success p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.whatsapp-redirect {
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid var(--success-color);
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
}

.whatsapp-redirect p {
    margin: 0;
    color: var(--text-primary);
    font-size: var(--font-size-base);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: var(--font-size-3xl);
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: var(--font-size-base);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .hero-image {
        height: 350px;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .hero::before {
        display: none;
    }
    
    .services {
        padding: 40px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: var(--font-size-2xl);
    }
    
    .hero-image {
        height: 280px;
        max-width: 280px;
    }
    
    .modal-content {
        width: 100%;
        height: 100%;
        border-radius: 0;
        max-height: 100vh;
    }
    
    .modal-header {
        border-radius: 0;
    }
}
