/* =============================================
   SN ASESORES DE SEGUROS - ESTILOS PRINCIPALES
   ============================================= */

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

:root {
    --primary: #0CC8AA;
    --primary-dark: #0AB396;
    --primary-light: #E8F8F5;
    --secondary: #0B1F3F;
    --secondary-light: #132D54;
    --accent: #0CC8AA;
    --white: #FFFFFF;
    --gray-50: #F8FAFB;
    --gray-100: #F1F5F8;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --text: #1E293B;
    --text-light: #64748B;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-card: 0 2px 16px rgba(11,31,63,0.06);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'DM Serif Display', Georgia, serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-main);
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

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

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(12, 200, 170, 0.3);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(12, 200, 170, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--gray-200);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.btn-white {
    background: var(--white);
    color: var(--secondary);
    font-weight: 700;
}
.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 700;
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

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

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

.navbar-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.navbar-links > li > a {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.navbar-links > li > a:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.2s;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 14px;
    font-size: 0.875rem;
    color: var(--gray-600);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.btn-whatsapp-nav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    background: #25D366;
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}
.btn-whatsapp-nav:hover {
    background: #1fb855;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* ── Botón Productores (acceso panel privado) ── */
.btn-productores {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: transparent;
    color: var(--secondary);
    border: 1.5px solid var(--gray-300);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: var(--transition);
}
.btn-productores:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
    transform: translateY(-1px);
}
.btn-productores svg {
    opacity: 0.6;
}
.btn-productores:hover svg {
    opacity: 1;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.navbar-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--secondary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ---------- HERO (index) ---------- */
.hero {
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    background: #EEF5FB;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(11, 31, 63, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 31, 63, 0.045) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 85% 85% at 25% 50%, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 85% 85% at 25% 50%, black 20%, transparent 80%);
}

.hero::after {
    content: '';
    position: absolute;
    top: -15%;
    left: -8%;
    width: 65%;
    height: 130%;
    background: radial-gradient(ellipse at 40% 50%, rgba(12, 200, 170, 0.13) 0%, rgba(12, 200, 170, 0.05) 40%, transparent 70%);
    pointer-events: none;
}

.hero-accent-line {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    z-index: 2;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-bottom: 30px;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: 3.8rem;
    line-height: 1.08;
    color: var(--secondary);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.hero-title .text-accent {
    display: block;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-buttons .btn-primary {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.hero-buttons .btn-outline {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
}

.hero-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 500;
}

.badge svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
}

.carousel-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-lg);
}

.carousel-container > .carousel-slide img {
    border-radius: var(--radius-lg);
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-arrows {
    position: absolute;
    top: 42%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 -8px;
    pointer-events: none;
    z-index: 3;
}

.carousel-arrow {
    pointer-events: all;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--secondary);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    margin: 0 -8px;
}

.carousel-arrow:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
}

.carousel-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.carousel-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    color: var(--gray-500);
    transition: var(--transition);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    background: var(--white);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    min-width: 68px;
}

.carousel-icon.active {
    color: var(--primary);
    background: var(--white);
    box-shadow: 0 4px 20px rgba(12, 200, 170, 0.2);
}

.carousel-icon:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

/* ---------- SECTION HEADER ---------- */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.section-header p {
    font-size: 1rem;
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    padding: 4px 14px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 12px;
    letter-spacing: 0.03em;
}

/* ---------- SERVICIOS ---------- */
.servicios {
    padding: 80px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
}

.servicios-grupo {
    margin-bottom: 48px;
}

.servicios-subtitulo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.servicios-subtitulo .line {
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

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

.servicio-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 24px 28px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s ease,
                border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.servicio-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 36px rgba(11, 31, 63, 0.12), 0 0 0 2px rgba(12, 200, 170, 0.25);
    border-color: rgba(12, 200, 170, 0.4);
    background: var(--white);
}

@keyframes iconBounce {
    0%   { transform: scale(1)    rotate(0deg); }
    20%  { transform: scale(1.18) rotate(-6deg); }
    40%  { transform: scale(1.12) rotate(5deg); }
    60%  { transform: scale(1.16) rotate(-3deg); }
    80%  { transform: scale(1.10) rotate(2deg); }
    100% { transform: scale(1.13) rotate(0deg); }
}

