/* ===============================
   ESTILS BASE GLOBALS
=================================*/
* { margin:0; padding:0; box-sizing:border-box; font-family:"Inter", Arial, sans-serif; }
body { background:#F7FAFC; color:#111827; line-height:1.6; }

/* Imágenes responsive por defecto */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== PROMO =====*/
.promo {
    display:flex; gap:10px; align-items:center; justify-content:center;
    padding:10px 12px; background:#fff; border-bottom:1px solid #E4EBEF; font-size:14px;
}
.promo strong { color:#0F8F99; }
.promo-link { color:#0F8F99; text-decoration:underline; font-weight:700; }

/* ===== NOTICE =====*/
.notice { padding:14px 8%; background:#F7FAFC; text-align:center; }
.notice-text { display:inline-block; padding:10px 14px; border-radius:10px; background:#fff; box-shadow:0 5px 15px rgba(0,0,0,.07); font-weight:700; }
.notice-text.ok { color:#0F8F99; }
.notice-text.error { color:#111827; }
.notice-text.warn { color:#d97706; background:#fef3c7; }

/* ===== NAV =====*/
nav { text-align:right; padding:15px 30px; font-size:15px; }
nav a { color:#0F8F99; text-decoration:none; margin-left:12px; font-weight:600; }
nav a:hover { text-decoration:underline; }
.lang-active { text-decoration:underline; }
.nav-sep { margin-left:12px; color:#0F8F99; opacity:.6; }
.nav-cta { font-weight:800; }

.hero {
    background: linear-gradient(135deg, #1D4ED8 0%, #2563EB 45%, #22C55E 100%);
    color: #fff; 
    margin: 0; 
    padding: 100px 5% 120px; 
    min-height: 650px;
    position: relative;
    overflow: hidden;
}
.hero-inner { 
    max-width: 1400px; 
    margin: 0 auto; 
    padding: 0; 
    text-align: left; 
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}
.hero-logo { display:none; }
.hero-inline-logo{ width:44px; height:auto; vertical-align:middle; margin-right:12px; display:inline-block; }

/* Logo container */
.hero-logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.hero-logo-img {
    width: 200px;
    max-width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}

.hero h1 { 
    font-family: 'Montserrat', 'Inter', Arial, sans-serif; 
    font-size: 64px; 
    font-weight: 900; 
    margin: 0 0 20px 0; 
    letter-spacing: -1.5px;
    line-height: 1.05;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.hero-sub {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 32px;
    opacity: 0.98;
    color: #fff;
    line-height: 1.5;
}
.subtitle { font-size:18px; font-weight:600; margin-bottom:8px; opacity:.98; }
.subtitle2 { font-size:15px; margin-bottom:18px; opacity:.95; }

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #22C55E;
    color: #fff;
    font-size: 20px;
    padding: 18px 42px;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(34,197,94,0.35), 0 0 0 0 rgba(34,197,94,0.5);
    transition: all .25s ease;
    margin-top: 12px;
    letter-spacing: 0.3px;
}
.cta-btn:hover { 
    transform: translateY(-4px) scale(1.02); 
    box-shadow: 0 16px 40px rgba(34,197,94,0.45), 0 0 0 4px rgba(34,197,94,0.2);
    background: #16a34a;
}
.cta-btn:active {
    transform: translateY(-2px) scale(1.01);
}

/* Precio dentro del CTA */
.cta-badge{
    background: rgba(255,255,255,0.12);
    color: #fff;
    padding: 6px 10px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 14px;
    display: inline-block;
    white-space: nowrap;
}
.cta-badge small{ font-size:12px; opacity:0.95; margin-left:6px; font-weight:700; }

/* ===== PAIN =====*/
.pain { padding:40px 16px; background:#F7FAFC; text-align: center; }
.pain h2 { font-size: 26px; font-weight: 800; margin-bottom: 16px; color: #2563EB; }
.pain ul { list-style: none; padding: 0; margin: 0 auto 15px auto; max-width: 560px; display: inline-block; /* centra el bloque dentro de .pain */ text-align: left; /* mantiene las líneas legibles */ transform: translateX(6%); /* desplaza ligeramente a la derecha */ }
.pain ul li { font-size: 15px; margin-bottom: 6px; color: #111827; }
.pain .big-text { font-size: 17px; font-weight: 700; color: #22C55E; margin-top: 15px; }

/* ===== BENEFICIS COMPACTES =====*/
.benefits { text-align:center; padding:45px 8%; }
.grid { display:grid; gap:20px; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); margin-top: 25px; }
.card {
    background:#fff; padding:20px; border-radius:12px; box-shadow:0 5px 15px rgba(0,0,0,.07);
    font-size:15px; font-weight:600; transition:.25s; text-align:center; cursor:pointer;
}
.card:hover { transform:translateY(-4px); background:#e6fafa; }
.benefit-info { margin-top:18px; font-size:16px; font-weight:600; color:#0F8F99; min-height:25px; transition: opacity 0.3s ease; }

/* ===== VALOR =====*/
.value { text-align:center; padding:50px 8%; background:#fff; }
.value-grid { display:grid; gap:12px; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); max-width:920px; margin:20px auto 0; }
.value-item { background:#F7FAFC; border-radius:12px; padding:14px 16px; box-shadow:0 5px 15px rgba(0,0,0,.07); font-weight:700; color: #0F8F99; }

/* ===== HOW (CÓMO FUNCIONA) - Mejoras visuales =====*/
.how {
    text-align: center;
    padding: 60px 6%;
    background: #EDF4F7;
}
.how h2 { font-size: 32px; margin-bottom: 8px; }
.how p { max-width: 920px; margin: 0 auto 18px; color: #0b2730; opacity: .9; }
.how-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 30px;
    max-width: 980px;
    margin: 22px auto 0;
    align-items: start;
}
.how-box {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(11,37,48,0.06);
    padding: 26px 24px;
    min-width: 260px;
    max-width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: transform .22s ease, box-shadow .22s ease;
}
.how-box:hover{ transform: translateY(-8px); box-shadow: 0 18px 40px rgba(11,37,48,0.08); }
.how-box h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: #0F8F99; }
.how-steps, .how-list { margin: 0 0 14px 18px; padding: 0; font-size: 15px; flex-grow: 1; }
.how-steps li, .how-list li { margin-bottom: 8px; line-height: 1.7; }
.how-actions { display:flex; align-items:center; gap:14px; margin-top:18px; }
.how-actions .btn-secondary{ padding: 12px 20px; border-radius:10px; width: auto; }
.how-actions .how-link-alt{ margin-top:0 }

@media (max-width: 900px){
    .how-grid{grid-template-columns:1fr;}
    .how h2{font-size:28px}
    .workflow-diagram{grid-template-columns: 1fr !important; gap: 30px !important;}
    .workflow-diagram > div:not(:last-child)::after{content: '↓'; position: absolute; bottom: -40px; left: 50%; transform: translateX(-50%); font-size: 24px; color: #2BC8C8;}
    .faq-list{grid-template-columns: 1fr !important;}
}

.how-btn-main {
    display: inline-block;
    color: #0F8F99;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    border: 2px solid #0F8F99;
    padding: 10px 24px; /* Padding controlat perquè el botó no s'estiri */
    border-radius: 8px;
    transition: 0.2s;
    white-space: nowrap; /* Evita que el text es trenqui */
}

.how-btn-main:hover { 
    background: #0F8F99; 
    color: #fff; 
}

.how-link-alt {
    color: #0F8F99;
    font-weight: 700;
    text-decoration: underline;
    font-size: 15px;
    white-space: nowrap;
}
.how-note { margin-top: 10px; font-size: 13px; color: #0F8F99; opacity: .85; }

/* ===== PLANS =====*/
.plans { text-align:center; padding:55px 8%; background:#fff; }
.price-grid { margin-top:20px; display:flex; flex-wrap:wrap; gap:25px; justify-content:center; }
.price-card {
    flex: 1 1 320px; max-width: 370px; min-width: 260px; background: #F7FAFC;
    padding: 30px 22px; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,.07);
    transition: .25s; text-align: center; display: flex; flex-direction: column; align-items: center;
}
.price-card:hover { transform: scale(1.03); }
.highlight { border: 3px solid #2BC8C8; background: #fff; }
.price { font-size: 32px; font-weight: 800; margin-bottom: 10px; }
.price span { font-size: 15px; opacity: .75; }
.price-card ul { list-style: none; margin: 18px 0; padding: 0; width: 100%; }
.price-card li { padding: 5px 0; font-size: 14px; }
.btn-secondary { display: block; background: #2BC8C8; padding: 12px; color: #111; font-weight: 700; text-decoration: none; border-radius: 8px; margin-top: 10px; width: 100%; transition: .18s; }
.btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(43,200,200,0.18); }

/* Unificar: btn-primary igual que btn-secondary para que ambos "Suscribirme" sean idénticos */
.btn-primary { display: block; background: #2BC8C8; padding: 12px; color: #111; font-weight: 700; text-decoration: none; border-radius: 8px; margin-top: 10px; width: 100%; transition: .18s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(43,200,200,0.18); }
.btn-link { display: block; margin-top: 12px; color: #0F8F99; text-decoration: underline; font-weight: 700; }

/* ===== TESTIMONIS =====*/
.testimonials { padding: 45px 8%; text-align: center; }
.testimonials-card {
    background: #fff; border-radius: 14px; box-shadow: 0 5px 15px rgba(0,0,0,.07);
    padding: 36px 32px; max-width: 900px; width: 100%; margin: 0 auto;
}
.testimonials-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; width: 100%; margin-top: 20px; }
.testimonial { background: #F7FAFC; border-radius: 12px; padding: 22px 18px; text-align: left; min-height: 120px; }
.testimonial .quote { font-size: 15px; color: #111827; margin-bottom: 8px; font-style: italic; }
.testimonial .author { color: #0F8F99; font-weight: 700; font-size: 14px; }

/* ===== FAQ =====*/
.faq { padding: 56px 6%; background: #F7FAFC; text-align: center; }
.faq-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 36px rgba(11,37,48,0.06);
    padding: 36px 36px 28px 36px;
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
}
.faq-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: 28px;
    margin-top: 24px;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
}
.faq-q {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(11,37,48,0.04);
    padding: 22px 20px;
    text-align: left;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform .18s ease, box-shadow .18s ease;
}
.faq-q:hover{ transform: translateY(-6px); box-shadow: 0 18px 40px rgba(11,37,48,0.08); }
.faq-q b {
    color: #0F8F99;
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
    font-size: 17px;
}
.faq-q span { color: #111827; opacity: .95; line-height: 1.6; margin-top: 6px; }

/* ===== MOCKUP =====*/
.mockup { text-align:center; padding:60px 10%; background:#fff; }
.mockup-box { width:85%; margin:0 auto 20px; border-radius:14px; overflow:hidden; box-shadow:0 10px 40px rgba(0,0,0,0.1); }
.mockup-box img { 
    width: 100%; 
    max-width: 100%;
    height: auto;
    display: block; 
}
.btn-outline { border:2px solid #2BC8C8; padding:12px 24px; font-size:16px; border-radius:8px; text-decoration:none; color:#2BC8C8; font-weight:700; transition:.25s; }

/* ===== CONTACTE =====*/
.contact { text-align:center; padding:55px 8%; background:#EDF4F7; }
.contact form { max-width:420px; margin:25px auto 0; display:flex; flex-direction:column; gap:12px; }
.contact input, .contact textarea { padding:14px; border-radius:8px; border:1px solid #cfd9df; font-size:15px; }
.contact button { padding:14px; background:#111827; color:#fff; font-size:16px; font-weight:700; border:none; border-radius:8px; cursor:pointer; transition: 0.2s; }
.contact button:hover { background: #000; }

/* ===== MENSAJES DE ESTADO DEL FORMULARIO (MEJORADOS) ===== */
.form-status {
    max-width: 500px;
    margin: 20px auto 30px;
    padding: 20px 25px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    animation: slideInDown 0.5s ease-out, pulse 2s ease-in-out 0.5s infinite;
    position: relative;
    border: 3px solid;
    line-height: 1.5;
}

.form-status::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    vertical-align: middle;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.form-status.ok {
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    color: #065F46;
    border-color: #10B981;
}

.form-status.ok::before {
    content: '✅';
    font-size: 24px;
    margin-right: 12px;
}

.form-status.error {
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
    color: #991B1B;
    border-color: #EF4444;
}

.form-status.error::before {
    content: '❌';
    font-size: 24px;
    margin-right: 12px;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }
    50% {
        box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    }
}

/* ===== FOOTER =====*/
footer { text-align:center; padding:25px; background:#E4EBEF; font-size:14px; margin-top:40px; }

/* ===== FLOATING CTA (mejorado) ===== */
.floating-cta{
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #2BC8C8;
    color: #041018;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(43,200,200,0.16);
    z-index: 1200;
    transition: transform .18s, box-shadow .18s, opacity .18s;
}
.floating-cta:hover{ transform: translateY(-4px); box-shadow: 0 18px 44px rgba(43,200,200,0.2); }

@media (max-width: 900px){
    .floating-cta{ display: none; }
}

/* ===== RESPONSIVE =====*/
@media (max-width: 900px) {
    .testimonials-list { grid-template-columns: 1fr; }
    .how-grid { flex-direction: column; align-items: center; }
    .price-grid { flex-direction: column; align-items: center; }
}

/* FAQ responsive columns: 3 cols under 1200px, 2 under 900px, 1 under 600px */
@media (max-width: 1200px) {
    .faq-list { grid-template-columns: repeat(3, minmax(220px, 1fr)); }
}
@media (max-width: 900px) {
    .faq-list { grid-template-columns: repeat(2, minmax(220px, 1fr)); }
}
@media (max-width: 600px) {
    .faq-list { grid-template-columns: 1fr; }
}

/* Estilos antiguos eliminados - ahora usando el nuevo diseño del banner */

.subtitle { font-size:20px; opacity:0.95; margin-bottom:20px; }

.benefits, .hero-benefits { 
    margin-bottom: 40px; 
    list-style: none; 
    padding: 0; 
}

.benefits li, .hero-benefits li { 
    margin-bottom: 14px; 
    font-size: 20px; 
    display: flex; 
    align-items: center; 
    color: #fff;
    font-weight: 600;
}

.hero-benefits .checkmark {
    color: #22C55E;
    font-size: 24px;
    font-weight: 900;
    margin-right: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(34,197,94,0.15);
    border-radius: 50%;
    flex-shrink: 0;
}

.benefits li::before, .hero-benefits li::before { content: "✔"; color:#22C55E; margin-right:8px; font-size:20px; }

.cta, .cta-btn { background:#22C55E; color:white; padding:14px 36px; font-size:18px; font-weight:700; border-radius:8px; display:inline-block; transition:.2s; text-decoration:none; }
.cta:hover, .cta-btn:hover { background:#17a14b; }

.hero-left {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
}

.hero-right {
    flex: 1;
    min-width: 400px;
    max-width: 700px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-right {
    flex: 1;
    min-width: 400px;
    max-width: 750px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mockup del dashboard creado con CSS */
.hero-dashboard-mockup {
    position: relative;
    width: 100%;
    max-width: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-laptop {
    position: relative;
    width: 100%;
    max-width: 600px;
    background: #1e293b;
    border-radius: 16px 16px 8px 8px;
    padding: 12px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.4);
    z-index: 1;
}

.mockup-laptop::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 8px;
    background: #0f172a;
    border-radius: 0 0 8px 8px;
}

.mockup-screen {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 8px;
    padding: 20px;
    min-height: 400px;
}

.screen-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.screen-logo-img {
    width: 32px;
    max-width: 100%;
    height: auto;
}

.screen-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.screen-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.screen-chart {
    height: 200px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
}

.chart-line {
    flex: 1;
    background: linear-gradient(to top, #2563EB, #22C55E);
    border-radius: 4px 4px 0 0;
    min-height: 40px;
    animation: chartGrow 1s ease-out;
}

.chart-line:nth-child(1) { height: 60%; }
.chart-line:nth-child(2) { height: 80%; }
.chart-line:nth-child(3) { height: 100%; }

@keyframes chartGrow {
    from { height: 0; }
}

.screen-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-item {
    background: rgba(255,255,255,0.05);
    padding: 16px;
    border-radius: 8px;
    text-align: center;
}

.stat-value {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
}

.stat-label {
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mockup-popup {
    position: absolute;
    top: 15%;
    right: -60px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    min-width: 260px;
    z-index: 10;
    animation: popupFloat 3s ease-in-out infinite;
}

@keyframes popupFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.popup-number-large {
    font-size: 32px;
    font-weight: 900;
    color: #111827;
    line-height: 1;
}

.popup-number-green {
    font-size: 32px;
    font-weight: 900;
    color: #22C55E;
    line-height: 1;
    position: relative;
    padding-left: 12px;
}

.popup-number-green::before {
    content: '↗';
    position: absolute;
    left: -8px;
    top: -4px;
    font-size: 20px;
    color: #22C55E;
}

.popup-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.popup-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #111827;
    font-weight: 600;
}

.popup-check {
    color: #22C55E;
    font-weight: 900;
    font-size: 16px;
}

/* Efectos de partículas mejorados */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(255,255,255,0.2) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(255,255,255,0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 65%),
        radial-gradient(circle at 30% 70%, rgba(34,197,94,0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 30%, rgba(29,78,216,0.15) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
    animation: particlesFloat 20s ease-in-out infinite;
}

@keyframes particlesFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-20px) scale(1.05);
        opacity: 0.9;
    }
}

/* Responsive tweaks to keep layout legible */
@media (max-width: 900px){
    .hero { 
        padding: 60px 5% 80px; 
        min-height: auto;
    }
    .hero-inner {
        flex-direction: column;
        gap: 50px;
    }
    .hero-left {
        max-width: 100%;
        text-align: center;
    }
    .hero h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }
    .hero-sub {
        font-size: 19px;
    }
    .hero-logo-container {
        justify-content: center;
    }
    .hero-logo-img {
        width: 160px;
    }
    .hero-benefits li {
        font-size: 18px;
        justify-content: center;
    }
    .hero-right {
        max-width: 100%;
        min-width: auto;
    }
    .hero-dashboard-image {
        max-width: 100%;
    }
    .hero-inline-logo{ width:36px; margin-right:8px; }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 28px;
    }
    .hero-sub {
        font-size: 16px;
    }
    .hero-benefits li {
        font-size: 16px;
    }
    .hero-logo-img {
        width: 120px !important;
        max-width: 100% !important;
        height: auto !important;
    }
    /* Asegurar que todas las imágenes sean responsive */
    img {
        max-width: 100% !important;
        height: auto !important;
    }
    .mockup-box img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
}


/* ----- Fin snippet usuario ----- */

/* ===== RESPONSIVE COMPLETO - MEJORAS ADICIONALES ===== */

/* Tablet y móvil grande (max-width: 900px) - Consolidación */
@media screen and (max-width: 900px) {
    /* Estilo de prueba para verificar que funciona */
    body {
        font-size: 16px;
    }
    
    /* Promo banner */
    .promo {
        flex-wrap: wrap !important;
        font-size: 13px !important;
        padding: 8px 10px !important;
    }
    
    /* Navegación */
    nav {
        text-align: center !important;
        padding: 12px 15px !important;
        font-size: 14px !important;
    }
    nav a {
        margin-left: 8px;
        margin-right: 8px;
    }
    .nav-sep {
        margin-left: 6px;
        margin-right: 6px;
    }
    
    /* Pain section */
    .pain {
        padding: 35px 12px;
    }
    .pain h2 {
        font-size: 24px;
    }
    .pain ul {
        transform: translateX(0);
        max-width: 100%;
    }
    
    /* Benefits */
    .benefits {
        padding: 40px 5%;
    }
    .grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    /* Value */
    .value {
        padding: 45px 5%;
    }
    .value-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 10px;
    }
    
    /* How section - mejoras adicionales */
    .how {
        padding: 50px 4%;
    }
    .how-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .how-actions .btn-secondary,
    .how-actions .btn-link {
        width: 100%;
        text-align: center;
    }
    
    /* Plans */
    .plans {
        padding: 50px 5%;
    }
    .price-card {
        max-width: 100%;
        width: 100%;
        min-width: auto;
    }
    
    /* Testimonials */
    .testimonials {
        padding: 40px 5%;
    }
    
    /* FAQ */
    .faq {
        padding: 50px 4%;
    }
    .faq-card {
        padding: 28px 20px;
    }
    
    /* Mockup */
    .mockup {
        padding: 50px 5%;
    }
    .mockup-box {
        width: 100% !important;
        padding: 15px !important;
    }
    .mockup-box img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
    }
    .mockup-box > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        padding: 20px !important;
    }
    .mockup-popup {
        position: relative !important;
        right: auto !important;
        top: auto !important;
        left: auto !important;
        margin-top: 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: auto !important;
        padding: 20px !important;
    }
    .popup-number-large,
    .popup-number-green {
        font-size: 24px !important;
    }
    .popup-item {
        font-size: 13px !important;
    }
    
    /* Contact */
    .contact {
        padding: 50px 5%;
    }
    .contact form {
        max-width: 100%;
    }
    
    /* Footer */
    footer {
        padding: 20px 15px;
        font-size: 13px;
    }
    footer div {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    footer a {
        margin: 0 5px;
    }
    
    /* Ajustes para el mockup del dashboard en móvil */
    .mockup-box > div[style*="grid-template-columns: repeat(3"] {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    .mockup-box > div[style*="grid-template-columns: repeat(3"] > div {
        padding: 15px !important;
    }
    /* Asegurar que todas las imágenes sean responsive */
    .hero-dashboard-mockup,
    .mockup-laptop,
    .mockup-screen {
        overflow: hidden;
    }
    .mockup-laptop::before {
        display: none; /* Ocultar el detalle del laptop en móvil */
    }
}

/* Móvil pequeño (max-width: 600px) - Mejoras adicionales */
@media screen and (max-width: 600px) {
    /* Promo */
    .promo {
        font-size: 12px;
        padding: 6px 8px;
    }
    .promo strong {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 4px;
    }
    
    /* Nav */
    nav {
        font-size: 13px;
        padding: 10px 8px;
    }
    nav a {
        margin-left: 4px;
        margin-right: 4px;
        display: inline-block;
    }
    .nav-sep {
        display: none;
    }
    
    /* Hero - mejoras adicionales */
    .cta-btn {
        font-size: 16px;
        padding: 14px 28px;
        width: 100%;
        justify-content: center;
    }
    .hero-dashboard-mockup {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 auto;
    }
    .mockup-laptop {
        max-width: 100% !important;
        width: 100% !important;
        padding: 8px !important;
    }
    .mockup-screen {
        padding: 15px !important;
        min-height: 300px !important;
    }
    .screen-chart {
        height: 150px !important;
        padding: 15px !important;
    }
    .screen-stats {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .stat-value {
        font-size: 20px !important;
    }
    .stat-label {
        font-size: 11px !important;
    }
    .screen-title {
        font-size: 16px !important;
    }
    .screen-logo-img {
        width: 28px !important;
    }
    
    /* Pain */
    .pain {
        padding: 30px 10px;
    }
    .pain h2 {
        font-size: 22px;
    }
    .pain ul li {
        font-size: 14px;
    }
    .pain .big-text {
        font-size: 15px;
    }
    
    /* Benefits */
    .benefits {
        padding: 35px 3%;
    }
    .grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .card {
        padding: 18px 15px;
        font-size: 14px;
    }
    
    /* Value */
    .value {
        padding: 40px 3%;
    }
    .value-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .value-item {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    /* How */
    .how {
        padding: 40px 3%;
    }
    .how h2 {
        font-size: 24px;
    }
    .how-box {
        padding: 20px 18px;
    }
    .how-box h3 {
        font-size: 16px;
    }
    .how-steps,
    .how-list {
        font-size: 14px;
        margin-left: 14px;
    }
    
    /* Plans */
    .plans {
        padding: 40px 3%;
    }
    .plans h2 {
        font-size: 24px;
    }
    .price-card {
        padding: 25px 18px;
    }
    .price {
        font-size: 28px;
    }
    
    /* Testimonials */
    .testimonials {
        padding: 35px 3%;
    }
    .testimonials-card {
        padding: 28px 20px;
    }
    .testimonial {
        padding: 18px 15px;
        min-height: auto;
    }
    .testimonial .quote {
        font-size: 14px;
    }
    
    /* FAQ */
    .faq {
        padding: 40px 3%;
    }
    .faq-card {
        padding: 24px 16px;
    }
    .faq-q {
        padding: 18px 16px;
        min-height: auto;
    }
    .faq-q b {
        font-size: 15px;
    }
    .faq-q span {
        font-size: 14px;
    }
    
    /* Mockup */
    .mockup {
        padding: 40px 3%;
    }
    .mockup h2 {
        font-size: 24px;
    }
    .mockup-box {
        width: 100% !important;
        padding: 15px !important;
    }
    .mockup-box > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        padding: 20px !important;
    }
    .mockup-box > div[style*="grid-template-columns"] > div {
        padding: 15px !important;
    }
    
    /* Contact */
    .contact {
        padding: 40px 3%;
    }
    .contact h2 {
        font-size: 24px;
    }
    .contact input,
    .contact textarea {
        font-size: 14px;
        padding: 12px;
    }
    .contact button {
        font-size: 15px;
        padding: 12px;
    }
    
    /* Notice */
    .notice {
        padding: 12px 4%;
    }
    .notice-text {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    /* Form status */
    .form-status {
        padding: 16px 18px;
        font-size: 15px;
    }
    
    /* Mejoras de accesibilidad en móvil */
    /* Asegurar que los botones sean táctiles */
    .cta-btn,
    .btn-primary,
    .btn-secondary,
    .btn-outline,
    .contact button {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Mejor espaciado en formularios */
    .contact form {
        gap: 15px;
    }
}

/* Móvil muy pequeño (max-width: 400px) */
@media screen and (max-width: 400px) {
    .hero h1 {
        font-size: 24px;
    }
    .hero-sub {
        font-size: 14px;
    }
    .hero-logo-img {
        width: 100px;
    }
    nav a {
        font-size: 12px;
        margin-left: 2px;
        margin-right: 2px;
    }
    .price {
        font-size: 24px;
    }
}