/**
 * PROMOZIONE SPECIALE - MIOGEST
 * Estilos para la landing page de promoción especial
 *
 * Secciones:
 * 1. Variables y Reset
 * 2. Layout Principal
 * 3. Hero Content (Contenido Promocional)
 * 4. Formulario Multi-Paso
 * 5. Animaciones
 * 6. Responsive
 */

/* ========================================
   1. VARIABLES Y RESET
   ======================================== */

:root {
    /* Colores principales */
    --color-primary: #64c832;
    --color-primary-dark: #5ab02a;
    --color-accent: #ff6b35;
    --color-accent-dark: #ff5520;

    /* Colores de texto */
    --color-text-dark: #111827;
    --color-text-medium: #374151;
    --color-text-light: #6b7280;
    --color-text-muted: #9ca3af;

    /* Colores de fondo */
    --color-bg-light: #e8eaed;
    --color-bg-gray: #f9fafb;
    --color-bg-border: #e5e7eb;

    /* Espaciados */
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;

    /* Bordes */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-full: 50px;

    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08);
}

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

/* ========================================
   2. LAYOUT PRINCIPAL
   ======================================== */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: url('../images/fondo%20miogest.jpeg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    position: relative;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Logo Superior */
.logo-header {
    text-align: center;
    margin: 0 auto 40px;
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-header img {
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

/* Grid de dos columnas */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.content-column,
.form-column {
    padding: 20px;
}

/* ========================================
   3. HERO CONTENT (Contenido Promocional)
   ======================================== */

.content-box {
    background:
        radial-gradient(circle at top left, rgba(100, 200, 50, 0.16), transparent 55%),
        radial-gradient(circle at bottom right, rgba(255, 107, 53, 0.14), transparent 55%),
        rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(100, 200, 50, 0.1);
}

/* Badge Promo */
.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: linear-gradient(135deg, #eef7e8 0%, #e8f5e8 100%);
    color: #5a9b2f;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: var(--radius-full);
    border: 2px solid rgba(111, 182, 59, 0.2);
    margin-bottom: var(--spacing-lg);
}

.promo-icon {
    font-size: 18px;
    animation: pulse 2s ease-in-out infinite;
}

/* Títulos y Texto */
.content-box h1 {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text-dark);
}

.content-box h1 .highlight {
    color: var(--color-primary);
}

.content-box p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text-medium);
    margin-bottom: var(--spacing-md);
}

.content-box strong {
    font-weight: 700;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--color-bg-gray) 0%, #e9ecef 100%);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-top: var(--spacing-lg);
    text-align: center;
    border: 1px solid #dee2e6;
}

.cta-box .icon {
    font-size: 32px;
    margin-bottom: var(--spacing-md);
}

.cta-box h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 20px;
}

/* Grid de Beneficios */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
    margin-bottom: 20px;
}

.benefit-item {
    background: white;
    padding: 16px 12px;
    border-radius: var(--radius-sm);
    text-align: center;
    border: 1px solid var(--color-bg-border);
}

.benefit-item svg {
    width: 24px;
    height: 24px;
    color: #28a745;
    margin-bottom: var(--spacing-xs);
}

.benefit-item span {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-dark);
    display: block;
}

.cta-box .tagline {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-sm);
}

.cta-box .disclaimer {
    font-size: 11px;
    color: #6c757d;
    margin-top: var(--spacing-md);
}

/* ========================================
   4. FORMULARIO MULTI-PASO
   ======================================== */

/* Contenedor del formulario */
.form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: var(--spacing-2xl);
    max-width: 600px;
    width: 100%;
    box-shadow: var(--shadow-lg), 0 8px 16px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(100, 200, 50, 0.2);
    position: relative;
    z-index: 1;
}

/* Efecto de brillo superior */
.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 120px;
    background: radial-gradient(ellipse at top, rgba(100, 200, 50, 0.15) 0%, transparent 60%);
    border-radius: 32px 32px 0 0;
    pointer-events: none;
}

/* Logo del formulario */
.logo {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.logo h1 {
    color: var(--color-primary);
    font-size: 42px;
    font-weight: 900;
    text-shadow: 0 2px 10px rgba(100, 200, 50, 0.2);
    letter-spacing: -1.5px;
    position: relative;
    display: inline-block;
}

.logo h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    border-radius: 2px;
}