.servicio-icon {
    width: 120px;
    height: 120px;
    background: transparent !important;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: filter 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.25);
}

.servicio-card:hover .servicio-icon {
    animation: iconBounce 0.5s ease forwards;
    filter: drop-shadow(0 6px 16px rgba(12, 200, 170, 0.35));
}

.icon-blue  { background: #3B82F6; color: white; }
.icon-green { background: #10B981; color: white; }
.icon-pink  { background: #EC4899; color: white; }
.icon-orange{ background: #F97316; color: white; }
.icon-red   { background: #EF4444; color: white; }

.servicio-card h4 {
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--secondary);
    margin-bottom: 10px;
}

.servicio-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.55;
    margin-bottom: 6px;
}

.ver-mas {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 12px;
    opacity: 1;
    transition: gap 0.25s ease, color 0.25s ease;
}

.servicio-card:hover .ver-mas {
    gap: 8px;
    color: var(--primary-dark);
}

/* ---------- COTIZADOR ---------- */
.cotizador {
    padding: 80px 0;
    background: var(--gray-50);
}

.cotizador-box {
    max-width: 680px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-100);
}

.stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 36px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.step span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
}

.step.active span,
.step.completed span {
    background: var(--primary);
    color: var(--white);
}

.step small {
    font-size: 0.7rem;
    color: var(--gray-400);
    font-weight: 500;
}

.step.active small {
    color: var(--primary);
    font-weight: 600;
}

.step-line {
    flex: 1;
    height: 3px;
    background: var(--gray-200);
    margin: 0 8px;
    margin-bottom: 20px;
    border-radius: 2px;
    max-width: 80px;
    transition: var(--transition);
}

.step-line.active {
    background: var(--primary);
}

.cotizador-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

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

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

.cotizador-step h3 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 20px;
    text-align: center;
}

.marca-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.marca-btn {
    padding: 12px 8px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: var(--transition);
    text-align: center;
}

.marca-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

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

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text);
    transition: var(--transition);
    background: var(--white);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(12, 200, 170, 0.15);
}

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

.form-input.error {
    border-color: #DC2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.field-error-msg {
    display: block;
    color: #DC2626;
    font-size: 0.78rem;
    font-weight: 500;
    margin-top: 4px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.gnc-options {
    display: flex;
    gap: 10px;
}

.gnc-btn {
    padding: 10px 28px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: var(--transition);
}

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

.step-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
}

.success-message {
    text-align: center;
    padding: 20px;
}

.success-message svg {
    margin-bottom: 16px;
}

.success-message h3 {
    color: var(--primary);
    margin-bottom: 8px;
}

.success-message p {
    color: var(--gray-500);
    margin-bottom: 20px;
}

.cotizador-beneficios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    text-align: center;
}

.beneficio {
    padding: 20px;
}

.beneficio svg {
    margin: 0 auto 12px;
    display: block;
}

.beneficio h4 {
    font-size: 0.95rem;
    color: var(--secondary);
    margin-bottom: 6px;
}

.beneficio p {
    font-size: 0.82rem;
    color: var(--gray-500);
}

/* ---------- ASEGURADORAS ---------- */
.aseguradoras {
    padding: 60px 0;
    background: var(--gray-50);
}

.aseguradoras-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.aseguradora-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 32px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--white);
    transition: var(--transition);
    min-width: 160px;
}

.aseguradora-logo img {
    height: 40px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(1) opacity(0.55);
    transition: var(--transition);
}

.aseguradora-logo:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.aseguradora-logo:hover img {
    filter: grayscale(0) opacity(1);
}

.aseguradora-logo span {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-500);
}

/* ---------- CONTACTO ---------- */
.contacto {
    padding: 80px 0;
    background: var(--gray-50);
}

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

.contacto-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

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

