/* ============================================
   PROPUESTA COMERCIAL - GUATIBONZA CLINICS
   Elegant Design with Light & Gold Tones
   ============================================ */

/* CSS Variables */
:root {
    /* Primary Colors - Gold & Elegant */
    --gold-50: #fffbeb;
    --gold-100: #fef3c7;
    --gold-200: #fde68a;
    --gold-300: #fcd34d;
    --gold-400: #fbbf24;
    --gold-500: #f59e0b;
    --gold-600: #d97706;
    --gold-700: #b45309;
    
    /* Accent Gold Gradients */
    --gold-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
    --gold-shine: linear-gradient(135deg, #fcd34d 0%, #f59e0b 50%, #d97706 100%);
    
    /* Neutral Colors - Warm Whites & Creams */
    --cream-50: #fefdfb;
    --cream-100: #fdfcf7;
    --cream-200: #f9f5ed;
    --cream-300: #f3ede0;
    --cream-400: #e8dfc9;
    
    /* Text Colors */
    --text-primary: #1c1917;
    --text-secondary: #44403c;
    --text-muted: #78716c;
    --text-light: #a8a29e;
    
    /* Semantic Colors */
    --success: #22c55e;
    --success-light: #dcfce7;
    --error: #ef4444;
    --error-light: #fee2e2;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.07), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.05);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.08), 0 8px 10px -6px rgb(0 0 0 / 0.05);
    --shadow-gold: 0 10px 40px -10px rgba(245, 158, 11, 0.3);
    
    /* Spacing */
    --section-padding: 120px;
    --container-max: 1200px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--cream-50);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   FLOATING NAVIGATION
   ============================================ */
.floating-nav {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 8px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(245, 158, 11, 0.15);
    opacity: 0;
    animation: fadeInNav 0.6s ease 0.5s forwards;
}

@keyframes fadeInNav {
    to { opacity: 1; }
}

.nav-container {
    display: flex;
    gap: 4px;
}

.nav-link {
    padding: 10px 18px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 50px;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--gold-600);
    background: var(--gold-50);
}

.nav-link.active {
    background: var(--gold-gradient);
    color: white;
    box-shadow: var(--shadow-gold);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 120px 24px 80px;
    background: linear-gradient(180deg, var(--cream-100) 0%, var(--cream-50) 100%);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(217, 119, 6, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(252, 211, 77, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-bg-pattern::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(245, 158, 11, 0.1);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero-bg-pattern::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(245, 158, 11, 0.08);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(5deg); }
    50% { transform: translate(-10px, 10px) rotate(-3deg); }
    75% { transform: translate(15px, 5px) rotate(2deg); }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold-600);
    box-shadow: var(--shadow-md);
    margin-bottom: 32px;
    border: 1px solid var(--gold-100);
}

.badge-icon {
    font-size: 1rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 24px;
    line-height: 1.1;
}

.title-accent {
    display: block;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.title-company {
    display: block;
    font-size: 0.5em;
    color: var(--text-secondary);
    font-weight: 400;
    margin-top: 16px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--gold-gradient);
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-gold);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px -10px rgba(245, 158, 11, 0.4);
}

.btn-primary.large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: white;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--cream-300);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-200);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.8rem;
    animation: fadeInUp 0.6s ease 1s forwards;
    opacity: 0;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--gold-300);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--gold-400);
    border-radius: 2px;
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.3; transform: translateY(10px); }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

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

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

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-number {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-500);
    margin-bottom: 16px;
    letter-spacing: 0.2em;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-line {
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 0 auto;
    border-radius: 2px;
}

/* ============================================
   DESCRIPCION SECTION
   ============================================ */
.descripcion {
    background: white;
}

.descripcion-content {
    max-width: 800px;
    margin: 0 auto;
}

.descripcion-card {
    background: linear-gradient(135deg, var(--cream-50) 0%, white 100%);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    margin-bottom: 48px;
    border: 1px solid var(--cream-300);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
}