.logo p {
    color: var(--color-text-medium);
    font-size: 17px;
    margin-top: var(--spacing-md);
    font-weight: 600;
}

/* Indicador de pasos */
.step-indicator {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: 40px;
    position: relative;
}

.step-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-bg-border) 50%, var(--color-bg-border) 100%);
    z-index: 0;
    border-radius: 2px;
}

.step {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--color-bg-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-weight: 800;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.step.active {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-color: var(--color-primary);
    color: white;
    box-shadow: 0 8px 20px rgba(100, 200, 50, 0.35), 0 0 0 4px rgba(100, 200, 50, 0.1);
    transform: scale(1.15);
}

.step.completed {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(100, 200, 50, 0.25);
}

.step.completed::after {
    content: '✓';
    position: absolute;
    font-size: 20px;
}

/* Pasos del formulario */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-title {
    color: var(--color-text-dark);
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 28px;
    text-align: center;
    position: relative;
}

/* Grupos de formulario */
.form-group {
    margin-bottom: var(--spacing-lg);
}

label {
    display: block;
    color: var(--color-text-medium);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Inputs */
input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid var(--color-bg-border);
    border-radius: 14px;
    background: white;
    color: var(--color-text-dark);
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: var(--shadow-sm);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
    border-color: var(--color-primary);
    background: rgba(100, 200, 50, 0.02);
    box-shadow: 0 0 0 4px rgba(100, 200, 50, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder {
    color: var(--color-text-muted);
}

/* Checkbox group */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 28px;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(100, 200, 50, 0.04) 0%, rgba(100, 200, 50, 0.08) 100%);
    border-radius: var(--spacing-md);
    border: 2px solid rgba(100, 200, 50, 0.2);
    box-shadow: 0 2px 8px rgba(100, 200, 50, 0.08);
}

input[type="checkbox"] {
    width: 26px;
    height: 26px;
    accent-color: var(--color-primary);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label {
    color: var(--color-text-medium);
    font-size: 14px;
    line-height: 1.7;
    cursor: pointer;
    font-weight: 500;
}

.checkbox-label a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid rgba(100, 200, 50, 0.3);
    transition: all 0.2s ease;
}

.checkbox-label a:hover {
    color: var(--color-accent);
    border-bottom-color: rgba(255, 107, 53, 0.5);
}

/* Botones */
.button-group {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: 36px;
}

button {
    flex: 1;
    padding: 18px 28px;
    border: none;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

button:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3), 0 2px 6px rgba(255, 107, 53, 0.2);
    position: relative;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4), 0 4px 10px rgba(255, 107, 53, 0.25);
}

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

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.15);
}

.btn-secondary {
    background: white;
    color: var(--color-text-medium);
    border: 2px solid var(--color-bg-border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--color-bg-gray);
    border-color: #d1d5db;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Resumen */
.summary {
    background: linear-gradient(135deg, var(--color-bg-gray) 0%, #ffffff 100%);
    border-radius: var(--spacing-md);
    padding: var(--spacing-lg);
    margin-bottom: 28px;
    border: 2px solid var(--color-bg-border);
    box-shadow: var(--shadow-sm);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 2px solid #f3f4f6;
    color: var(--color-text-medium);
}

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

.summary-label {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 15px;
}

.summary-value {
    color: var(--color-text-dark);
    text-align: right;
    font-weight: 600;
    font-size: 15px;
}

/* Mensajes de error */
.error-message {
    color: #ef4444;
    font-size: 13px;
    margin-top: var(--spacing-xs);
    display: none;
    font-weight: 600;
}

.form-group.error input {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.02);
}

.form-group.error .error-message {
    display: block;
}

/* Badge de beneficio del formulario */
.benefit-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-xl);
    padding: 10px 20px;
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.1);
}

.benefit-badge-icon {
    width: 24px;
    height: 24px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 14px;
}

.benefit-badge-text {
    color: var(--color-text-dark);
    font-weight: 700;
    font-size: 14px;
}

/* ========================================
   5. ANIMACIONES
   ======================================== */

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

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

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-8px);
    }
    75% {
        transform: translateX(8px);
    }
}