.contacto-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.contacto-icon.telefono  { background: #EBF5FF; color: #3B82F6; }
.contacto-icon.whatsapp  { background: #E8FFF0; color: #25D366; }
.contacto-icon.email     { background: #F3E8FF; color: #8B5CF6; }

.contacto-card h4 {
    font-size: 1.05rem;
    color: var(--secondary);
    margin-bottom: 6px;
}

.contacto-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.contacto-link {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--white);
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.cta-left h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 12px;
}

.cta-left p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.cta-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    backdrop-filter: blur(4px);
}

.cta-card h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.cta-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ---------- PRE-FOOTER ---------- */
.pre-footer {
    padding: 40px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
}

.pre-footer p {
    color: var(--gray-500);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--secondary);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 8px;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-contact-info p {
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-info svg {
    color: var(--primary);
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.ssn-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ssn-box strong {
    color: var(--white);
    font-size: 0.9rem;
}

.ssn-box p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.ssn-text {
    font-size: 0.72rem !important;
    line-height: 1.5;
    margin-top: 8px !important;
}

.ssn-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.78rem;
    color: var(--primary) !important;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--primary);
}

/* ---------- WHATSAPP FLOTANTE ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

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

@keyframes pulse {
    0%   { 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 12px rgba(37, 211, 102, 0.1); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* ---------- ANIMATIONS ---------- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.stagger-1 { transition-delay: 0.05s; }
.animate-on-scroll.stagger-2 { transition-delay: 0.12s; }
.animate-on-scroll.stagger-3 { transition-delay: 0.19s; }
.animate-on-scroll.stagger-4 { transition-delay: 0.26s; }
.animate-on-scroll.stagger-5 { transition-delay: 0.33s; }
.animate-on-scroll.stagger-6 { transition-delay: 0.40s; }
.animate-on-scroll.stagger-7 { transition-delay: 0.47s; }
.animate-on-scroll.stagger-8 { transition-delay: 0.54s; }

.animate-title {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-title.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   PÁGINAS DE COBERTURA (seguro-auto, moto, etc.)
   ============================================= */

/* --- Hero de cobertura --- */
.coverage-hero {
    position: relative;
    height: 420px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
    margin-top: 72px; /* altura del navbar */
    overflow: hidden;
}

.coverage-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 6s ease;
}

.coverage-hero:hover .coverage-hero-bg {
    transform: scale(1.0);
}

.coverage-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(11, 31, 63, 0.82) 0%,
        rgba(11, 31, 63, 0.55) 50%,
        rgba(11, 31, 63, 0.25) 100%
    );
}

.coverage-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 600px;
}

.coverage-hero-content h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--white);
}

.coverage-hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    line-height: 1.6;
}

/* Animaciones del hero */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 0.7s ease forwards;
}
.fade-in-delay {
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 0.7s ease 0.2s forwards;
}
.fade-in-delay-2 {
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 0.7s ease 0.4s forwards;
}

@keyframes heroFadeIn {
    to { opacity: 1; transform: translateY(0); }
}

/* --- Sección de coberturas detalladas --- */
.coverage-details {
    padding: 80px 0;
    background: var(--white);
}

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

.coverage-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 28px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.coverage-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
    background: var(--white);
}

.coverage-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #e8f8f5 0%, #cff4ec 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(12,200,170,0.18), inset 0 1px 0 rgba(255,255,255,0.75);
    transition: var(--transition);
}

.coverage-item:hover .coverage-icon {
    box-shadow: 0 6px 20px rgba(12,200,170,0.28), inset 0 1px 0 rgba(255,255,255,0.75);
    transform: scale(1.06);
}

.coverage-icon svg {
    filter: drop-shadow(0 2px 5px rgba(12,200,170,0.3));
}

.coverage-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.coverage-item p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* --- Scroll reveal animation (alias de animate-on-scroll) --- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Planes / Pricing --- */
.plans-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.plans-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.plan-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 2px solid var(--gray-100);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.plan-card.plan-featured {
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(12, 200, 170, 0.18);
    transform: translateY(-8px);
}

.plan-card.plan-featured:hover {
    transform: translateY(-12px);
}

.plan-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    width: fit-content;
}

.plan-badge-featured {
    background: var(--primary);
    color: var(--white);
}

.plan-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.plan-description {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 28px;
    line-height: 1.5;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--gray-600);
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
    line-height: 1.5;
}

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

.plan-features li svg {
    flex-shrink: 0;
    margin-top: 1px;
}

.plan-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

