:root {
    --bg-body: #fff9e6;          /* amarillo clarito */
    --bg-header: #ffffff;        /* header blanco */
    --bg-section: #fff9e6;
    --bg-section-alt: #ffffff;
    --bg-footer: #ffd969;        /* amarillo más intenso */
    --color-text: #111827;
    --color-muted: #4b5563;
    --accent: #f97316;           /* naranja / láser */
    --accent-soft: #fb923c;
    --accent-alt: #facc15;
    --border-soft: #e5e7eb;
    --card-bg: #ffffff;
    --card-border: #e5e7eb;
    --container-width: 1120px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --shadow-soft: 0 12px 30px rgba(15,23,42,0.12);
    --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background: var(--bg-body);
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;
}

/* Layout */

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 16px;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.96);
    border-bottom: 1px solid var(--border-soft);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

/* Logo */

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.logo-beam {
    width: 130%;
    height: 3px;
    background: #f97316; /* haz láser naranja sólido */
    transform: rotate(-24deg) translateX(-10%);
}

.logo-dot-laser {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #facc15;
    position: absolute;
    right: 4px;
    bottom: 4px;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--color-text);
}

.logo-main {
    color: #111827;
}

.logo-accent {
    color: #f97316;
}

.logo-dot {
    color: #4b5563;
}

/* Nav */

.main-nav {
    display: flex;
    gap: 18px;
    font-size: 14px;
}

.main-nav a {
    text-decoration: none;
    color: var(--color-muted);
    padding: 6px 4px;
    position: relative;
    transition: color 0.18s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-alt));
    border-radius: 999px;
    transition: width 0.2s ease;
}

.main-nav a:hover {
    color: var(--color-text);
}

.main-nav a:hover::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Login */

.login-link {
    font-size: 14px;
    text-decoration: none;
    color: var(--color-text);
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    background: #ffffff;
    transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.login-link:hover {
    background: #fff7ed;
    border-color: #fed7aa;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(249,115,22,0.15);
}

/* Lang switcher */

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 6px;
    border-radius: 999px;
    background: #f9fafb;
    border: 1px solid var(--border-soft);
}

.lang-switcher .flag {
    display: inline-flex;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid transparent;
    opacity: 0.7;
    transition: transform 0.16s ease, opacity 0.16s ease, border-color 0.16s ease;
}

.lang-switcher .flag.active {
    opacity: 1;
    border-color: #f97316;
}

.lang-switcher .flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lang-switcher .flag:hover {
    opacity: 1;
    transform: translateY(-1px);
}

/* Hero */

.hero {
    padding: 52px 0 46px;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 38px;
    align-items: center;
}

.hero-copy h1 {
    font-size: 40px;
    line-height: 1.1;
    margin: 0 0 18px;
}

.hero-copy p {
    margin: 0 0 24px;
    font-size: 16px;
    color: var(--color-muted);
}

.hero-badges {
    margin-bottom: 18px;
    font-size: 13px;
    color: #92400e;
}

.hero-badges span {
    background: #ffedd5;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid #fed7aa;
}

/* Buttons */

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-primary,
.btn-secondary {
    border-radius: 999px;
    padding: 10px 20px;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.1s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
    background: linear-gradient(90deg, var(--accent), var(--accent-alt));
    color: #111827;
    box-shadow: 0 16px 32px rgba(249,115,22,0.35);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 48px rgba(249,115,22,0.45);
}

.btn-secondary {
    background: #ffffff;
    color: var(--color-text);
    border: 1px solid var(--border-soft);
}

.btn-secondary:hover {
    background: #fffbeb;
    border-color: #fed7aa;
    transform: translateY(-1px);
}

/* Hero visual */

.hero-visual {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 18px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.hero-screen {
    border-radius: 16px;
    background: #f9fafb;
    border: 1px solid var(--border-soft);
    padding: 14px;
    font-size: 12px;
    color: var(--color-muted);
}

.hero-screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.hero-dots {
    display: flex;
    gap: 6px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #e5e7eb;
}

.hero-screen-body {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 10px;
}

.hero-list,
.hero-summary {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--border-soft);
    padding: 10px;
}

.hero-list-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.hero-list-row strong {
    color: var(--color-text);
    font-size: 11px;
}

.hero-summary-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
}

/* Sections */

section {
    padding: 46px 0;
}

.section-alt {
    background: var(--bg-section-alt);
}

.section-header {
    text-align: left;
    margin-bottom: 24px;
}

.section-header h2 {
    font-size: 26px;
    margin: 0 0 8px;
}

.section-header p {
    margin: 0;
    color: var(--color-muted);
    max-width: 560px;
}

/* How */

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.how-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
    padding: 16px;
    box-shadow: var(--shadow-soft);
}

.how-card h3 {
    margin: 0 0 8px;
    font-size: 16px;
}

.how-card p {
    margin: 0 0 8px;
    font-size: 14px;
    color: var(--color-muted);
}

.how-card img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border-soft);
}

/* Screenshots */

