/* ======================
RESET BÁSICO
====================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}

body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
    background-color: #050816;
    color: #f9fafb;
    -webkit-font-smoothing: antialiased;
}

/* ======================
CONTENEDOR GLOBAL
====================== */
.sc-container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ======================
HEADER
====================== */
.sc-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(10px);
    background: rgba(5, 8, 22, 0.9);
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.sc-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.sc-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.sc-logo__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, #6366f1, #22c55e);
    font-size: 0.85rem;
    font-weight: 700;
    color: #020617;
}

.sc-logo__text {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* NAV */
.sc-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.sc-nav__link {
    font-size: 0.9rem;
    text-decoration: none;
    color: #e5e7eb;
    opacity: 0.75;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.sc-nav__link:hover {
    opacity: 1;
    color: #ffffff;
}

.sc-nav__btn {
    font-size: 0.9rem;
    text-decoration: none;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    color: #e5e7eb;
    background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.2),
    rgba(34, 197, 94, 0.15)
    );
    transition: transform 0.15s ease, box-shadow 0.15s ease,
    background 0.15s ease, border-color 0.15s ease;
}

.sc-nav__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.7);
    border-color: rgba(129, 140, 248, 0.7);
}

/* ======================
HERO SECTION
====================== */
.hero {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    padding: 3rem 0 4rem;
}

.hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}

/* LEFT COLUMN */
.hero__left {
    max-width: 620px;
}

.hero__eyebrow {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #a5b4fc;
    margin-bottom: 1rem;
}

.hero__title {
    font-size: clamp(2.2rem, 3vw + 1rem, 3.2rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero__subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: #cbd5f5;
    opacity: 0.93;
    margin-bottom: 1.5rem;
}

/* BUTTONS */
.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.75rem 1.6rem;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease,
    background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn--primary {
    background: linear-gradient(135deg, #6366f1, #22c55e);
    color: #020617;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.85);
}

.btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.9);
}

.btn--ghost {
    border-color: rgba(148, 163, 184, 0.7);
    background: rgba(15, 23, 42, 0.9);
    color: #e5e7eb;
}

.btn--ghost:hover {
    border-color: rgba(129, 140, 248, 0.9);
    background: rgba(15, 23, 42, 1);
}

/* LIST */
.hero__list {
    list-style: none;
    display: grid;
    gap: 0.4rem;
    font-size: 0.95rem;
    color: #cbd5f5;
}

/* ======================
HERO RIGHT CARD
====================== */
.hero__right {
    display: flex;
    justify-content: center;
}

.hero-card {
    width: 100%;
    max-width: 400px;
    background: radial-gradient(circle at top left, #0f172a, #020617);
    border-radius: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.9);
    padding: 1rem 1rem 1.25rem;
}

.hero-card__top {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.9rem;
}

.hero-card__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.6);
}

.hero-card__badge {
    margin-left: auto;
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.1);
    color: #bbf7d0;
    border: 1px solid rgba(34, 197, 94, 0.4);
}

.hero-card__body {
    padding: 0.4rem 0.4rem 0;
}

.hero-card__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #94a3b8;
    margin-top: 0.6rem;
}

.hero-card__value {
    font-size: 0.9rem;
    color: #e5e7eb;
    margin-top: 0.15rem;
}

