 :root {
     /* === PERSONALIZACIÓN DE MARCA === */
     --brand: #2563eb;
     --brand-dark: #1e40af;
     --brand-light: #eff6ff;
     --accent: #f59e0b;
     --text-main: #0f172a;
     --text-muted: #64748b;
     --bg: #ffffff;
     --bg-alt: #f8fafc;
     --border: #e2e8f0;
     --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
     --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
     --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
     --neon-shadow: 0 0 10px var(--brand), 0 0 20px var(--brand), 0 0 40px rgba(37, 99, 235, 0.4);
     --radius: 16px;
 }

 html,
 body {
     margin: 0;
     padding: 0;
     background: var(--bg);
     color: var(--text-main);
     font-family: 'Outfit', system-ui, sans-serif;
     -webkit-font-smoothing: antialiased;
     line-height: 1.6;
     overflow-x: hidden;
     scroll-behavior: smooth;
 }

 a {
     text-decoration: none;
     color: inherit;
     transition: color 0.2s;
 }

 .container {
     max-width: 1200px;
     margin: auto;
     padding: 0 24px;
 }

 /* === ANIMACIONES === */
 .animate-on-scroll {
     opacity: 0;
     transition: all 0.8s cubic-bezier(0.17, 0.55, 0.55, 1);
     will-change: transform, opacity;
 }

 .from-left {
     transform: translateX(-100px);
 }

 .from-right {
     transform: translateX(100px);
 }

 .from-bottom {
     transform: translateY(50px);
 }

 .animate-on-scroll.is-visible {
     opacity: 1;
     transform: translate(0, 0);
 }

 .selectable {
     transition: all 0.3s ease;
     cursor: pointer;
     position: relative;
 }

 .selectable:hover {
     transform: translateY(-5px);
 }

 .selectable.selected,
 .selectable:focus-within,
 .form-control:focus {
     border-color: var(--brand) !important;
     box-shadow: var(--neon-shadow) !important;
     z-index: 10;
 }

 #formCotiza .form-control:focus {
     box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2) !important;
     border-color: var(--brand) !important;
 }

 /* === NAV === */
 .nav {
     position: sticky;
     top: 0;
     z-index: 50;
     background: rgba(255, 255, 255, 0.9);
     backdrop-filter: blur(12px);
     border-bottom: 1px solid var(--border);
     transition: all 0.3s ease;
 }

 .nav-inner {
     height: 80px;
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 .brand {
     display: flex;
     align-items: center;
     gap: 12px;
     font-weight: 800;
     font-size: 22px;
     color: var(--text-main);
 }

 .logo-img {
     height: 48px;
     width: auto;
     object-fit: contain;
 }

 .nav-links {
     display: none;
     gap: 32px;
     font-weight: 600;
     font-size: 15px;
     color: var(--text-muted);
     align-items: center;
 }

 .nav-links a:not(.btn-nav):hover {
     color: var(--brand);
     text-shadow: 0 0 8px rgba(37, 99, 235, 0.3);
 }

 .btn-nav {
     background: var(--brand);
     color: white;
     padding: 10px 24px;
     border-radius: 99px;
     font-weight: 600;
     font-size: 14px;
     transition: all 0.3s;
     box-shadow: var(--shadow-sm);
 }

 .btn-nav:hover {
     background: var(--brand-dark);
     transform: scale(1.05);
     box-shadow: var(--neon-shadow);
 }

 /* ESTILOS BOTÓN LOGIN */
 .btn-login {
     display: flex;
     align-items: center;
     gap: 6px;
     font-weight: 600;
     color: var(--brand);
     background: transparent;
     border: 1px solid var(--brand);
     padding: 8px 16px;
     border-radius: 99px;
     cursor: pointer;
     transition: all 0.3s;
     font-size: 14px;
 }

 .btn-login:hover {
     background: var(--brand-light);
     transform: translateY(-2px);
 }

 .hamb {
     display: flex;
     padding: 8px;
     background: none;
     border: none;
     cursor: pointer;
     color: var(--text-main);
 }

 .nav-menu {
     position: fixed;
     top: 80px;
     left: 0;
     right: 0;
     background: white;
     border-bottom: 1px solid var(--border);
     display: none;
     padding: 16px 0;
     z-index: 49;
 }

 .nav-menu.open {
     display: block;
     animation: slideDown 0.3s ease;
 }

 .nav-menu a {
     display: block;
     padding: 12px 24px;
     font-weight: 600;
     border-bottom: 1px solid var(--bg-alt);
 }

 @keyframes slideDown {
     from {
         opacity: 0;
         transform: translateY(-10px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* === HERO === */
 .hero {
     padding: 60px 0 80px;
     position: relative;
     overflow: hidden;
     background: linear-gradient(135deg, var(--bg) 0%, var(--brand-light) 100%);
 }

 .hero-grid {
     display: grid;
     gap: 40px;
     align-items: center;
 }

 .hero-content h1 {
     font-size: 42px;
     line-height: 1.1;
     font-weight: 800;
     margin-bottom: 24px;
     color: var(--text-main);
     min-height: 2.2em;
 }

 .hero-content p {
     font-size: 18px;
     color: var(--text-muted);
     margin-bottom: 32px;
     max-width: 500px;
 }

 .hero-image img {
     width: 100%;
     height: auto;
     border-radius: 24px;
     box-shadow: var(--shadow-lg);
     transform: rotate(-2deg);
     transition: transform 0.5s ease;
     background: white;
 }

 .hero-image:hover img {
     transform: rotate(0deg) scale(1.02);
     box-shadow: var(--neon-shadow);
 }

 .btn-primary {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: var(--brand);
     color: white;
     padding: 14px 32px;
     border-radius: 99px;
     font-weight: 600;
     transition: all 0.3s ease;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
 }

 .btn-primary:hover {
     background: var(--brand-dark);
     transform: translateY(-2px);
     box-shadow: var(--neon-shadow);
 }

 .btn-secondary {
     display: inline-flex;
     margin-left: 12px;
     padding: 14px 32px;
     font-weight: 600;
     color: var(--text-main);
     border: 1px solid transparent;
     border-radius: 99px;
     transition: all 0.3s;
 }

 .btn-secondary:hover {
     color: var(--brand);
     border-color: var(--brand);
     box-shadow: inset 0 0 10px rgba(37, 99, 235, 0.1);
 }

 /* === SECTIONS === */
 .section {
     padding: 80px 0;
 }

 .bg-alt {
     background-color: var(--bg-alt);
 }

 .section-header {
     margin-bottom: 48px;
     max-width: 700px;
 }

 .section-title {
     font-size: 32px;
     font-weight: 800;
     margin-bottom: 16px;
     position: relative;
     display: inline-block;
 }

 .section-title::after {
     content: '';
     position: absolute;
     bottom: 2px;
     left: 0;
     right: 0;
     height: 8px;
     background: var(--brand-light);
     z-index: -1;
     transform: skewX(-12deg);
 }

 .section-desc {
     color: var(--text-muted);
     font-size: 18px;
 }

 /* Features Grid */
 .features-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 24px;
 }

 .service-card {
     position: relative;
     background: white;
     border-radius: var(--radius);
     overflow: hidden;
     border: 2px solid var(--border);
 }

 .service-content {
     padding: 32px;
 }

 .feature-icon {
     width: 56px;
     height: 56px;
     background: var(--brand-light);
     color: var(--brand);
     border-radius: 16px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 24px;
     transition: all 0.3s;
 }

 .service-card:hover .feature-icon {
     transform: rotate(10deg) scale(1.1);
     box-shadow: 0 0 15px rgba(37, 99, 235, 0.3);
 }

 .service-content h3 {
     margin: 0 0 12px;
     font-weight: 700;
     font-size: 20px;
 }

 .service-content ul {
     padding-left: 20px;
     color: var(--text-muted);
     margin-bottom: 0;
 }

 .service-content li {
     margin-bottom: 8px;
 }

 /* Gallery */
 .gallery-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 20px;
 }

 .gallery-item {
     border-radius: var(--radius);
     overflow: hidden;
     aspect-ratio: 4/3;
     position: relative;
     border: 2px solid transparent;
 }

 .gallery-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.6s ease;
 }

 .gallery-item:hover img {
     transform: scale(1.1);
 }

 /* === FORMULARIOS === */
 .calculator-wrapper {
     background: white;
     border-radius: 24px;
     box-shadow: var(--shadow-lg);
     overflow: hidden;
     border: 1px solid var(--border);
     position: relative;
     max-width: 800px;
     margin: 0 auto;
 }

 .calculator-wrapper::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 6px;
     background: linear-gradient(90deg, var(--brand), var(--brand-dark));
 }

 .calc-header {
     background: var(--bg-alt);
     padding: 32px 32px 24px;
     text-align: center;
     border-bottom: 1px solid var(--border);
 }

 .calc-header h2 {
     margin: 0;
     font-size: 28px;
     color: var(--text-main);
 }

 .form-body {
     padding: 32px;
     display: grid;
     gap: 24px;
 }

 .form-group label {
     display: block;
     font-weight: 600;
     margin-bottom: 8px;
     font-size: 14px;
     color: var(--text-main);
 }

 .form-control {
     width: 100%;
     padding: 14px 16px;
     border: 2px solid var(--border);
     border-radius: 12px;
     font-family: inherit;
     font-size: 16px;
     transition: all 0.3s ease;
     box-sizing: border-box;
     background: white;
     color: var(--text-main);
 }

 .radio-group {
     display: flex;
     gap: 8px;
     background: var(--bg-alt);
     padding: 4px;
     border-radius: 12px;
     border: 1px solid var(--border);
     flex-wrap: wrap;
 }

 .radio-option {
     flex: 1 1 140px;
     position: relative;
     min-width: 0;
 }

 .radio-option input {
     position: absolute;
     opacity: 0;
     width: 0;
     height: 0;
 }

 .radio-option label {
     display: block;
     text-align: center;
     padding: 12px;
     border-radius: 8px;
     font-weight: 600;
     cursor: pointer;
     color: var(--text-muted);
     transition: all 0.2s;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
 }

 .radio-option input:checked+label {
     background: white;
     color: var(--brand);
     box-shadow: var(--shadow-sm);
     border: 1px solid var(--border);
 }

 .estimate-box {
     background: var(--brand-light);
     border-radius: 16px;
     padding: 24px;
     border: 1px solid rgba(37, 99, 235, 0.1);
 }

 .est-row {
     display: flex;
     justify-content: space-between;
     gap: 12px;
     margin-bottom: 10px;
     font-size: 15px;
     color: var(--text-main);
     flex-wrap: wrap;
 }

 .est-total {
     border-top: 2px dashed rgba(37, 99, 235, 0.2);
     margin-top: 16px;
     padding-top: 16px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 12px;
     flex-wrap: wrap;
 }

 .est-total strong {
     font-size: 26px;
     color: var(--brand-dark);
     font-weight: 800;
 }

 .btn-submit {
     width: fit-content;
     min-width: 250px;
     margin: 0 auto;
     background: #25D366;
     color: white;
     padding: 16px 32px;
     border: none;
     border-radius: 12px;
     font-weight: 700;
     font-size: 18px;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     transition: all 0.2s;
     box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
     max-width: 100%;
     box-sizing: border-box;
 }

 .btn-submit:hover {
     transform: translateY(-2px);
     box-shadow: 0 0 20px #25d366;
 }

 .btn-submit.disabled {
     opacity: 0.6;
     pointer-events: none;
     background: var(--text-muted);
     box-shadow: none;
 }

 .dudas-section {
     background: linear-gradient(to right, var(--brand-dark), var(--brand));
     color: white;
     border-radius: var(--radius);
     padding: 40px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 20px;
     box-shadow: var(--shadow-lg);
 }

 .dudas-content {
     max-width: 600px;
 }

 .dudas-content h2 {
     font-size: 28px;
     font-weight: 800;
     margin-bottom: 8px;
 }

 .dudas-content p {
     font-size: 16px;
     opacity: 0.9;
 }

 .btn-white {
     background: white;
     color: var(--brand-dark);
     padding: 12px 28px;
     border-radius: 99px;
     font-weight: 700;
     transition: all 0.3s;
 }

 .btn-white:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
 }

 .footer {
     background: var(--text-main);
     color: white;
     padding: 80px 0 40px;
 }

 .footer h3,
 .footer h4 {
     color: white;
     font-weight: 700;
 }

 .footer a {
     color: #cbd5e1;
     transition: color 0.2s;
     text-decoration: none;
 }

 .footer a:hover {
     color: var(--brand);
     text-shadow: 0 0 10px var(--brand);
 }

 .contact-buttons {
     display: flex;
     gap: 16px;
     margin-top: 16px;
 }

 .btn-circle {
     width: 48px;
     height: 48px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.1);
     display: flex;
     align-items: center;
     justify-content: center;
     color: white !important;
     transition: all 0.3s ease;
     border: 1px solid rgba(255, 255, 255, 0.2);
 }

 .btn-circle:hover {
     transform: translateY(-4px) scale(1.1);
     background: var(--brand);
     border-color: var(--brand);
     box-shadow: 0 0 20px var(--brand);
     text-shadow: none !important;
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     margin-top: 60px;
     padding-top: 24px;
     display: flex;
     justify-content: space-between;
     font-size: 14px;
     color: #94a3b8;
     flex-wrap: wrap;
     gap: 20px;
 }

 /* Hints */
 .field-note {
     display: block;
     margin-top: 8px;
     font-size: 13px;
     color: var(--text-muted);
 }

 .field-note.warn {
     color: #b45309;
     font-weight: 600;
 }

 .field-note.ok {
     color: #166534;
     font-weight: 600;
 }

 /* === LOGIN MODAL CSS === */
 .modal-overlay {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: rgba(15, 23, 42, 0.6);
     backdrop-filter: blur(8px);
     z-index: 1000;
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0;
     pointer-events: none;
     transition: all 0.3s ease;
     padding: 20px;
 }

 .modal-overlay.active {
     opacity: 1;
     pointer-events: all;
 }

 .modal-window {
     background: white;
     width: 100%;
     max-width: 400px;
     border-radius: 24px;
     padding: 32px;
     box-shadow: var(--shadow-lg);
     transform: translateY(20px);
     transition: transform 0.3s cubic-bezier(0.17, 0.55, 0.55, 1);
     position: relative;
 }

 .modal-overlay.active .modal-window {
     transform: translateY(0);
 }

 .modal-close {
     position: absolute;
     top: 16px;
     right: 16px;
     background: none;
     border: none;
     cursor: pointer;
     color: var(--text-muted);
     padding: 8px;
     border-radius: 50%;
     transition: all 0.2s;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .modal-close:hover {
     background: var(--bg-alt);
     color: var(--text-main);
 }

 .login-title {
     font-size: 24px;
     font-weight: 800;
     text-align: center;
     margin-bottom: 8px;
     color: var(--text-main);
 }

 .login-sub {
     text-align: center;
     color: var(--text-muted);
     margin-bottom: 24px;
     font-size: 14px;
 }

 .btn-block {
     width: 100%;
     justify-content: center;
 }

 /* MEDIA QUERIES */
 @media (min-width: 768px) {
     .hero-grid {
         grid-template-columns: 1fr 1fr;
     }

     .nav-links {
         display: flex;
     }

     .hamb {
         display: none;
     }

     .gallery-grid {
         grid-template-columns: repeat(3, 1fr);
     }

     .hero-content h1 {
         font-size: 56px;
     }

     .form-row {
         display: grid;
         grid-template-columns: 1fr 1fr;
         gap: 20px;
     }
 }

 @media (max-width: 420px) {
     .hero-content h1 {
         font-size: 34px;
     }

     .btn-submit {
         width: 100%;
     }

     .btn-secondary {
         margin-left: 0;
         margin-top: 10px;
     }

     .radio-group {
         flex-direction: column;
     }
 }

 /* === TIPO DE PRECIO: ESTADO DESHABILITADO (MENÚDEO/MAYOREO) === */
 .radio-option input:disabled+label {
     opacity: 0.45;
     cursor: not-allowed;
     filter: grayscale(0.2);
 }

 .radio-option input:disabled+label:hover {
     transform: none;
     box-shadow: none;
 }

 /* Badge/hint debajo del label (si lo agregas en HTML) */
 .price-hint {
     display: block;
     margin-top: 6px;
     font-size: 12px;
     font-weight: 600;
     color: var(--text-muted);
 }

 .price-hint.warn {
     color: #b45309;
 }

 .price-hint.ok {
     color: #166534;
 }

 /* ================================
   ADD-ON (Cotizador / Mayoreo)
   Pegar al final de index.css
================================ */

 .service-note {
     margin-top: 10px;
     padding: 12px 14px;
     border-radius: 12px;
     border: 1px solid rgba(37, 99, 235, 0.18);
     background: rgba(37, 99, 235, 0.08);
     color: var(--text-main);
     font-size: 13px;
     font-weight: 600;
 }

 .mayoreo-hint {
     margin-top: 12px;
     padding: 12px 14px;
     border-radius: 12px;
     border: 1px dashed rgba(245, 158, 11, 0.7);
     background: rgba(245, 158, 11, 0.14);
     color: #92400e;
     font-weight: 700;
     font-size: 13px;
     display: none;
 }

 .mayoreo-hint.show {
     display: block;
 }

 .radio-option.is-disabled label {
     opacity: 0.55;
     cursor: not-allowed;
 }

 .radio-option.is-disabled label:hover {
     transform: none;
     box-shadow: none;
 }

 /* Detalles desplegables */
 .collapse-toggle {
     display: flex;
     align-items: center;
     gap: 10px;
     width: 100%;
     background: var(--brand-light);
     border: 1px solid rgba(37, 99, 235, 0.25);
     color: var(--brand-dark);
     padding: 14px 16px;
     border-radius: 14px;
     font-weight: 800;
     cursor: pointer;
     transition: all 0.25s ease;
 }

 .collapse-toggle:hover {
     transform: translateY(-1px);
     box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
 }

 .collapse-panel {
     display: none;
     margin-top: 12px;
     gap: 16px;
 }

 .collapse-panel.open {
     display: grid;
 }

 /* Asegura que en pantallas muy pequeñas no “apriete” */
 @media (max-width: 420px) {

     .service-note,
     .mayoreo-hint {
         font-size: 12px;
     }
 }

 /* =========================
   MAYOREO (PROVISIONAL)
========================= */
 .mayoreo-notice {
     margin-top: 12px;
     padding: 12px 14px;
     border-radius: 12px;
     border: 1px solid rgba(37, 99, 235, 0.18);
     background: var(--brand-light);
     color: var(--text-main);
     font-size: 13px;
     line-height: 1.4;
 }

 .mayoreo-notice.warn {
     border-color: rgba(245, 158, 11, 0.35);
     background: rgba(245, 158, 11, 0.10);
 }

 .mayoreo-notice.ok {
     border-color: rgba(34, 197, 94, 0.35);
     background: rgba(34, 197, 94, 0.10);
 }

 /* Radio disabled (para que se note que Mayoreo está bloqueado) */
 .radio-option input:disabled+label {
     opacity: 0.45;
     cursor: not-allowed;
     transform: none !important;
     box-shadow: none !important;
 }

 /* opcional: que no “brinque” al hover cuando está disabled */
 .radio-option label {
     user-select: none;
 }

 /* =========================================
   FIX NAV MOBILE (overflow / wrap)
   Evita que la derecha “se salga” del nav
========================================= */

 /* Asegura que el contenedor derecho pueda encogerse */
 .ct-nav-right {
     min-width: 0;
 }

 .ct-greet {
     min-width: 0;
 }

 /* Tablets / móviles: NO permitir wrap (causa el alto 94px) */
 @media (max-width: 720px) {
     .ct-nav-right {
         flex-wrap: nowrap !important;
         gap: 8px;
     }

     /* Reduce un poco el logo para que todo quepa */
     .logo-img {
         height: 42px;
     }

     /* Botones más compactos */
     .ct-nav-right .btn-login,
     .ct-nav-right .btn-nav {
         padding: 10px 12px;
         font-size: 13px;
         white-space: nowrap;
     }

     /* El saludo no debe “empujar” */
     .ct-greet {
         max-width: 220px;
         overflow: hidden;
         text-overflow: ellipsis;
         white-space: nowrap;
     }
 }

 /* Móvil: muestra solo íconos (más amigable y no se rompe) */
 @media (max-width: 560px) {

     /* Oculta el saludo completo (es lo que más estorba en ancho) */
     .ct-greet {
         display: none !important;
     }

     /* Deja botones como icon-only si el texto está dentro de <span> */
     .ct-nav-right .btn-login span,
     .ct-nav-right .btn-nav span,
     .ct-hide-sm {
         display: none !important;
     }

     .ct-nav-right .btn-login,
     .ct-nav-right .btn-nav {
         padding: 10px;
         border-radius: 14px;
     }

     /* Iconos centrados */
     .ct-nav-right .btn-login i,
     .ct-nav-right .btn-nav i {
         margin: 0;
     }
 }

 /* Extra pequeño: si aún se aprieta, oculta el btn-nav y deja menú */
 @media (max-width: 420px) {
     .ct-nav-right .btn-nav {
         display: none !important;
     }
 }

 /* =========================================================
   COTIZA (nuevo bloque explicativo + botón)
========================================================= */
 .cotiza-split {
     display: grid;
     grid-template-columns: 0.95fr 1.05fr;
     gap: 22px;
     margin-top: 18px;
     align-items: stretch;
 }

 .cotiza-cta-card {
     background: var(--bg-alt);
     border: 1px solid var(--border);
     border-radius: 18px;
     padding: 22px;
     height: 100%;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 .cotiza-btn {
     width: 100%;
     justify-content: center;
     gap: 10px;
     padding: 14px 18px;
     border-radius: 14px;
     font-weight: 800;
 }

 .cotiza-require-note {
     margin-top: 12px;
     display: block;
 }

 .cotiza-steps {
     display: grid;
     gap: 12px;
 }

 .cotiza-step {
     display: flex;
     gap: 12px;
     padding: 14px;
     border-radius: 16px;
     background: #fff;
     border: 1px solid var(--border);
 }

 .cotiza-step-ico {
     width: 38px;
     height: 38px;
     border-radius: 12px;
     background: var(--brand-light);
     color: var(--brand);
     display: flex;
     align-items: center;
     justify-content: center;
     flex: 0 0 auto;
 }

 .cotiza-step-title {
     font-weight: 800;
     color: var(--text-main);
     margin-bottom: 2px;
 }

 .cotiza-step-desc {
     color: var(--text-muted);
     font-weight: 600;
     line-height: 1.5;
     font-size: 14px;
 }

 .cotiza-mini-note {
     margin-top: 12px;
     display: flex;
     gap: 10px;
     align-items: flex-start;
     padding: 12px 14px;
     border-radius: 14px;
     background: rgba(37, 99, 235, .06);
     border: 1px solid rgba(37, 99, 235, .18);
     color: var(--brand-dark);
     font-weight: 700;
 }

 .cotiza-mini-note i {
     margin-top: 2px;
 }

 /* Responsive */
 @media (max-width: 900px) {
     .cotiza-split {
         grid-template-columns: 1fr;
     }
 }

 /* =========================================================
   Modal "Necesitas cuenta" (extra)
========================================================= */
 .need-account-window {
     max-width: 520px;
 }

 .need-account-actions {
     margin-top: 16px;
     display: grid;
     gap: 10px;
 }

 .need-account-actions .btn-block {
     width: 100%;
     justify-content: center;
     gap: 10px;
 }