/*
Theme Name: EU ESTUDO EAD
Theme URI: https://euestudoead.com.br
Author: EU ESTUDO EAD
Author URI: https://euestudoead.com.br
Description: Tema customizado para plataforma de cursos online EU ESTUDO EAD - Ingles + Profissao
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: eead
Tags: education, e-commerce, woocommerce, custom-colors, custom-logo

EU ESTUDO EAD - Tema WordPress para cursos online
*/

/* ==========================================================================
   CSS Variables - Design System (Vermelho/Coral)
   ========================================================================== */

:root {
    /* Cores Primarias - Vermelho/Coral do Logo */
    --color-primary: #E63946;
    --color-primary-dark: #C1121F;
    --color-primary-light: #FFE5E7;

    /* Cores Secundarias */
    --color-secondary: #1D3557;
    --color-secondary-light: #457B9D;
    --color-accent: #F4A261;
    --color-accent-dark: #E76F51;

    /* Cores de Sucesso/Ação */
    --color-success: #2A9D8F;
    --color-success-dark: #1E7268;
    --color-warning: #F4A261;
    --color-danger: #E63946;
    --color-info: #457B9D;

    /* Neutros */
    --color-white: #FFFFFF;
    --color-gray-50: #F8F9FA;
    --color-gray-100: #F1F3F5;
    --color-gray-200: #E9ECEF;
    --color-gray-300: #DEE2E6;
    --color-gray-400: #ADB5BD;
    --color-gray-500: #6C757D;
    --color-gray-600: #495057;
    --color-gray-700: #343A40;
    --color-gray-800: #212529;
    --color-gray-900: #1A1D21;

    /* Gradients - Vibrantes */
    --gradient-hero: linear-gradient(135deg, #E63946 0%, #C1121F 50%, #8B0000 100%);
    --gradient-hero-alt: linear-gradient(135deg, #1D3557 0%, #457B9D 100%);
    --gradient-cta: linear-gradient(90deg, #E63946 0%, #F4A261 100%);
    --gradient-success: linear-gradient(90deg, #2A9D8F 0%, #48C9B0 100%);
    --gradient-warm: linear-gradient(135deg, #F4A261 0%, #E76F51 100%);
    --gradient-dark: linear-gradient(180deg, #1D3557 0%, #0D1B2A 100%);

    /* Tipografia */
    --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, 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: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3.5rem;

    /* Espacamento */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 8px 24px rgba(230, 57, 70, 0.35);
    --shadow-glow: 0 0 40px rgba(230, 57, 70, 0.2);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms ease;

    /* Container */
    --container-max: 1200px;
    --container-padding: 1rem;
}

@media (min-width: 768px) {
    :root {
        --container-padding: 2rem;
    }
}

/* ==========================================================================
   Reset e Base
   ========================================================================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--color-gray-700);
    background-color: var(--color-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary-dark);
}

/* ==========================================================================
   Tipografia - Mais Impactante
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-gray-800);
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 6vw, var(--font-size-5xl));
}

h2 {
    font-size: clamp(1.75rem, 5vw, var(--font-size-4xl));
}

h3 {
    font-size: clamp(1.5rem, 4vw, var(--font-size-3xl));
}

h4 {
    font-size: var(--font-size-xl);
    font-weight: 700;
}

p {
    margin-bottom: var(--space-4);
}

.text-gradient {
    background: var(--gradient-cta);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-sm { font-size: var(--font-size-sm); }
.text-lg { font-size: var(--font-size-lg); }
.text-xl { font-size: var(--font-size-xl); }
.text-2xl { font-size: var(--font-size-2xl); }

.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-muted { color: var(--color-gray-500); }
.text-white { color: var(--color-white); }

.lead {
    font-size: var(--font-size-xl);
    line-height: 1.6;
    color: var(--color-gray-600);
}

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.container-narrow {
    max-width: 800px;
}

.container-wide {
    max-width: 1400px;
}

.section {
    padding: var(--space-16) 0;
}

.section-lg {
    padding: var(--space-24) 0;
}

.grid {
    display: grid;
    gap: var(--space-6);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .grid-3, .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }

.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

/* ==========================================================================
   Botoes - Mais Vibrantes
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 0.875rem 2rem;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    min-height: 52px;
    position: relative;
    overflow: hidden;
}

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

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

.btn:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 3px;
}

.btn-primary {
    background: var(--gradient-cta);
    color: var(--color-white);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(230, 57, 70, 0.45);
    color: var(--color-white);
}

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

.btn-secondary {
    background: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
}

.btn-success {
    background: var(--gradient-success);
    color: var(--color-white);
    box-shadow: 0 8px 24px rgba(42, 157, 143, 0.35);
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(42, 157, 143, 0.45);
    color: var(--color-white);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn-white:hover {
    background: var(--color-gray-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--color-primary);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-white);
    color: var(--color-white);
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: var(--font-size-lg);
    min-height: 60px;
}

.btn-xl {
    padding: 1.25rem 3rem;
    font-size: var(--font-size-xl);
    min-height: 68px;
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: var(--font-size-sm);
    min-height: 40px;
    text-transform: none;
}

.btn-full { width: 100%; }

.btn-icon {
    width: 52px;
    padding: 0;
}

/* Pulse animation for CTA */
.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: var(--shadow-primary); }
    50% { box-shadow: 0 8px 32px rgba(230, 57, 70, 0.5), 0 0 0 8px rgba(230, 57, 70, 0.1); }
}

/* ==========================================================================
   Cards - Mais Modernos
   ========================================================================== */

.card {
    background: var(--color-white);
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

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

.card-image {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: var(--color-gray-100);
    overflow: hidden;
}

.card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.card:hover .card-image::after {
    opacity: 1;
}

.card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.card:hover .card-image img {
    transform: scale(1.08);
}

.card-body {
    padding: var(--space-6);
}

.card-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-gray-800);
    margin-bottom: var(--space-3);
}

.card-title a {
    color: inherit;
}

.card-title a:hover {
    color: var(--color-primary);
}

.card-text {
    color: var(--color-gray-600);
    font-size: var(--font-size-base);
    margin-bottom: var(--space-4);
    line-height: 1.6;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    font-size: var(--font-size-sm);
    color: var(--color-gray-500);
    margin-bottom: var(--space-4);
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-4);
    border-top: 1px solid var(--color-gray-200);
}

.card-price {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--color-primary);
}

.card-price small {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-gray-500);
}

