/* ============================================
   ESTUDIO CONTABLE - Verde profundo + Dorado
   ============================================ */

:root {
    --primary: #0E3D2D;
    --primary-dark: #082818;
    --primary-soft: #1B5642;
    --primary-light: #2A7259;
    --accent: #C9A961;
    --accent-dark: #A88845;
    --accent-light: #F8F2E2;
    --bg: #FFFFFF;
    --bg-soft: #F8FAF9;
    --bg-cream: #F5EFE2;
    --text: #14241D;
    --text-soft: #5A6A63;
    --text-muted: #94A097;
    --border: #E5EAE7;
    --border-strong: #D0D8D3;
    --success: #1B7A4E;
    --danger: #C04B5B;
    --warning: #D4995F;
    --info: #4A6B8E;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 3px rgba(14, 61, 45, 0.06);
    --shadow-md: 0 6px 20px rgba(14, 61, 45, 0.08);
    --shadow-lg: 0 16px 40px rgba(14, 61, 45, 0.12);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.005em;
}

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

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

/* ============================================
   NAVBAR
   ============================================ */
.announce {
    background: var(--primary);
    color: white;
    padding: 8px 0;
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.04em;
}

.announce .accent { color: var(--accent); font-weight: 600; }

.navbar {
    background: white;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.97);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.logo {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 24px;
    color: var(--primary);
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: var(--primary);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 18px;
}

.logo .ampersand { color: var(--accent); font-style: italic; }

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

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-soft);
    letter-spacing: 0.02em;
}

.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a.active { font-weight: 600; }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 22px;
    background: var(--primary);
    color: white !important;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-1px);
}

.nav-toggle { display: none; width: 36px; height: 36px; align-items: center; justify-content: center; color: var(--primary); }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    padding: 90px 0 110px;
    background: linear-gradient(135deg, #FAFCFB 0%, var(--bg-cream) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.15), transparent 70%);
    border-radius: 50%;
}

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

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-eyebrow::before {
    content: '';
    height: 1px;
    width: 32px;
    background: var(--accent);
}

.hero h1 {
    font-size: clamp(38px, 5.5vw, 60px);
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 24px;
    line-height: 1.05;
}

.hero h1 em {
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
}

.hero p.lead {
    font-size: 17px;
    color: var(--text-soft);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 480px;
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--border-strong);
    flex-wrap: wrap;
}

.hero-trust-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-trust-num .accent { color: var(--accent); }

.hero-trust-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-visual {
    position: relative;
}

.hero-image {
    aspect-ratio: 4/5;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-cream);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 50%, rgba(14, 61, 45, 0.15));
}

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

.hero-card {
    position: absolute;
    background: white;
    padding: 18px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    font-size: 13px;
    border-left: 4px solid var(--accent);
}

.hero-card-1 {
    top: 30px;
    left: -30px;
    animation: float 4s ease-in-out infinite;
}

.hero-card-2 {
    bottom: 40px;
    right: -20px;
    animation: float 4s ease-in-out infinite 2s;
}

.hero-card strong {
    display: block;
    color: var(--primary);
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 2px;
}

.hero-card span { color: var(--text-muted); font-size: 11px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    border: 1.5px solid transparent;
    white-space: nowrap;
    justify-content: center;
}

.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 8px 16px rgba(14, 61, 45, 0.25); }

.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 8px 16px rgba(168, 136, 69, 0.4); }

.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }

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

.btn-whatsapp { background: #25D366; color: white; }
.btn-whatsapp:hover { background: #1FB855; transform: translateY(-1px); }

.btn-block { width: 100%; }
.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-sm { padding: 9px 16px; font-size: 13px; }

/* ============================================
   SECCIONES
   ============================================ */
.section { padding: 90px 0; }
.section-bg { background: var(--bg-soft); }
.section-cream { background: var(--bg-cream); }

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.eyebrow::before, .eyebrow::after {
    content: '';
    height: 1px;
    width: 28px;
    background: var(--accent);
}

.section h2 {
    font-size: clamp(32px, 4.5vw, 46px);
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 14px;
    line-height: 1.1;
}

.section h2 em { color: var(--accent); font-style: italic; }

.section-subtitle { color: var(--text-soft); font-size: 16px; line-height: 1.7; }

/* ============================================
   SERVICIOS GRID
   ============================================ */
.servicios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.servicio-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: var(--transition);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.servicio-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.servicio-card-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-light);
    color: var(--accent-dark);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.servicio-card-content { flex: 1; min-width: 0; }

.servicio-card h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.2;
}