.form-step {
    animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group.error {
    animation: shake 0.4s ease;
}

/* ========================================
   6. SECCIONES ADICIONALES
   ======================================== */

/* Container genérico para secciones */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-7xl {
    max-width: 80rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Features Section */
.tw-py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.tw-bg-white {
    background: white;
}

.tw-container {
    max-width: 1280px;
    margin: 0 auto;
}

.tw-text-center {
    text-align: center;
}

.tw-mb-16 {
    margin-bottom: 4rem;
}

.tw-text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.tw-text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.tw-font-bold {
    font-weight: 700;
}

.tw-text-gray-900 {
    color: var(--color-text-dark);
}

.tw-mb-4 {
    margin-bottom: 1rem;
}

.tw-text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.tw-text-gray-600 {
    color: var(--color-text-light);
}

.tw-max-w-3xl {
    max-width: 48rem;
}

.tw-mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.tw-grid {
    display: grid;
}

.tw-grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.tw-gap-8 {
    gap: 2rem;
}

.tw-bg-gray-50 {
    background: var(--color-bg-gray);
}

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

.tw-p-6 {
    padding: 1.5rem;
}

.tw-shadow-sm {
    box-shadow: var(--shadow-sm);
}

.tw-transition-all {
    transition: all 0.3s ease;
}

.tw-duration-300 {
    transition-duration: 300ms;
}

.hover\:tw-shadow-md:hover {
    box-shadow: var(--shadow-md);
}

.tw-w-12 {
    width: 3rem;
}

.tw-h-12 {
    height: 3rem;
}

.tw-rounded-full {
    border-radius: 9999px;
}

.tw-flex {
    display: flex;
}

.tw-items-center {
    align-items: center;
}

.tw-justify-center {
    justify-content: center;
}

.tw-mb-4 {
    margin-bottom: 1rem;
}

.tw-w-6 {
    width: 1.5rem;
}

.tw-h-6 {
    height: 1.5rem;
}

.tw-text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.tw-mb-2 {
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .md\:tw-text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    .md\:tw-grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Testimonials Section */
.bg-white {
    background: white;
    padding: 3rem 0;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.sm\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.font-bold {
    font-weight: 700;
}

.tracking-tight {
    letter-spacing: -0.025em;
}

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

.text-\[\#2c3e50\] {
    color: #2c3e50;
}

.mt-10 {
    margin-top: 2.5rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mb-14 {
    margin-bottom: 3.5rem;
}

.swiper {
    width: 100%;
    padding: 1rem 0;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    height: auto;
    flex-shrink: 0;
}

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

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

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.sm\:p-8 {
    padding: 2rem;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-grow {
    flex-grow: 1;
}

.items-start {
    align-items: flex-start;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.bottom-4 {
    bottom: 1rem;
}

.right-6 {
    right: 1.5rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mr-4 {
    margin-right: 1rem;
}

.mr-5 {
    margin-right: 1.25rem;
}

.sm\:mr-5 {
    margin-right: 1.25rem;
}

.w-16 {
    width: 4rem;
}

.h-16 {
    height: 4rem;
}

.w-20 {
    width: 5rem;
}

.h-20 {
    height: 5rem;
}

.sm\:w-20 {
    width: 5rem;
}

.sm\:h-20 {
    height: 5rem;
}

.w-6 {
    width: 1.5rem;
}

.h-6 {
    height: 1.5rem;
}

.w-7 {
    width: 1.75rem;
}

.h-7 {
    height: 1.75rem;
}

.sm\:w-7 {
    width: 1.75rem;
}

.sm\:h-7 {
    height: 1.75rem;
}

.rounded-full {
    border-radius: 9999px;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.sm\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-yellow-400 {
    color: #facc15;
}

.my-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.sm\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

.text-\[\#6c757d\] {
    color: #6c757d;
}

.leading-relaxed {
    line-height: 1.625;
}

.inline-block {
    display: inline-block;
}

.bg-\[\#ff6b35\] {
    background-color: var(--color-accent);
}

.hover\:bg-\[\#e55a2b\]:hover {
    background-color: var(--color-accent-dark);
}

.text-white {
    color: white;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

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

.transition-colors {
    transition: background-color 0.3s ease;
}

.hover\:opacity-80:hover {
    opacity: 0.8;
}

.transition-opacity {
    transition: opacity 0.3s ease;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.sm\:mb-8 {
    margin-bottom: 2rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.sm\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.font-semibold {
    font-weight: 600;
}

.h-12 {
    height: 3rem;
}

.h-14 {
    height: 3.5rem;
}

.sm\:h-14 {
    height: 3.5rem;
}

.grayscale {
    filter: grayscale(100%);
}

.hover\:grayscale-0:hover {
    filter: grayscale(0%);
}

.transition {
    transition: all 0.3s ease;
}

.text-gray-200 {
    color: #e5e7eb;
}

.w-10 {
    width: 2.5rem;
}

.h-auto {
    height: auto;
}

.w-12 {
    width: 3rem;
}

.sm\:w-12 {
    width: 3rem;
}

/* Comparison Section */
.pt-8 {
    padding-top: 2rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.py-0\.5 {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
}

.overflow-x-auto {
    overflow-x: auto;
}

.min-w-full {
    min-width: 100%;
}

.divide-y {
    border-top: 1px solid var(--color-bg-border);
}

.divide-gray-200 > * + * {
    border-top: 1px solid var(--color-bg-border);
}

.bg-gray-50 {
    background-color: var(--color-bg-gray);
}

.uppercase {
    text-transform: uppercase;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.text-gray-500 {
    color: var(--color-text-light);
}

.whitespace-nowrap {
    white-space: nowrap;
}

.text-gray-900 {
    color: var(--color-text-dark);
}

.bg-\[\#eef7e8\] {
    background-color: #eef7e8;
}

.text-\[\#2c3e50\] {
    color: #2c3e50;
}

.text-\[\#64c832\] {
    color: var(--color-primary);
}

.space-y-3 > * + * {
    margin-top: 0.75rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.gap-2 {
    gap: 0.5rem;
}

.p-4 {
    padding: 1rem;
}

.border {
    border-width: 1px;
}

.border-gray-200 {
    border-color: var(--color-bg-border);
}

.bg-\[\#64c832\] {
    background-color: var(--color-primary);
}

.bg-gray-100 {
    background-color: var(--color-bg-gray);
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.font-medium {
    font-weight: 500;
}

.text-gray-700 {
    color: var(--color-text-medium);
}

.underline {
    text-decoration: underline;
}

.underline-offset-2 {
    text-underline-offset: 2px;
}

.hidden {
    display: none;
}

.md\:hidden {
    display: block;
}

.md\:block {
    display: none;
}

.md\:inline-block {
    display: none;
}

@media (min-width: 768px) {
    .md\:hidden {
        display: none;
    }

    .md\:block {
        display: block;
    }

    .md\:inline-block {
        display: inline-block;
    }
}

/* ========================================
   7. RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Ocultar logo header y logo del formulario en móvil/tablet para maximizar espacio */
    .logo-header,
    .form-container .logo {
        display: none !important;
    }

    .content-box h1 {
        font-size: 30px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    /* Ocultar promo badge y CTA box en móvil/tablet para destacar el formulario */
    .promo-badge,
    .cta-box {
        display: none !important;
    }

    /* Reducir espacios en móvil/tablet */
    .hero-container {
        padding: 10px;
    }

    .content-column,
    .form-column {
        padding: 10px;
    }

    .content-box {
        padding: 24px;
        margin-bottom: 12px;
    }

    .content-box h1 {
        margin-bottom: 16px;
    }

    .content-box p {
        margin-bottom: 12px;
    }
}

@media (max-width: 640px) {
    .hero-container {
        padding: 5px;
    }

    /* Logo del formulario oculto en móvil (ya definido en max-width: 1024px) */

    /* Reducir padding superior del formulario al no tener logo */
    .form-container {
        padding-top: 20px;
    }

    .content-column,
    .form-column {
        padding: 5px;
    }

    .content-box {
        padding: 20px;
        margin-bottom: 10px;
    }

    .content-box h1 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .content-box p {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .form-container {
        padding: 20px;
        border-radius: var(--radius-xl);
    }

    /* Logo del formulario ya oculto en @media (max-width: 1024px) */

    .step-indicator {
        margin-bottom: 20px;
        margin-top: 0;
    }

    .button-group {
        flex-direction: column-reverse;
        margin-top: 24px;
    }

    button {
        width: 100%;
        padding: 16px 24px;
    }

    .step {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .step-line {
        width: 140px;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .form-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
}