.card-price-old {
    font-size: var(--font-size-sm);
    color: var(--color-gray-400);
    text-decoration: line-through;
    display: block;
}

/* Card Featured */
.card-featured {
    border: 3px solid var(--color-primary);
    position: relative;
}

.card-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-cta);
}

/* ==========================================================================
   Badges - Mais Chamativos
   ========================================================================== */

.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    padding: 0.375rem 0.875rem;
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
}

.badge-primary {
    background: var(--gradient-cta);
    color: var(--color-white);
}

.badge-success {
    background: var(--gradient-success);
    color: var(--color-white);
}

.badge-warning {
    background: var(--gradient-warm);
    color: var(--color-white);
}

.badge-dark {
    background: var(--color-secondary);
    color: var(--color-white);
}

.badge-outline {
    background: transparent;
    border: 2px solid currentColor;
}

.card-badge {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    z-index: 2;
    animation: badgePop 0.5s ease;
}

@keyframes badgePop {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* ==========================================================================
   Header - Site Normal
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.site-logo img {
    height: 48px;
    width: auto;
}

.site-logo-text {
    font-size: var(--font-size-xl);
    font-weight: 800;
    color: var(--color-primary);
}

.main-nav {
    display: none;
}

@media (min-width: 1024px) {
    .main-nav {
        display: flex;
        align-items: center;
        gap: var(--space-8);
    }
}

.main-nav a {
    font-weight: 600;
    color: var(--color-gray-700);
    padding: var(--space-2) 0;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--color-primary);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-cta);
    border-radius: var(--radius-full);
    transition: width var(--transition-base);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.header-cta {
    display: none;
}

@media (min-width: 768px) {
    .header-cta {
        display: flex;
        align-items: center;
        gap: var(--space-3);
    }
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: var(--space-2);
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--color-gray-700);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    padding: var(--space-8);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.mobile-menu a {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-gray-700);
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--color-gray-100);
}

.mobile-menu .btn {
    margin-top: var(--space-6);
}

/* ==========================================================================
   Header LP - Minimo (Sem Menu)
   ========================================================================== */

.landing-page .site-header {
    background: transparent;
    border: none;
    position: absolute;
}

.landing-page .main-nav,
.landing-page .mobile-menu-toggle,
.landing-page .mobile-menu {
    display: none !important;
}