.servicio-card p {
    color: var(--text-soft);
    font-size: 14px;
    margin-bottom: 18px;
    line-height: 1.6;
}

.servicio-card .features {
    list-style: none;
    margin-bottom: 18px;
}

.servicio-card .features li {
    display: flex;
    gap: 8px;
    align-items: start;
    padding: 4px 0;
    color: var(--text-soft);
    font-size: 13px;
}

.servicio-card .features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
}

.servicio-card-link {
    color: var(--accent-dark);
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

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

/* ============================================
   PAQUETES
   ============================================ */
.toggle-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.toggle-precio {
    display: inline-flex;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 4px;
}

.toggle-btn {
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-soft);
    transition: var(--transition);
}

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

.descuento-badge {
    background: var(--accent);
    color: white;
    padding: 1px 8px;
    border-radius: var(--radius-full);
    font-size: 10px;
    margin-left: 6px;
}

.paquetes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

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

.paquete-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.paquete-card.popular {
    border-color: var(--accent);
    background: white;
    transform: scale(1.05);
}

.paquete-card.popular::before {
    content: 'MÁS POPULAR';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.paquete-nombre {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
    line-height: 1.1;
}

.paquete-desc {
    color: var(--text-soft);
    font-size: 13px;
    margin-bottom: 20px;
    min-height: 38px;
}

.paquete-precio-wrap {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 6px;
}

.paquete-precio {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.paquete-precio-cents { font-size: 22px; color: var(--text-soft); }
.paquete-precio-period { font-size: 13px; color: var(--text-muted); }

.paquete-precio-anual {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.paquete-features {
    list-style: none;
    margin-bottom: 28px;
    flex: 1;
}

.paquete-features li {
    display: flex;
    gap: 10px;
    align-items: start;
    padding: 7px 0;
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.5;
}

.paquete-features li svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 3px;
}

/* ============================================
   FORMULARIO COTIZACIÓN
   ============================================ */
.cotizar-wrap {
    padding: 50px 0 80px;
    background: var(--bg-soft);
    min-height: 80vh;
}

.cotizar-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.cotizar-form {
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: 40px;
}

.cotizar-aside {
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: 28px;
    position: sticky;
    top: 90px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
}

.cotizar-aside-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-light);
    color: var(--accent-dark);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.cotizar-aside h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 8px;
}

.cotizar-aside .meta {
    font-size: 12px;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    margin-bottom: 12px;
}

.cotizar-aside p {
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.cotizar-aside .features {
    list-style: none;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-bottom: 20px;
}

.cotizar-aside .features li {
    display: flex;
    gap: 8px;
    align-items: start;
    padding: 5px 0;
    font-size: 12px;
    color: var(--text-soft);
}

.cotizar-aside .features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
}

.cotizar-aside .ayuda {
    background: var(--bg-cream);
    padding: 14px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: var(--text-soft);
    line-height: 1.6;
}

.cotizar-aside .ayuda strong { color: var(--primary); }