#screenshots .hero-visual img {
    display: block;
}

/* Pricing */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--card-border);
    padding: 20px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}


/* nombre del plan el doble de grande aprox */
.pricing-name {
    font-size: 32px;            /* antes 16px → ~100% más grande */
    font-weight: 700;
    margin-bottom: 6px;
}

/* precio un poco más grande que antes */
.pricing-price {
    font-size: 26px;            /* ya lo tenías a 26 tras el cambio anterior */
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--accent);
}

/* card destacada (si la usas) */
.pricing-card.highlight {
    border-color: #f97316;
    box-shadow: 0 20px 45px rgba(249,115,22,0.28);
    transform: translateY(-6px);   /* levantado por defecto */
    background: #fff7ed;           /* un pelín más cálido */
}

/* Hover genérico para todas las cards de precio */
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15,23,42,0.25);
}

/* Ajuste fino según el plan (ligeras variaciones de fondo) */
.pricing-card.plan-basic:hover {
    background: #fffbeb;          /* un amarillo algo más claro */
    border-color: #facc15;
}

.pricing-card.plan-pro:hover {
    background: #ffedd5;          /* mantiene el tono naranja suave */
    border-color: #f97316;
}

.pricing-card.plan-master:hover {
    background: #fee2e2;          /* rojito suave */
    border-color: #ef4444;
}





.pricing-desc {
    font-size: 14px;
    color: var(--color-muted);
    margin-bottom: 18px;
}

.pricing-footer {
    margin-top: 24px;
    font-size: 13px;
    color: var(--color-muted);
}

/* lista de funcionalidades en cada plan */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    text-align: left;               /* bullets alineados a la izquierda */
}

.pricing-features li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
    font-size: 14px;
    color: var(--color-muted);
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 4px;
    top: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 13px;
}

.pricing-card.highlight {
    border-color: #f97316;
    box-shadow: 0 18px 40px rgba(249,115,22,0.25);
}

/* Colores específicos de cada plan */

.plan-basic {
    background: #fef3c7;              /* amarillo suave */
    border-color: #facc15;
}

.plan-pro {
    background: #ffedd5;              /* naranja suave */
    border-color: #fb923c;
}

.plan-master {
    background: #fee2e2;              /* rojo suave */
    border-color: #ef4444;
}

/* CTA dentro de la card */
.plan-cta {
    margin-top: auto;
    display: flex;
    justify-content: center;
    padding-top: 12px;
}


.plan-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border-radius: 999px;
    background: #ffffff;
    color: #111827;
    border: 1px solid rgba(0,0,0,0.08);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.1s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.plan-btn:hover {
    background: #f9fafb;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transform: translateY(-1px);
}

/* Support + Contact */

.support-box {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--card-border);
    padding: 20px;
    box-shadow: var(--shadow-soft);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 22px;
}

.contact-form {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--card-border);
    padding: 20px;
    box-shadow: var(--shadow-soft);
}

.contact-form label {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
    color: var(--color-muted);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid var(--border-soft);
    background: #ffffff;
    color: var(--color-text);
    font-family: var(--font-main);
    font-size: 14px;
    margin-bottom: 10px;
}

.contact-form textarea {
    min-height: 100px;
    resize: vertical;
}

/* FAQ */

.faq-list {
    max-width: 820px;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--card-border);
    margin-bottom: 10px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 12px 16px;
    font-weight: 600;
    position: relative;
}

.faq-item summary::marker {
    display: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "＋";
    position: absolute;
    right: 16px;
    top: 12px;
    font-weight: 400;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    padding: 0 16px 12px 16px;
    margin: 0;
    font-size: 14px;
    color: var(--color-muted);
}

/* Footer */

.site-footer {
    border-top: 1px solid rgba(0,0,0,0.06);
    padding: 26px 0 22px;
    background: var(--bg-footer);
    color: #111827;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 16px;
    font-size: 13px;
}

.footer-col h4 {
    margin: 0 0 8px;
    font-size: 14px;
}

.footer-logo {
    font-weight: 600;
    margin-bottom: 6px;
}

.site-footer a {
    color: #111827;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* Map */

.map-frame {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.12);
    height: 150px;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


 /* Botones flotantes WhatsApp / Telegram */
.floating-chat {
    position: fixed;
    right: 18px;
    bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,.18);
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease;
}

.float-btn svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.float-btn.wa {
    background: #25d366;   /* verde WhatsApp */
}

.float-btn.tg {
    background: #0088cc;   /* azul Telegram */
}

.float-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0,0,0,.25);
}


/* Responsive */

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }
    .hero-visual {
        order: -1;
    }
    .pricing-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .how-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .header-inner {
        flex-wrap: wrap;
        gap: 10px;
    }
    .main-nav {
        display: none; /* más adelante se puede hacer menú hamburguesa */
    }
    .footer-inner {
        grid-template-columns: minmax(0,1fr);
    }
}

@media (max-width: 600px) {
    .hero-copy h1 {
        font-size: 30px;
    }
}