/* --- Benefits section --- */
.benefits-section {
    padding: 80px 0;
    background: var(--white);
}

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

.benefit-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: var(--white);
    border-color: var(--primary);
}

.benefit-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    background: var(--primary);
}

.benefit-card:hover .benefit-icon svg path,
.benefit-card:hover .benefit-icon svg circle,
.benefit-card:hover .benefit-icon svg rect {
    stroke: var(--white);
}

.benefit-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* --- CTA section (páginas de cobertura) --- */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
}

.cta-content {
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    margin-bottom: 12px;
    color: var(--white);
}

.cta-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
}

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

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

.cta-buttons .btn-outline {
    border-color: rgba(255,255,255,0.4);
    color: var(--white);
}

.cta-buttons .btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-carousel { max-width: 500px; margin: 0 auto; padding-bottom: 72px; }

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

    .cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

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

    .plans-container {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .plan-card.plan-featured {
        transform: none;
        order: -1;
    }

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

@media (max-width: 768px) {
    .navbar-links {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px;
        box-shadow: var(--shadow-lg);
        gap: 0;
        border-top: 1px solid var(--gray-100);
        max-height: calc(100vh - 72px);
        overflow-y: auto;
    }

    .navbar-links.open {
        display: flex;
    }

    .navbar-links > li > a {
        padding: 14px 16px;
        display: block;
        font-size: 1rem;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 20px;
        display: none;
        background: transparent;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .btn-whatsapp-nav {
        display: none;
    }

    .btn-productores {
        display: none;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .navbar-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .navbar-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

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

    .carousel-icons { gap: 6px; }

    .carousel-icon {
        padding: 8px 10px;
        min-width: 56px;
        font-size: 0.65rem;
    }

    .carousel-icon svg {
        width: 18px;
        height: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .cotizador-beneficios {
        grid-template-columns: 1fr;
    }

    .aseguradoras-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        justify-content: stretch;
        gap: 10px;
    }
    .aseguradora-logo {
        min-width: 0;
        padding: 14px 8px;
    }
    .aseguradora-logo img {
        max-width: 100%;
        height: 32px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .cotizador-box {
        padding: 24px 20px;
    }

    /* Coverage pages responsive */
    .coverage-hero {
        height: 340px;
        padding-bottom: 40px;
    }

    .coverage-hero-content h1 {
        font-size: 2rem;
    }

    .coverage-hero-content p {
        font-size: 0.95rem;
    }

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

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

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .stepper { gap: 0; }

    .step small { display: none; }

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

    .coverage-hero {
        height: 300px;
    }

    .coverage-hero-content h1 {
        font-size: 1.7rem;
    }
}

/* ---------- COTIZADOR GENERAL (otros seguros) ---------- */
.cotizador-general {
    padding: 80px 0;
    background: linear-gradient(180deg, #f0fdf9 0%, var(--white) 55%);
    border-top: 3px solid var(--primary);
    position: relative;
}

.cotizador-general::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 0 0 4px 4px;
}

.cotizador-general .cotizador-box {
    max-width: 780px;
}

.cotizador-general .step-nav {
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}

.cotizador-general textarea.form-input {
    min-height: 90px;
    line-height: 1.6;
    padding-top: 12px;
}


/* =============================================
   FIXES PARA MÓVIL - Desbordamiento horizontal
   ============================================= */

/* Prevenir scroll horizontal en toda la página */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Asegurar que todos los contenedores respeten el ancho */
.container {
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
}

/* Fix para imágenes que puedan causar overflow */
img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Fix para grids en móvil */
@media (max-width: 768px) {
    .servicios-grid,
    .coverage-grid,
    .benefits-grid,
    .plans-container,
    .contacto-grid,
    .footer-grid {
        width: 100%;
        max-width: 100%;
    }

    /* Ajustar padding del hero */
    .hero {
        padding-left: 0;
        padding-right: 0;
    }

    .hero-inner {
        width: 100%;
        padding: 0 16px;
        box-sizing: border-box;
    }

    /* Asegurar que el navbar no cause overflow */
    .navbar-inner {
        padding: 0 16px;
    }

    /* Fix para el carousel en móvil */
    .carousel-container {
        width: 100%;
        max-width: 100%;
    }

    /* Ajustar las tarjetas de servicio */
    .servicio-card {
        width: 100%;
        box-sizing: border-box;
    }
}

/* Fix específico para pantallas muy pequeñas */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        word-wrap: break-word;
        hyphens: auto;
    }
}


/* =============================================
   FIX: Ocultar flechas de navegación molestas en móvil
   ============================================= */

@media (max-width: 768px) {
    /* Ocultar flechas del carousel en móvil */
    .carousel-arrows {
        display: none !important;
    }

    /* Ajustar iconos del carousel para que sean más accesibles */
    .carousel-icons {
        position: relative;
        bottom: auto;
        margin-top: 20px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .carousel-icon {
        flex: 1;
        min-width: 70px;
        max-width: 80px;
    }
}

/* Ocultar cualquier símbolo > que aparezca en botones en móvil */
@media (max-width: 768px) {
    .ver-mas::after,
    .btn::after {
        content: none !important;
    }
}


/* =============================================
   FIX: HERO EN MÓVIL - Imágenes del carousel
   ============================================= */

@media (max-width: 768px) {
    /* Ajustar el hero para móvil */
    .hero {
        padding: 100px 0 40px;
    }

    .hero-inner {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    /* El carousel debe ocupar todo el ancho */
    .hero-carousel {
        width: 100%;
        max-width: 100%;
        order: -1; /* Mover el carousel arriba del texto en móvil */
    }

    .carousel-container {
        width: 100%;
        aspect-ratio: 16/10; /* Proporción más horizontal para móvil */
        max-height: 250px;
    }

    .carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    /* Ocultar flechas del carousel en móvil */
    .carousel-arrows {
        display: none !important;
    }

    /* Ajustar iconos del carousel */
    .carousel-icons {
        position: relative;
        bottom: auto;
        margin-top: 16px;
        transform: none;
        left: auto;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .carousel-icon {
        flex: 1;
        min-width: 60px;
        max-width: 70px;
        padding: 8px 6px;
        font-size: 0.6rem;
    }

    .carousel-icon svg {
        width: 18px;
        height: 18px;
    }

    /* Ajustar el contenido del hero */
    .hero-content {
        text-align: center;
        padding: 0 8px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    /* Ajustar badges */
    .hero-badges {
        justify-content: center;
        gap: 12px;
    }

    .badge {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        aspect-ratio: 4/3;
        max-height: 200px;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .carousel-icon {
        min-width: 55px;
        padding: 6px 4px;
    }
}

/* =============================================
   PÁGINA COTIZAR (cotizar.html)
   ============================================= */

/* Hero superior — clearea la navbar fija */
.cotizar-page-hero {
    padding: 120px 0 48px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    text-align: center;
}

.cotizar-page-hero .section-tag {
    display: inline-block;
    background: rgba(12,200,170,0.15);
    color: var(--primary);
    border: 1px solid rgba(12,200,170,0.3);
    border-radius: 99px;
    padding: 6px 18px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.cotizar-page-hero h2 {
    font-family: var(--font-display);
    font-size: 2.6rem;
    color: var(--white);
    margin-bottom: 12px;
}

.cotizar-page-hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.78);
    max-width: 520px;
    margin: 0 auto;
}

/* Sección formulario */
.cotizar-page-form {
    padding: 64px 0 80px;
    background: var(--gray-50);
}

.cotizar-page-form > .container {
    max-width: 760px;
}

/* Caja del formulario */
.cotizar-page-box {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 40px 44px;
    border: 1px solid var(--gray-100);
}

/* Botones al pie del form */
.cotizar-form-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

/* Mensaje de éxito */
.cotizar-form-success {
    text-align: center;
    padding: 48px 24px;
}

.cotizar-form-success h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin: 16px 0 8px;
}

.cotizar-form-success p {
    color: var(--gray-500);
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .cotizar-page-hero {
        padding: 100px 0 36px;
    }
    .cotizar-page-hero h2 {
        font-size: 1.9rem;
    }
    .cotizar-page-box {
        padding: 28px 20px;
    }
    .cotizar-form-buttons {
        flex-direction: column;
    }
    .cotizar-form-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}