.form-section {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.form-section:last-of-type { border-bottom: none; padding-bottom: 0; }

.form-section h3 {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h3 .step-num {
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

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

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.form-label .req { color: var(--danger); }
.form-help { font-size: 11px; color: var(--text-muted); margin-top: 4px; }

.form-control {
    width: 100%;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 14px;
    background: var(--bg-soft);
    border: 1.5px solid transparent;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    color: var(--text);
}

.form-control:focus {
    outline: none;
    background: white;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}

textarea.form-control { resize: vertical; min-height: 100px; }

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235A6A63' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

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

/* FILE UPLOAD */
.upload-zone {
    border: 2px dashed var(--border-strong);
    border-radius: var(--radius-md);
    padding: 28px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: var(--bg-soft);
}

.upload-zone:hover, .upload-zone.dragover {
    border-color: var(--accent);
    background: var(--accent-light);
}

.upload-zone svg {
    color: var(--accent-dark);
    margin: 0 auto 10px;
}

.upload-zone .title {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
    font-size: 14px;
}

.upload-zone .meta {
    color: var(--text-muted);
    font-size: 12px;
}

.upload-zone input[type="file"] { display: none; }

.uploaded-files {
    margin-top: 12px;
    list-style: none;
}

.uploaded-files li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--bg-soft);
    border-radius: var(--radius-sm);
    margin-bottom: 6px;
    font-size: 13px;
    border: 1px solid var(--border);
}

.uploaded-files li svg { color: var(--text-soft); flex-shrink: 0; }

.uploaded-files .file-info { flex: 1; min-width: 0; }
.uploaded-files .file-name { font-weight: 600; color: var(--primary); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.uploaded-files .file-size { color: var(--text-muted); font-size: 11px; }
.uploaded-files .file-remove {
    color: var(--danger);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.uploaded-files .file-remove:hover { background: var(--danger); color: white; }

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--primary);
    color: rgba(255,255,255,0.75);
    padding: 70px 0 30px;
}

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

.footer-brand .logo { color: white; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 280px; margin-bottom: 16px; }

.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.footer-socials a:hover { background: var(--accent); }

.footer-col h4 {
    font-family: var(--font-sans);
    color: white;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col li { padding: 5px 0; font-size: 14px; }
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
}

.footer-bottom .powered { color: rgba(255,255,255,0.5); }
.footer-bottom .powered a { color: var(--accent); }

.wa-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 90;
    animation: pulse-wa 2.5s infinite;
}

.wa-fab:hover { transform: scale(1.1); }

/* CONFIRMACIÓN */
.confirmation {
    max-width: 640px;
    margin: 50px auto;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
}

.conf-header {
    text-align: center;
    padding: 50px 30px 36px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    position: relative;
    overflow: hidden;
}

.conf-header::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.2), transparent 70%);
    border-radius: 50%;
}

.conf-check {
    width: 88px;
    height: 88px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}

.conf-header h1 { font-size: 32px; margin-bottom: 8px; position: relative; z-index: 1; }
.conf-header p { color: rgba(255,255,255,0.85); position: relative; z-index: 1; }

.conf-numero {
    display: inline-block;
    margin-top: 16px;
    background: rgba(255,255,255,0.15);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-family: monospace;
    font-size: 13px;
    position: relative;
    z-index: 1;
}

.conf-body { padding: 32px; }

.conf-info {
    background: var(--accent-light);
    color: var(--accent-dark);
    padding: 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.7;
    border-left: 4px solid var(--accent);
}

.conf-info strong { color: var(--primary); }

.conf-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    gap: 16px;
}

.conf-row:last-child { border-bottom: none; }

.conf-row .label {
    color: var(--text-soft);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.06em;
    font-weight: 600;
    flex-shrink: 0;
    min-width: 100px;
}

.conf-row .value { color: var(--primary); font-weight: 500; text-align: right; }

.conf-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    justify-content: center;
}

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

@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 14px rgba(37, 211, 102, 0); }
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
    .hero-grid { grid-template-columns: 1fr; gap: 50px; }
    .hero-visual { max-width: 420px; margin: 0 auto; }
    .hero-card { display: none; }
    .servicios-grid { grid-template-columns: 1fr; }
    .paquetes-grid { grid-template-columns: 1fr; gap: 20px; }
    .paquete-card.popular { transform: none; }
    .cotizar-grid { grid-template-columns: 1fr; }
    .cotizar-aside { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
    .nav-links { display: none; }
    .nav-toggle { display: inline-flex; }
    .servicio-card { flex-direction: column; gap: 14px; padding: 24px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .section { padding: 60px 0; }
    .cotizar-form { padding: 24px; }
    .hero-trust { gap: 20px; }
    .hero-trust-num { font-size: 26px; }
}