.descripcion-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.descripcion-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.highlight {
    color: var(--gold-600);
    font-weight: 600;
}

.descripcion-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.feature-item {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px 16px;
    text-align: center;
    border: 1px solid var(--cream-300);
    transition: all var(--transition-normal);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-200);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* ============================================
   AGENTES SECTION
   ============================================ */
.agentes {
    background: linear-gradient(180deg, var(--cream-50) 0%, var(--cream-100) 100%);
}

.agents-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.agent-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--cream-300);
    transition: all var(--transition-normal);
}

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

.agent-header {
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, var(--cream-50) 0%, white 100%);
    border-bottom: 1px solid var(--cream-200);
}

.agent-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.agent-icon.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.agent-icon.voice {
    background: var(--gold-gradient);
    color: white;
}

.agent-header h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.agent-body {
    padding: 24px 32px 32px;
}

.agent-category {
    margin-bottom: 20px;
}

.agent-category:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 12px 16px;
    background: var(--cream-50);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    transition: all var(--transition-fast);
}

.category-header:hover {
    background: var(--cream-100);
}

.category-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.category-badge.inbound {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    color: #0369a1;
}

.category-badge.outbound {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: var(--gold-700);
}

.chevron {
    transition: transform var(--transition-fast);
    color: var(--text-muted);
}

.category-header.collapsed .chevron {
    transform: rotate(-90deg);
}

.category-list {
    list-style: none;
    display: grid;
    gap: 10px;
    padding-left: 16px;
    max-height: 500px;
    overflow: hidden;
    transition: max-height var(--transition-normal), opacity var(--transition-normal);
}

.category-list.collapsed {
    max-height: 0;
    opacity: 0;
}

.category-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 8px 0;
}

.list-icon {
    flex-shrink: 0;
    font-size: 1rem;
}

/* ============================================
   INTEGRACIONES SECTION
   ============================================ */
.integraciones {
    background: white;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.integration-card {
    background: linear-gradient(135deg, var(--cream-50) 0%, white 100%);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    border: 1px solid var(--cream-300);
    transition: all var(--transition-normal);
}

.integration-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold-200);
}

.integration-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--gold-600);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gold-100);
    transition: all var(--transition-normal);
}

.integration-card:hover .integration-icon {
    background: var(--gold-gradient);
    color: white;
    border-color: transparent;
}

.integration-card h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.integration-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ============================================
   ALCANCE SECTION
   ============================================ */
.alcance {
    background: linear-gradient(180deg, var(--cream-100) 0%, var(--cream-50) 100%);
}

.scope-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
}

.scope-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.scope-header {
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.scope-card.included .scope-header {
    background: linear-gradient(135deg, var(--success-light) 0%, #f0fdf4 100%);
    border-bottom: 1px solid #bbf7d0;
}

.scope-card.excluded .scope-header {
    background: linear-gradient(135deg, var(--error-light) 0%, #fff5f5 100%);
    border-bottom: 1px solid #fecaca;
}

.scope-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scope-icon.included {
    background: var(--success);
    color: white;
}

.scope-icon.excluded {
    background: var(--error);
    color: white;
}

.scope-header h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
}

.scope-list {
    list-style: none;
    padding: 24px 32px;
}

.scope-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--cream-200);
}

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

.check {
    color: var(--success);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.x {
    color: var(--error);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.note {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 4px;
}

.sub-list {
    list-style: none;
    margin-top: 12px;
    padding-left: 24px;
}

.sub-list li {
    padding: 6px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
}

.sub-list li::before {
    content: '•';
    position: absolute;
    left: -16px;
    color: var(--text-light);
}

/* ============================================
   PLAN DE TRABAJO SECTION
   ============================================ */
.plan {
    background: white;
}

.timeline {
    max-width: 800px;
    margin: 0 auto 80px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold-200) 0%, var(--gold-400) 50%, var(--gold-200) 100%);
}

.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    width: 64px;
    height: 64px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-gold);
    z-index: 1;
}

.phase-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    font-family: 'Cormorant Garamond', serif;
}