.landing-page .header-cta {
    display: flex !important;
}

.landing-page .header-inner {
    height: 72px;
}

/* ==========================================================================
   Hero Section - Mais Impactante
   ========================================================================== */

.hero {
    position: relative;
    padding: calc(80px + var(--space-16)) 0 var(--space-16);
    background: var(--gradient-hero);
    color: var(--color-white);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Pattern overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Animated gradient orbs */
.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: float 15s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-5%, 5%) rotate(5deg); }
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
}

@media (min-width: 1024px) {
    .hero {
        padding: calc(80px + var(--space-20)) 0 var(--space-20);
    }

    .hero-inner {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.hero-content {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255, 255, 255, 0.15);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--space-6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: badgeFloat 3s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: var(--space-6);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-title span {
    display: block;
    color: var(--color-accent);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-8);
    max-width: 540px;
}

@media (max-width: 1023px) {
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-proof {
        justify-content: flex-start;
    }
}

.hero-proof-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    backdrop-filter: blur(5px);
}

.hero-proof-item svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

@media (min-width: 640px) {
    .hero-ctas {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-ctas {
        justify-content: flex-start;
    }
}

.hero-image {
    display: none;
}

@media (min-width: 768px) {
    .hero-image {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .hero-image img {
        max-width: 100%;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-xl);
        animation: heroImageFloat 6s ease-in-out infinite;
    }

    @keyframes heroImageFloat {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-15px) rotate(1deg); }
    }
}

/* ==========================================================================
   Sections - Mais Vivas
   ========================================================================== */

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-12);
}

.section-header h2 {
    margin-bottom: var(--space-4);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-cta);
    border-radius: var(--radius-full);
}

.section-header p {
    color: var(--color-gray-600);
    font-size: var(--font-size-lg);
    margin-bottom: 0;
}

.section-alt {
    background: var(--color-gray-50);
    position: relative;
}

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

.section-dark {
    background: var(--gradient-dark);
    color: var(--color-white);
}

.section-dark h2,
.section-dark h3 {
    color: var(--color-white);
}

.section-gradient {
    background: var(--gradient-hero);
    color: var(--color-white);
}

/* ==========================================================================
   Features/Benefits - Com Icones
   ========================================================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-8);
}

.feature-item {
    text-align: center;
    padding: var(--space-8);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-cta);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-6);
    transition: all var(--transition-base);
}

.feature-item:hover .feature-icon {
    background: var(--gradient-cta);
    color: var(--color-white);
    transform: scale(1.1) rotate(5deg);
}

.feature-icon svg {
    width: 36px;
    height: 36px;
}

.feature-item h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-3);
}

.feature-item p {
    color: var(--color-gray-600);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Numbered Features */
.feature-numbered {
    counter-increment: feature;
}

.feature-numbered .feature-icon::before {
    content: counter(feature);
    font-size: var(--font-size-2xl);
    font-weight: 800;
}

/* ==========================================================================
   Testimonials - Mais Credibilidade
   ========================================================================== */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-6);
}

.testimonial-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: var(--space-4);
    right: var(--space-6);
    font-size: 6rem;
    font-family: Georgia, serif;
    color: var(--color-primary-light);
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: var(--space-4);
    color: var(--color-warning);
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.testimonial-text {
    font-size: var(--font-size-lg);
    line-height: 1.8;
    color: var(--color-gray-700);
    margin-bottom: var(--space-6);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-primary-light);
}

.testimonial-name {
    font-weight: 700;
    color: var(--color-gray-800);
    margin-bottom: 0;
    font-size: var(--font-size-base);
}

.testimonial-role {
    font-size: var(--font-size-sm);
    color: var(--color-gray-500);
    margin-bottom: 0;
}

/* ==========================================================================
   FAQ Accordion - Mais Limpo
   ========================================================================== */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-3);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-6);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-gray-800);
    transition: all var(--transition-base);
}

.faq-trigger:hover {
    color: var(--color-primary);
}

.faq-trigger[aria-expanded="true"] {
    color: var(--color-primary);
    background: var(--color-primary-light);
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-100);
    border-radius: 50%;
    color: var(--color-gray-500);
    transition: all var(--transition-base);
}

.faq-trigger[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
    background: var(--color-primary);
    color: var(--color-white);
}

.faq-content {
    padding: 0 var(--space-6) var(--space-6);
    color: var(--color-gray-600);
    line-height: 1.8;
}