.hero-card__metrics {
    margin-top: 0.9rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.hero-card__metric {
    background: rgba(15, 23, 42, 0.9);
    border-radius: 0.9rem;
    padding: 0.6rem 0.7rem;
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.hero-card__metric-label {
    font-size: 0.7rem;
    color: #9ca3af;
}

.hero-card__metric-value {
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 0.2rem;
    color: #e5e7eb;
}

.hero-card__code {
    margin-top: 1rem;
    font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco,
    Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.78rem;
    line-height: 1.6;
    background: radial-gradient(circle at top left, #020617, #020617);
    border-radius: 0.9rem;
    padding: 0.8rem 0.9rem;
    border: 1px solid rgba(148, 163, 184, 0.4);
    color: #e5e7eb;
    overflow-x: auto;
}

/* CODE COLORS */
.code-comment {
    color: #6b7280;
}

.code-keyword {
    color: #6366f1;
}

.code-string {
    color: #22c55e;
}

/* ======================
RESPONSIVE
====================== */
@media (max-width: 900px) {
    .hero__inner {
        grid-template-columns: minmax(0, 1fr);
    }
    
    .hero {
        padding-top: 2.5rem;
    }
    
    .hero__right {
        order: -1;
        margin-bottom: 1.5rem;
    }
    
    .sc-header__inner {
        gap: 1rem;
    }
    
    .sc-nav {
        display: none; /* Más adelante puedes agregar menú móvil */
    }
}

@media (max-width: 600px) {
    .hero {
        padding-bottom: 3rem;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .hero-card {
        max-width: 100%;
    }
    
    .sc-container {
        padding: 0 1rem;
    }
}


/* ======================
TRUST BAR
====================== */
.trust-bar {
    border-top: 1px solid rgba(148, 163, 184, 0.25);
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
    background: radial-gradient(circle at top left, #020617, #020617);
}

.trust-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.75rem;
    padding: 1rem 0;
    flex-wrap: wrap;
}

.trust-bar__text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #e5e7eb;
    white-space: nowrap;
}

.trust-bar__logos {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.trust-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.75);
}

.trust-logo__img {
    width: 20px;
    height: 20px;
    display: block;
}

.trust-logo__label {
    font-size: 0.8rem;
    color: #e5e7eb;
}

/* RESPONSIVE TRUST BAR */
@media (max-width: 900px) {
    .trust-bar__inner {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .trust-bar__text {
        white-space: normal;
    }
    
    .trust-bar__logos {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .trust-logo {
        padding: 0.3rem 0.6rem;
    }
    
    .trust-logo__label {
        font-size: 0.75rem;
    }
    
    .trust-logo__img {
        width: 18px;
        height: 18px;
    }
}
/* ======================
SERVICIOS PRINCIPALES
====================== */
.services {
    padding: 4rem 0 4.5rem;
    background: radial-gradient(circle at top, #020617 0%, #020617 60%, #020617 100%);
}

.services__inner {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.services__header {
    max-width: 640px;
}

.services__eyebrow {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #a5b4fc;
    margin-bottom: 0.75rem;
}

.services__title {
    font-size: clamp(1.8rem, 2.6vw + 1rem, 2.4rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.services__subtitle {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #cbd5f5;
    opacity: 0.9;
}

/* GRID DE TARJETAS */
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
}

/* CARD BASE */
.service-card {
    position: relative;
    border-radius: 1.3rem;
    padding: 1.5rem 1.4rem 1.4rem;
    background: radial-gradient(circle at top left, #020617, #020617);
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.85);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    transform-origin: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease, background 0.18s ease;
}

.service-card--primary {
    background: radial-gradient(circle at top left, #111827, #020617);
    border-color: rgba(129, 140, 248, 0.9);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.95);
    border-color: rgba(129, 140, 248, 0.9);
}

/* ICONO */
.service-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.2rem;
    background: radial-gradient(circle at top left, #4f46e5, #22c55e);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.9);
}

.service-card__icon span {
    font-size: 1.3rem;
}

/* TÍTULO */
.service-card__title {
    font-size: 1.05rem;
    font-weight: 600;
}

/* LISTA */
.service-card__list {
    list-style: none;
    display: grid;
    gap: 0.35rem;
    font-size: 0.9rem;
    color: #cbd5f5;
}

.service-card__list li::before {
    content: "•";
    margin-right: 0.35rem;
    color: #22c55e;
}

/* CTA */
.service-card__cta {
    margin-top: auto;
    align-self: flex-start;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: transparent;
    padding: 0.45rem 0.95rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: #e5e7eb;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: background 0.18s ease, border-color 0.18s ease,
    transform 0.18s ease, box-shadow 0.18s ease;
}

.service-card__cta::after {
    content: "↗";
    font-size: 0.8rem;
    opacity: 0.85;
}

.service-card__cta:hover {
    background: rgba(129, 140, 248, 0.12);
    border-color: rgba(129, 140, 248, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.85);
}

/* RESPONSIVE SERVICIOS */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .services {
        padding: 3rem 0 3.5rem;
    }
    
    .services__grid {
        grid-template-columns: minmax(0, 1fr);
    }
}
/* ======================
TU PROCESO (CÓMO TRABAJAMOS)
====================== */
.process {
    padding: 4rem 0 4.5rem;
    background: radial-gradient(circle at top, #020617 0%, #020617 60%, #020617 100%);
    border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.process__inner {
    display: flex;
    flex-direction: column;
    gap: 2.75rem;
}

.process__header {
    max-width: 640px;
}

.process__eyebrow {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #a5b4fc;
    margin-bottom: 0.75rem;
}

.process__title {
    font-size: clamp(1.8rem, 2.4vw + 1rem, 2.3rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.process__subtitle {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #cbd5f5;
    opacity: 0.9;
}

/* GRID DE PASOS */
.process__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.5rem;
    position: relative;
}

/* Línea conectora en desktop */
.process__grid::before {
    content: "";
    position: absolute;
    inset-inline: 0.8rem;
    top: 32px;
    height: 2px;
    background: linear-gradient(
    to right,
    rgba(148, 163, 184, 0.6),
    rgba(129, 140, 248, 0.9),
    rgba(34, 197, 94, 0.8)
    );
    opacity: 0.35;
    pointer-events: none;
}

/* TARJETA DE PASO */
.process-step {
    position: relative;
    padding-top: 1.8rem;
}

.process-step__badge {
    position: relative;
    z-index: 1;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: #020617;
    background: radial-gradient(circle at top left, #6366f1, #22c55e);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.9);
}

/* Bloque de contenido del paso */
.process-step__title {
    margin-top: 0.85rem;
    font-size: 1rem;
    font-weight: 600;
}

.process-step__text {
    margin-top: 0.45rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #cbd5f5;
}

/* RESPONSIVE PROCESO */
@media (max-width: 1024px) {
    .process__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .process__grid::before {
        inset-inline: 0.4rem;
    }
}

@media (max-width: 768px) {
    .process {
        padding: 3.2rem 0 3.6rem;
    }
    
    .process__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.75rem;
    }
    
    .process__grid::before {
        display: none;
    }
    
    .process-step {
        padding-top: 0;
        padding-left: 0.2rem;
        border-left: 1px solid rgba(148, 163, 184, 0.35);
    }
    
    .process-step__badge {
        margin-left: -17px;
    }
    
    .process-step__title {
        margin-top: 0.65rem;
    }
}
/* ======================
PORTFOLIO / PROYECTOS RECIENTES
====================== */
.portfolio {
    padding: 4rem 0 4.5rem;
    background: radial-gradient(circle at top, #020617 0%, #020617 60%, #020617 100%);
    border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.portfolio__inner {
    display: flex;
    flex-direction: column;
    gap: 2.75rem;
}

.portfolio__header {
    max-width: 680px;
}

.portfolio__eyebrow {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #a5b4fc;
    margin-bottom: 0.75rem;
}

.portfolio__title {
    font-size: clamp(1.8rem, 2.4vw + 1rem, 2.3rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.portfolio__subtitle {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #cbd5f5;
    opacity: 0.9;
}

/* Caso de éxito */
.portfolio__highlight {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: 1.75rem;
    padding: 1.4rem 1.3rem;
    border-radius: 1.3rem;
    background: radial-gradient(circle at top left, #111827, #020617);
    border: 1px solid rgba(129, 140, 248, 0.7);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.9);
}

.portfolio__highlight-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #a5b4fc;
    margin-bottom: 0.35rem;
}

.portfolio__highlight-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.portfolio__highlight-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #cbd5f5;
}

.portfolio__highlight-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.portfolio__metric {
    padding: 0.55rem 0.8rem;
    border-radius: 0.9rem;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.5);
}

.portfolio__metric-label {
    display: block;
    font-size: 0.75rem;
    color: #9ca3af;
}

.portfolio__metric-value {
    display: block;
    font-size: 0.98rem;
    font-weight: 600;
    margin-top: 0.15rem;
}

.portfolio__highlight-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.75rem;
}

.portfolio__quote {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #e5e7eb;
    font-style: italic;
}

.portfolio__quote-author {
    font-size: 0.8rem;
    color: #9ca3af;
}

/* Grid de proyectos */
.portfolio__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
}

/* Card de proyecto */
.portfolio-card {
    border-radius: 1.3rem;
    background: radial-gradient(circle at top left, #020617, #020617);
    border: 1px solid rgba(148, 163, 184, 0.45);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.95);
    border-color: rgba(129, 140, 248, 0.9);
}

.portfolio-card__media {
    position: relative;
    overflow: hidden;
}

.portfolio-card__img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.25s ease;
}

.portfolio-card:hover .portfolio-card__img {
    transform: scale(1.05);
}

.portfolio-card__body {
    padding: 1.1rem 1.1rem 1.15rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.portfolio-card__tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #a5b4fc;
}

.portfolio-card__title {
    font-size: 1rem;
    font-weight: 600;
}

.portfolio-card__text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #cbd5f5;
}

.portfolio-card__list {
    list-style: none;
    display: grid;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: #cbd5f5;
}

.portfolio-card__list li::before {
    content: "•";
    margin-right: 0.35rem;
    color: #22c55e;
}

/* CTA */
.portfolio-card__cta {
    margin-top: auto;
    align-self: flex-start;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: transparent;
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: #e5e7eb;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: background 0.18s ease, border-color 0.18s ease,
    transform 0.18s ease, box-shadow 0.18s ease;
}

.portfolio-card__cta::after {
    content: "↗";
    font-size: 0.8rem;
    opacity: 0.85;
}

.portfolio-card__cta:hover {
    background: rgba(129, 140, 248, 0.12);
    border-color: rgba(129, 140, 248, 0.95);
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.85);
}

/* RESPONSIVE PORTFOLIO */
@media (max-width: 1024px) {
    .portfolio__highlight {
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    }
    
    .portfolio__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .portfolio {
        padding: 3.2rem 0 3.6rem;
    }
    
    .portfolio__highlight {
        grid-template-columns: minmax(0, 1fr);
    }
    
    .portfolio__grid {
        grid-template-columns: minmax(0, 1fr);
    }
    
    .portfolio-card__img {
        height: 190px;
    }
}
/* ======================
TESTIMONIOS / RESEÑAS
====================== */
.testimonials {
    padding: 4rem 0 4.5rem;
    background: radial-gradient(circle at top, #020617 0%, #020617 60%, #020617 100%);
    border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.testimonials__inner {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.testimonials__header {
    max-width: 640px;
}

.testimonials__eyebrow {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #a5b4fc;
    margin-bottom: 0.75rem;
}

.testimonials__title {
    font-size: clamp(1.8rem, 2.3vw + 1rem, 2.2rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.testimonials__subtitle {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #cbd5f5;
    opacity: 0.9;
}

/* GRID DE TESTIMONIOS */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
}

/* CARD */
.testimonial-card {
    border-radius: 1.3rem;
    padding: 1.4rem 1.35rem 1.25rem;
    background: radial-gradient(circle at top left, #020617, #020617);
    border: 1px solid rgba(148, 163, 184, 0.5);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.1rem;
    transform-origin: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.95);
    border-color: rgba(129, 140, 248, 0.9);
}

/* CITA */
.testimonial-card__quote {
    position: relative;
    padding-left: 1.6rem;
}

.testimonial-card__icon {
    position: absolute;
    left: 0;
    top: -0.2rem;
    font-size: 2.2rem;
    line-height: 1;
    color: rgba(129, 140, 248, 0.5);
}

.testimonial-card__text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #e5e7eb;
}

/* FOOTER */
.testimonial-card__footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.testimonial-card__name {
    font-size: 0.95rem;
    font-weight: 600;
}

.testimonial-card__role {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 0.1rem;
}

.testimonial-card__rating span {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: #facc15;
}

/* RESPONSIVE TESTIMONIOS */
@media (max-width: 1024px) {
    .testimonials__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 3.2rem 0 3.6rem;
    }
    
    .testimonials__grid {
        grid-template-columns: minmax(0, 1fr);
    }
}
/* ======================
PLANES / PRECIOS
====================== */
.pricing {
    padding: 4rem 0 4.5rem;
    background: radial-gradient(circle at top, #020617 0%, #020617 60%, #020617 100%);
    border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.pricing__inner {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.pricing__header {
    max-width: 640px;
}

.pricing__eyebrow {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #a5b4fc;
    margin-bottom: 0.75rem;
}

.pricing__title {
    font-size: clamp(1.8rem, 2.3vw + 1rem, 2.2rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.pricing__subtitle {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #cbd5f5;
    opacity: 0.9;
}

/* Nota de idiomas */
.pricing__notice {
    border-radius: 0.9rem;
    padding: 0.85rem 1rem;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(129, 140, 248, 0.7);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.9);
}

.pricing__notice p {
    font-size: 0.9rem;
    color: #e5e7eb;
}

/* GRID DE PLANES */
.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
}

/* CARD */
.pricing-card {
    position: relative;
    border-radius: 1.3rem;
    padding: 1.5rem 1.4rem 1.35rem;
    background: radial-gradient(circle at top left, #020617, #020617);
    border: 1px solid rgba(148, 163, 184, 0.5);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transform-origin: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease, background 0.18s ease;
}

.pricing-card--highlight {
    background: radial-gradient(circle at top left, #111827, #020617);
    border-color: rgba(129, 140, 248, 0.9);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.95);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.95);
    border-color: rgba(129, 140, 248, 0.9);
}

/* Badge (iconito de plan) */
.pricing-card__badge {
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
}

.pricing-card__title {
    font-size: 1.05rem;
    font-weight: 600;
}

.pricing-card__price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e5e7eb;
}

.pricing-card__hint {
    font-size: 0.85rem;
    color: #9ca3af;
}

/* Lista de beneficios */
.pricing-card__list {
    list-style: none;
    display: grid;
    gap: 0.35rem;
    padding-top: 0.4rem;
    font-size: 0.9rem;
    color: #cbd5f5;
}

.pricing-card__list li::before {
    content: "•";
    margin-right: 0.35rem;
    color: #22c55e;
}

/* CTA */
.pricing-card__cta {
    margin-top: auto;
    align-self: flex-start;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: transparent;
    padding: 0.45rem 1.1rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: #e5e7eb;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: background 0.18s ease, border-color 0.18s ease,
    transform 0.18s ease, box-shadow 0.18s ease;
}

.pricing-card__cta::after {
    content: "↗";
    font-size: 0.8rem;
    opacity: 0.85;
}

.pricing-card__cta:hover {
    background: rgba(129, 140, 248, 0.14);
    border-color: rgba(129, 140, 248, 0.95);
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.85);
}

/* Nota final */
.pricing__footnote {
    margin-top: 0.6rem;
    font-size: 0.8rem;
    color: #9ca3af;
}

/* RESPONSIVE PRICING */
@media (max-width: 1024px) {
    .pricing__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 3.2rem 0 3.6rem;
    }
    
    .pricing__grid {
        grid-template-columns: minmax(0, 1fr);
    }
}
/* ======================
ACERCA DE SOUL OF CODE
====================== */
.about {
    padding: 4rem 0 4.5rem;
    background: radial-gradient(circle at top, #020617 0%, #020617 60%, #020617 100%);
    border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.about__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2.5rem;
    align-items: center;
}

/* FOTO */
.about__photo-wrapper {
    display: flex;
    justify-content: center;
}

.about__photo-card {
    position: relative;
    border-radius: 1.5rem;
    padding: 0.5rem;
    background: radial-gradient(circle at top left, #111827, #020617);
    border: 1px solid rgba(129, 140, 248, 0.9);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.95);
    max-width: 320px;
    width: 100%;
}

.about__photo-inner {
    overflow: hidden;
    border-radius: 1.25rem;
}

.about__photo {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.25s ease;
}

.about__photo-card:hover .about__photo {
    transform: scale(1.06);
}

.about__photo-tag {
    position: absolute;
    left: 1.1rem;
    bottom: 1rem;
    border-radius: 999px;
    padding: 0.35rem 0.8rem;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.8);
    font-size: 0.8rem;
    color: #e5e7eb;
}

/* TEXTO */
.about__content {
    max-width: 620px;
}

.about__eyebrow {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #a5b4fc;
    margin-bottom: 0.75rem;
}

.about__title {
    font-size: clamp(1.8rem, 2.3vw + 1rem, 2.2rem);
    font-weight: 700;
    margin-bottom: 0.9rem;
}

.about__lead {
    font-size: 1rem;
    line-height: 1.7;
    color: #e5e7eb;
    margin-bottom: 1rem;
}

.about__text {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #cbd5f5;
    margin-bottom: 0.75rem;
}

.about__text--small {
    font-size: 0.88rem;
    opacity: 0.9;
}

/* VALORES */
.about__values {
    list-style: none;
    margin: 0.8rem 0 0.9rem;
    display: grid;
    gap: 0.35rem;
    font-size: 0.9rem;
    color: #cbd5f5;
}

.about__values li::before {
    content: "•";
    margin-right: 0.35rem;
    color: #22c55e;
}

/* CTA */
.about__cta {
    margin-top: 0.4rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: transparent;
    padding: 0.6rem 1.3rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #e5e7eb;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: background 0.18s ease, border-color 0.18s ease,
    transform 0.18s ease, box-shadow 0.18s ease;
}

.about__cta::after {
    content: "🤝";
    font-size: 1rem;
}

.about__cta:hover {
    background: rgba(129, 140, 248, 0.14);
    border-color: rgba(129, 140, 248, 0.95);
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.85);
}

/* RESPONSIVE ABOUT */
@media (max-width: 900px) {
    .about__inner {
        grid-template-columns: minmax(0, 1fr);
    }
    
    .about {
        padding: 3.2rem 0 3.6rem;
    }
    
    .about__photo-card {
        max-width: 260px;
    }
    
    .about__photo {
        height: 320px;
    }
}

@media (max-width: 600px) {
    .about__photo-card {
        max-width: 220px;
    }
    
    .about__photo {
        height: 280px;
    }
}
/* ======================
DIFERENCIALES / POR QUÉ ELEGIRNOS
====================== */
.why-us {
    padding: 4rem 0 4.5rem;
    background: radial-gradient(circle at top, #020617 0%, #020617 60%, #020617 100%);
    border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.why-us__inner {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.why-us__header {
    max-width: 640px;
}

.why-us__eyebrow {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #a5b4fc;
    margin-bottom: 0.75rem;
}

.why-us__title {
    font-size: clamp(1.8rem, 2.3vw + 1rem, 2.2rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.why-us__subtitle {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #cbd5f5;
    opacity: 0.9;
}

/* GRID */
.why-us__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.35rem;
}

/* CARD */
.why-card {
    border-radius: 1.3rem;
    padding: 1.25rem 1.1rem 1.1rem;
    background: radial-gradient(circle at top left, #020617, #020617);
    border: 1px solid rgba(148, 163, 184, 0.5);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transform-origin: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.95);
    border-color: rgba(129, 140, 248, 0.9);
}

.why-card__icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: radial-gradient(circle at top left, #4f46e5, #22c55e);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.9);
}

.why-card__title {
    font-size: 0.98rem;
    font-weight: 600;
}

.why-card__text {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #cbd5f5;
}

/* RESPONSIVE WHY-US */
@media (max-width: 1100px) {
    .why-us__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .why-us {
        padding: 3.2rem 0 3.6rem;
    }
    
    .why-us__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .why-us__grid {
        grid-template-columns: minmax(0, 1fr);
    }
}
/* ======================
CONTACTO / CTA FINAL
====================== */
.contact {
    padding: 4rem 0 5rem;
    background: radial-gradient(circle at top, #020617 0%, #020617 60%, #020617 100%);
    border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.contact__inner {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 700px;
}

/* HEADER */
.contact__header {
    text-align: center;
    margin: 0 auto;
}

.contact__title {
    font-size: clamp(1.8rem, 2.3vw + 1rem, 2.3rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.contact__subtitle {
    font-size: 1rem;
    line-height: 1.7;
    color: #cbd5f5;
    margin-bottom: 1.5rem;
}

/* CTA SCROLL BUTTON */
.contact__cta {
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: linear-gradient(135deg, #6366f1, #22c55e);
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    color: #020617;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.contact__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.95);
}

/* FORMULARIO */
.contact-form {
    display: grid;
    gap: 1.2rem;
    padding: 1.8rem 1.5rem;
    border-radius: 1.3rem;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
}

.contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.contact-form__field label {
    font-size: 0.9rem;
    color: #e5e7eb;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border-radius: 0.6rem;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(2, 6, 23, 0.85);
    color: #f3f4f6;
    font-size: 0.95rem;
    resize: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(129, 140, 248, 0.9);
    box-shadow: 0 0 0 2px rgba(129, 140, 248, 0.3);
}

/* BOTÓN SUBMIT */
.contact-form__submit {
    margin-top: 0.4rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: linear-gradient(135deg, #6366f1, #22c55e);
    color: #020617;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.9rem 1.6rem;
    justify-self: flex-start;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.contact-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.95);
}

/* RESPONSIVE */
@media (max-width: 700px) {
    .contact {
        padding: 3rem 0 4rem;
    }
    
    .contact-form {
        padding: 1.4rem 1.2rem;
    }
}
/* ======================
FOOTER GRANDE
====================== */
.footer {
    padding: 4rem 0 2.5rem;
    background: #010512;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.8fr) minmax(0, 0.8fr);
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

/* COL 1 */
.footer__brand {
    max-width: 300px;
}

.footer__logo {
    width: 160px;
    margin-bottom: 1.2rem;
}

.footer__desc {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #cbd5f5;
    margin-bottom: 1rem;
}

.footer__email a {
    color: #a5b4fc;
    font-weight: 600;
    text-decoration: none;
}

.footer__email a:hover {
    text-decoration: underline;
}

/* COL TITLES */
.footer__title {
    font-size: 1rem;
    margin-bottom: 0.9rem;
    font-weight: 600;
}

.footer__title--sub {
    margin-top: 1.5rem;
}

/* LINKS */
.footer__links {
    list-style: none;
    display: grid;
    gap: 0.45rem;
}

.footer__links a {
    color: #cbd5f5;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.18s;
}

.footer__links a:hover {
    color: #a5b4fc;
}

/* SOCIAL */
.footer__social {
    display: flex;
    gap: 0.75rem;
    font-size: 1.4rem;
}

.footer__social a {
    transition: transform 0.2s;
}

.footer__social a:hover {
    transform: translateY(-3px) scale(1.1);
}

/* COPYRIGHT */
.footer__bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    text-align: center;
    color: #94a3b8;
    font-size: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer__inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }
}

@media (max-width: 700px) {
    .footer__inner {
        grid-template-columns: minmax(0, 1fr);
    }
    
    .footer__brand {
        max-width: 100%;
        text-align: center;
    }
    
    .footer__logo {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer__social {
        justify-content: center;
    }
}
/* =========================
   HEADER & NAV
   ========================= */

.sc-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.sc-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

/* Logo */
.sc-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
}

.sc-logo__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 0.75rem;
  background: radial-gradient(circle at top left, #6366f1, #22c55e);
  font-size: 0.9rem;
  font-weight: 700;
  color: #020617;
}

.sc-logo__text {
  font-weight: 600;
  font-size: 1rem;
}

/* Nav base */
.sc-nav {
  display: flex;
  align-items: center;
}

.sc-nav__list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

/* Links */
.sc-nav__link,
.sc-submenu a {
  font-size: 0.9rem;
  font-weight: 400;
  color: #e5e7eb;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.sc-nav__link:hover,
.sc-submenu a:hover {
  color: #a5b4fc;
}

/* CTA button */
.sc-nav__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(129, 140, 248, 0.9);
  background: radial-gradient(circle at top left, #4f46e5, #22c55e);
  color: #0f172a;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.9);
}

.sc-nav__btn:hover {
  filter: brightness(1.05);
}

/* Hamburguesa (móvil) */
.sc-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.9);
  cursor: pointer;
}

.sc-nav__toggle-line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  margin: 0 auto;
}

/* Submenús (desktop) */
.sc-nav__item--has-submenu {
  position: relative;
}

.sc-nav__link--dropdown {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.sc-submenu {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 220px;
  padding: 0.5rem 0.6rem;
  border-radius: 0.85rem;
  background: #020617;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.95);
  list-style: none;
  display: none;
  z-index: 40;
}

.sc-submenu li {
  padding: 0.25rem 0.3rem;
}

.sc-submenu a {
  width: 100%;
}

/* Mostrar submenu en hover (desktop) */
@media (hover: hover) and (pointer: fine) {
  .sc-nav__item--has-submenu:hover > .sc-submenu {
    display: block;
  }
}

/* Estado abierto (también se usa en móvil) */
.sc-nav__item--has-submenu.is-open > .sc-submenu {
  display: block;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 900px) {
  .sc-nav__toggle {
    display: flex;
  }

  .sc-nav {
    position: fixed;
    inset: 60px 1rem auto 1rem;
    border-radius: 1rem;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.5);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.95);
    padding: 0.75rem 0.75rem 0.9rem;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .sc-nav--open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .sc-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
  }

  .sc-nav__item {
    width: 100%;
  }

  .sc-nav__link,
  .sc-nav__link--dropdown {
    width: 100%;
    justify-content: space-between;
    padding: 0.45rem 0.5rem;
    border-radius: 0.6rem;
  }

  .sc-nav__item--cta .sc-nav__btn {
    width: 100%;
    justify-content: center;
  }

  /* Submenús en móvil: se muestran en bloque dentro del menú */
  .sc-submenu {
    position: static;
    margin-top: 0.25rem;
    padding: 0.4rem 0.4rem;
    box-shadow: none;
    background: #020617;
  }

  .sc-submenu li {
    padding: 0.2rem 0.2rem;
  }

  .sc-submenu a {
    font-size: 0.85rem;
    padding: 0.2rem 0.2rem;
  }
}
/* =========================
   TOAST DE CONTACTO
   ========================= */

.contact-toast {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  max-width: 320px;
  padding: 0.75rem 1rem;
  border-radius: 0.9rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #0f172a;
  background: radial-gradient(circle at top left, #4ade80, #a7f3d0);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(22, 163, 74, 0.8);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Estado visible */
.contact-toast--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Responsive: en móvil centrado abajo */
@media (max-width: 640px) {
  .contact-toast {
    left: 1rem;
    right: 1rem;
    max-width: none;
    text-align: center;
  }
}