.timeline-content {
    flex: 1;
    background: linear-gradient(135deg, var(--cream-50) 0%, white 100%);
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid var(--cream-300);
    box-shadow: var(--shadow-md);
}

.phase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.phase-header h3 {
    font-size: 1.35rem;
    color: var(--text-primary);
}

.phase-badge {
    background: var(--gold-100);
    color: var(--gold-700);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.phase-list {
    list-style: none;
}

.phase-list li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.phase-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--gold-400);
    border-radius: 50%;
}

/* Support Section */
.support-section {
    background: linear-gradient(135deg, var(--gold-50) 0%, var(--cream-100) 100%);
    border-radius: var(--radius-xl);
    padding: 48px;
    border: 1px solid var(--gold-200);
}

.support-header {
    text-align: center;
    margin-bottom: 40px;
}

.support-icon {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--gold-600);
    box-shadow: var(--shadow-md);
}

.support-header h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.support-badge {
    background: var(--gold-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.support-item {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--cream-300);
    transition: all var(--transition-normal);
}

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

.support-item-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.support-item h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.support-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ============================================
   PROPUESTA ECONOMICA SECTION
   ============================================ */
.propuesta {
    background: linear-gradient(180deg, var(--cream-50) 0%, var(--cream-100) 100%);
}

.pricing-card {
    max-width: 800px;
    margin: 0 auto 48px;
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gold-200);
}

.pricing-header {
    background: var(--gold-gradient);
    padding: 48px;
    text-align: center;
    color: white;
}

.pricing-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.9;
    display: block;
    margin-bottom: 16px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.currency {
    font-size: 2rem;
    font-weight: 500;
}

.price {
    font-size: 5rem;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
}

.currency-suffix {
    font-size: 1.5rem;
    font-weight: 500;
    opacity: 0.9;
}

.payment-terms {
    padding: 48px;
}

.payment-terms h4 {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.payment-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.payment-item {
    flex: 1;
    max-width: 280px;
    background: var(--cream-50);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    border: 1px solid var(--cream-300);
}

.payment-percentage {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-600);
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 8px;
}

.payment-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.payment-amount {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.payment-when {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.payment-divider {
    color: var(--gold-400);
    flex-shrink: 0;
}

/* Conditions Section */
.conditions-section {
    max-width: 800px;
    margin: 0 auto 64px;
}

.conditions-section h4 {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.condition-item {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--cream-300);
    box-shadow: var(--shadow-md);
}

.condition-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.condition-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 64px 0 0;
}

.final-cta p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-family: 'Cormorant Garamond', serif;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--text-primary);
    padding: 48px 0;
    text-align: center;
}

.footer-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-date {
    color: var(--gold-400) !important;
    margin-top: 8px;
    font-weight: 500;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .agents-grid,
    .scope-grid {
        grid-template-columns: 1fr;
    }
    
    .integrations-grid,
    .support-grid,
    .conditions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .descripcion-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }
    
    .floating-nav {
        display: none;
    }
    
    .hero {
        padding: 80px 24px 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .integrations-grid,
    .support-grid,
    .conditions-grid {
        grid-template-columns: 1fr;
    }
    
    .descripcion-card {
        padding: 32px 24px;
    }
    
    .timeline::before {
        left: 24px;
    }
    
    .timeline-marker {
        width: 48px;
        height: 48px;
    }
    
    .timeline-content {
        padding: 24px;
    }
    
    .payment-grid {
        flex-direction: column;
    }
    
    .payment-divider {
        transform: rotate(90deg);
    }
    
    .payment-item {
        max-width: 100%;
        width: 100%;
    }
    
    .pricing-header {
        padding: 32px;
    }
    
    .price {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .descripcion-features {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .timeline-item {
        gap: 16px;
    }
    
    .agent-header,
    .agent-body {
        padding: 20px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .floating-nav,
    .scroll-indicator {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
    }
    
    .hero {
        min-height: auto;
        padding: 40px;
    }
}