.faq-content[hidden] {
    display: none;
}

/* ==========================================================================
   CTA Section - Mais Urgente
   ========================================================================== */

.cta-section {
    background: var(--gradient-hero);
    padding: var(--space-20) 0;
    text-align: center;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-section h2 {
    color: var(--color-white);
    margin-bottom: var(--space-4);
    position: relative;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: var(--gradient-dark);
    color: var(--color-gray-400);
    padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-10);
    margin-bottom: var(--space-12);
}

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

.footer-logo {
    margin-bottom: var(--space-4);
}

.footer-logo img {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-6);
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-gray-400);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-nav h4 {
    color: var(--color-white);
    font-size: var(--font-size-base);
    font-weight: 700;
    margin-bottom: var(--space-6);
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: var(--space-3);
}

.footer-nav a {
    color: var(--color-gray-400);
    font-size: var(--font-size-sm);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

.footer-nav a:hover {
    color: var(--color-white);
    padding-left: var(--space-2);
}

.footer-bottom {
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: var(--font-size-sm);
}

/* ==========================================================================
   WhatsApp Float - Mais Visivel
   ========================================================================== */

.whatsapp-float {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #25D366;
    border-radius: 50%;
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-base);
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* ==========================================================================
   Countdown Timer
   ========================================================================== */

.countdown {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

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

.countdown-value {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: var(--space-2);
}

.countdown-label {
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}

/* ==========================================================================
   Pricing Box
   ========================================================================== */

.pricing-box {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-10);
    text-align: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.pricing-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-cta);
}

.pricing-old {
    font-size: var(--font-size-xl);
    color: var(--color-gray-400);
    text-decoration: line-through;
    margin-bottom: var(--space-2);
}

.pricing-current {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.pricing-period {
    font-size: var(--font-size-lg);
    color: var(--color-gray-500);
    margin-bottom: var(--space-6);
}

/* ==========================================================================
   Guarantee Box
   ========================================================================== */

.guarantee-box {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    background: var(--color-success);
    background: linear-gradient(135deg, var(--color-success) 0%, var(--color-success-dark) 100%);
    color: var(--color-white);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-lg);
    margin-top: var(--space-6);
}

.guarantee-box svg {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}

.guarantee-box p {
    margin: 0;
    font-size: var(--font-size-sm);
    font-weight: 500;
}

/* ==========================================================================
   Checklist
   ========================================================================== */

.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    font-size: var(--font-size-lg);
    border-bottom: 1px solid var(--color-gray-100);
}

.checklist li:last-child {
    border-bottom: none;
}

.checklist-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-success);
    color: var(--color-white);
    border-radius: 50%;
}

.checklist-icon svg {
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   Forms
   ========================================================================== */

.form-group {
    margin-bottom: var(--space-4);
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--color-gray-700);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    color: var(--color-gray-700);
    background: var(--color-white);
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.1);
}

.form-input::placeholder {
    color: var(--color-gray-400);
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in { animation: fadeIn 0.8s ease-out; }
.animate-slide-up { animation: slideUp 0.8s ease-out; }
.animate-slide-left { animation: slideInLeft 0.8s ease-out; }
.animate-scale-in { animation: scaleIn 0.8s ease-out; }

/* Staggered animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.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;
}

.hidden { display: none !important; }
.block { display: block; }
.inline-block { display: inline-block; }

.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }

.py-4 { padding-top: var(--space-4); padding-bottom: var(--space-4); }
.py-8 { padding-top: var(--space-8); padding-bottom: var(--space-8); }
.py-16 { padding-top: var(--space-16); padding-bottom: var(--space-16); }

.bg-white { background-color: var(--color-white); }
.bg-gray { background-color: var(--color-gray-50); }
.bg-primary { background-color: var(--color-primary); }
.bg-gradient { background: var(--gradient-hero); }

.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }

.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

/* ==========================================================================
   LP Specific - Sticky CTA Mobile
   ========================================================================== */

.landing-page .sticky-cta {
    display: none;
}

@media (max-width: 767px) {
    .landing-page .sticky-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: var(--space-4);
        background: var(--color-white);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        z-index: 998;
    }

    .landing-page .sticky-cta .btn {
        width: 100%;
    }

    /* Add padding to body to account for sticky CTA */
    .landing-page {
        padding-bottom: 80px;
    }
}

/* ==========================================================================
   Landing Page Specific Styles - High Conversion
   ========================================================================== */

/* LP Hero Override */
.landing-page .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.landing-page .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.landing-page .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-6);
    animation: pulse 2s infinite;
}

.landing-page .hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-6);
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.landing-page .hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    opacity: 0.95;
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

.landing-page .hero-proof {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4) var(--space-8);
    font-size: var(--font-size-sm);
    margin-top: var(--space-6);
}

.landing-page .hero-proof-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    opacity: 0.95;
}

.landing-page .hero-proof-item svg {
    color: #fbbf24;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.countdown-item {
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    min-width: 60px;
    text-align: center;
}

.countdown-value {
    font-size: var(--font-size-2xl);
    font-weight: 800;
}

.countdown-label {
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    opacity: 0.8;
}

/* Features Grid LP */
.landing-page .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
}

.landing-page .feature-item {
    background: var(--color-white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--color-gray-100);
}

.landing-page .feature-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

.landing-page .feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    border-radius: var(--radius-lg);
    background: var(--color-primary-light);
    color: var(--color-primary);
    transition: all var(--transition-base);
}

.landing-page .feature-item:hover .feature-icon {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1);
}

.landing-page .feature-item h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-3);
}

.landing-page .feature-item p {
    color: var(--color-gray-600);
    margin-bottom: 0;
    font-size: var(--font-size-base);
    line-height: 1.6;
}

/* Testimonials LP */
.landing-page .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
}

.landing-page .testimonial-card {
    background: var(--color-white);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-gray-100);
    transition: all var(--transition-base);
    position: relative;
}

.landing-page .testimonial-card::before {
    content: '"';
    position: absolute;
    top: var(--space-4);
    right: var(--space-6);
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--color-primary);
    opacity: 0.1;
    line-height: 1;
}

.landing-page .testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.landing-page .testimonial-text {
    font-style: italic;
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--color-gray-700);
    margin-bottom: var(--space-6);
}

.landing-page .testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.landing-page .testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.landing-page .testimonial-name {
    font-weight: 700;
    color: var(--color-gray-800);
    margin-bottom: 2px;
}

.landing-page .testimonial-role {
    font-size: var(--font-size-sm);
    color: var(--color-gray-500);
}

/* CTA Section LP */
.landing-page .cta-section {
    padding: var(--space-20) 0;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.landing-page .cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

.landing-page .cta-section h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: inherit;
    margin-bottom: var(--space-4);
}

.landing-page .cta-section p {
    font-size: var(--font-size-lg);
    opacity: 0.95;
    margin-bottom: var(--space-8);
}

/* Pulse Animation for CTA */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.btn-pulse {
    animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(230, 57, 70, 0.6), 0 0 0 8px rgba(230, 57, 70, 0.1);
    }
}

/* Section Headers LP */
.landing-page .section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.landing-page .section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--space-4);
    position: relative;
    display: inline-block;
}

.landing-page .section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-cta);
    border-radius: var(--radius-full);
    margin: var(--space-4) auto 0;
}

.landing-page .section-header p {
    font-size: var(--font-size-lg);
    color: var(--color-gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Section Alt Background */
.section-alt {
    background: var(--color-gray-50);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: var(--space-4);
    z-index: 997;
}

@media (max-width: 767px) {
    .whatsapp-float {
        bottom: 120px;
    }
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-base);
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* Stars */
.stars {
    display: flex;
    gap: 2px;
    color: #fbbf24;
    margin-bottom: var(--space-4);
}

/* Button White Override */
.landing-page .btn-white {
    background: white;
    color: var(--color-primary);
    font-weight: 700;
}

.landing-page .btn-white:hover {
    background: var(--color-gray-100);
    color: var(--color-primary);
    transform: translateY(-3px);
}

/* Mobile Optimizations */
@media (max-width: 767px) {
    .landing-page .hero {
        padding-top: 100px;
        padding-bottom: var(--space-16);
        min-height: auto;
    }

    .landing-page .hero-title {
        font-size: 1.75rem;
    }

    .landing-page .hero-proof {
        flex-direction: column;
        gap: var(--space-3);
    }

    .countdown {
        gap: var(--space-2);
    }

    .countdown-item {
        padding: var(--space-2) var(--space-3);
        min-width: 50px;
    }

    .countdown-value {
        font-size: var(--font-size-xl);
    }

    .landing-page .section {
        padding: var(--space-12) 0;
    }
}

