/* =========================
   RESET & BASE
========================= */
body {
    margin: 0;
    padding-top: 108px;
    font-family: var(--font-family-base);
    font-size: var(--text-body-md-size);
    line-height: var(--text-body-md-line);
    font-weight: var(--text-body-md-weight);
    background: #FFFFFF;
    color: var(--color-text);
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}


/* =========================
   TIPOGRAFÍA GLOBAL
========================= */
.typo-title {
    font-family: var(--font-family-heading) !important;
    font-size: var(--text-title-size) !important;
    line-height: var(--text-title-line) !important;
    font-weight: var(--text-title-weight) !important;
    letter-spacing: 0 !important;
}

.typo-subtitle {
    font-family: var(--font-family-heading) !important;
    font-size: var(--text-subtitle-size) !important;
    line-height: var(--text-subtitle-line) !important;
    font-weight: var(--text-subtitle-weight) !important;
    letter-spacing: 0 !important;
}

.typo-body {
    font-family: var(--font-family-base) !important;
    font-size: var(--text-body-md-size) !important;
    line-height: var(--text-body-md-line) !important;
    font-weight: var(--text-body-md-weight) !important;
    letter-spacing: 0 !important;
}

.typo-body-bold {
    font-family: var(--font-family-base) !important;
    font-size: var(--text-body-bold-size) !important;
    line-height: var(--text-body-bold-line) !important;
    font-weight: var(--text-body-bold-weight) !important;
    letter-spacing: 0 !important;
}

.typo-body-secondary {
    font-family: var(--font-family-base) !important;
    font-size: var(--text-body-secondary-size) !important;
    line-height: var(--text-body-secondary-line) !important;
    font-weight: var(--text-body-secondary-weight) !important;
    letter-spacing: 0 !important;
}

/* =========================
   CONTROLES BASE
========================= */
.input-base,
input[type="text"],
input[type="email"],
input[type="password"],
select,
textarea {
    font-family: var(--font-family-base);
    font-size: var(--text-body-md-size);
    line-height: var(--text-body-md-line);
    font-weight: var(--text-body-md-weight);
}

.btn,
button,
.site-header__btn,
.buscador__submit {
    font-family: var(--font-family-base);
    font-size: var(--text-body-md-size);
    line-height: var(--text-body-md-line);
    letter-spacing: 0;
}

/* =========================
   BOTONES REUTILIZABLES
========================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family-base);
    font-weight: 600;
    font-size: var(--text-body-sm-size);
    line-height: var(--text-body-sm-line);
    border-radius: var(--btn-radius);
    cursor: pointer;
    transition: var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    width: var(--btn-cta-width);
    height: var(--btn-cta-height);
    padding: var(--btn-cta-padding);
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
}

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

.btn--outline {
    padding: 12px 20px;
    background: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--btn-radius);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
}

/* --- CTA reutilizable (usado en planes, beneficios, etc.) --- */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    background: var(--color-primary);
    color: #ffffff;
    font-family: var(--font-family-base);
    font-weight: 600;
    font-size: var(--text-body-secondary-size);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease;
}

.btn-cta:hover {
    background: var(--color-primary-hover);
    color: #ffffff;
    text-decoration: none;
}


header.site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    background: #000000 !important;
    height: 108px !important;
    display: block !important;
    transition: background 0.3s ease, box-shadow 0.3s ease !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3) !important;
}

header.site-header.site-header--scrolled {
    background: #000000 !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3) !important;
}

header.site-header .site-header__inner {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    max-width: 1440px !important;
    width: 100% !important;
    height: 108px !important;
    margin: 0 auto !important;
    padding: 30px 72px !important;
    gap: 32px !important;
}

/* --- Logo --- */
header.site-header a.site-header__logo {
    display: flex !important;
    align-items: center !important;
    flex: 0 0 auto !important;
    flex-shrink: 0 !important;
    margin-right: 16px !important;
    text-decoration: none !important;
}

header.site-header .site-header__logo-img {
    height: 48px !important;
    width: auto !important;
}

/* --- Nav links --- */
header.site-header nav.site-header__nav {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}
header.site-header nav.site-header__nav > ul,
header.site-header nav.site-header__nav ul.site-header__nav-list {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 16px !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

header.site-header nav.site-header__nav > ul > li,
header.site-header nav.site-header__nav ul.site-header__nav-list > li,
header.site-header nav.site-header__nav li.nav-item {
    flex: 0 0 auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

header.site-header a.site-header__link,
header.site-header nav.site-header__nav a.nav-link {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    font-family: var(--font-family-base) !important;
    font-weight: 400 !important;
    font-size: var(--text-body-md-size) !important;
    line-height: 24px !important;
    letter-spacing: 0 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    opacity: 1 !important;
    transform: none !important;
    transition: opacity 0.2s ease !important;
    padding: 0 2px 8px !important;
}

header.site-header a.site-header__link::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    bottom: -4px !important;
    width: 100% !important;
    height: 2px !important;
    background: #ffffff !important;
    transform: scaleX(0) !important;
    transform-origin: center !important;
    transition: transform 0.2s ease !important;
}
header.site-header a.site-header__link:hover,
header.site-header nav.site-header__nav a.nav-link:hover {
    color: #ffffff !important;
    opacity: 1 !important;
    text-decoration: none !important;
    transform: none !important;
}

header.site-header a.site-header__link.site-header__link--active,
header.site-header nav.site-header__nav a.nav-link.site-header__link--active,
header.site-header nav.site-header__nav li.active > a {
    color: #ffffff !important;
    opacity: 1 !important;
    text-decoration: none !important;
    transform: none !important;
    font-weight: 600 !important;
}

header.site-header a.site-header__link:hover::before {
    transform: scaleX(1) !important;
}

header.site-header a.site-header__link.site-header__link--active::before {
    transform: scaleX(1) !important;
}

/* --- Actions (botones + carrito) --- */
header.site-header .site-header__actions {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 12px !important;
    margin-left: 16px !important;
    flex: 0 0 auto !important;
    flex-shrink: 0 !important;
}

header.site-header a.site-header__btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: var(--font-family-base) !important;
    font-weight: 600 !important;
    font-size: var(--text-body-secondary-size) !important;
    line-height: 24px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    height: 52px !important;
    padding: 0 28px !important;
    transition: all 0.2s ease;
}

header.site-header a.site-header__btn--outline {
    background: rgba(255, 255, 255, 0.18) !important;
    color: #ffffff !important;
    border: none !important;
}

header.site-header a.site-header__btn--outline:hover {
    background: rgba(255, 255, 255, 0.28) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

header.site-header a.site-header__btn--solid {
    background: var(--color-primary) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 0 30px !important;
}

header.site-header a.site-header__btn--solid:hover {
    background: var(--color-primary-hover) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

header.site-header a.site-header__cart {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    width: 44px !important;
    height: 44px !important;
    text-decoration: none !important;
    transition: opacity 0.2s ease;
    background: rgba(255, 255, 255, 0.18) !important;
    border: none !important;
    border-radius: 8px !important;
}

header.site-header a.site-header__cart {
    position: relative !important;
}

header.site-header a.site-header__cart:hover {
    color: #ffffff !important;
    opacity: 0.8;
}

.site-header__cart-badge {
    position: absolute !important;
    top: -4px !important;
    right: -4px !important;
    background: #FF4444 !important;
    color: #FFFFFF !important;
    font-family: var(--font-family-base) !important;
    font-weight: 700 !important;
    font-size: var(--text-body-secondary-size) !important;
    width: 18px !important;
    height: 18px !important;
    border-radius: 50% !important;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1 !important;
}

/* =========================
   EXTENSIONES
========================= */
.extensiones {
    margin-top: 30px;
}

/* =========================
   PLAN CARDS (componente compartido — homepage, planes, nosotros, faqs, seguridad)
   Figma: cards 405×400, radius 16, padding 16
========================= */
.plan-card-link {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
}

.plan-card {
    border-radius: 16px;
    padding: 16px;
    min-height: 400px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.plan-card:hover {
    transform: translateY(-16px) scale(1.06);
    box-shadow: 0 24px 48px rgba(43, 125, 229, 0.3);
}

.plan-card__label {
    display: block;
    font-family: var(--font-family-base);
    font-size: var(--text-body-secondary-size);
    font-weight: 500;
    line-height: 30px;
    color: #666666;
}

.plan-card__name {
    font-family: var(--font-family-base);
    font-size: var(--text-body-md-size);
    font-weight: 700;
    color: #333333;
    margin: 0;
}

.plan-card__price {
    font-family: var(--font-family-base);
    font-size: var(--text-title-size);
    font-weight: 800;
    color: #333333;
    margin: 10px 0;
    line-height: 1.1;
}

.plan-card__price small {
    font-size: var(--text-body-secondary-size);
    font-weight: 400;
    opacity: 0.6;
    margin-left: 2px;
}

.plan-card__duration {
    font-family: var(--font-family-base);
    font-size: var(--text-body-secondary-size);
    font-weight: 400;
    color: #666666;
    margin: 0;
}

/* --- Card destacada (PLUS) --- */
.plan-card--featured {
    background: var(--color-primary);
    transform: scale(1.05);
}

.plan-card--featured:hover {
    transform: scale(1.12) translateY(-16px);
    box-shadow: 0 28px 56px rgba(43, 125, 229, 0.5), 0 0 0 3px rgba(255, 255, 255, 0.4);
}

.plan-card--featured .plan-card__label,
.plan-card--featured .plan-card__name,
.plan-card--featured .plan-card__price,
.plan-card--featured .plan-card__duration {
    color: #ffffff;
}

.plan-card--featured .plan-card__price small {
    color: #ffffff;
    opacity: 0.8;
}


/* =========================
   FOOTER
   Figma: bg negro, 3 columnas (logo | contacto | badge), padding 60px 72px
========================= */
.footer-custom {
    background: #000000;
    color: #ffffff;
    padding: 0;
}

.footer-custom__inner {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 80px 120px;
    gap: 40px;
}

.footer-custom__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.footer-custom__logo-img {
    height: 90px;
    width: auto;
}

.footer-custom__divider {
    width: 1px;
    height: 80px;
    background: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

.footer-custom__contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-custom__phone {
    font-family: var(--font-family-base);
    font-weight: 700;
    font-size: var(--text-body-bold-size);
    line-height: var(--text-body-bold-line);
    color: #ffffff;
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.footer-custom__email {
    font-family: var(--font-family-base);
    font-weight: var(--text-body-md-weight);
    font-size: var(--text-body-md-size);
    line-height: var(--text-body-md-line);
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-custom__phone:hover,
.footer-custom__email:hover {
    color: #ffffff;
    opacity: 0.8;
}

.footer-custom__badge {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: auto;
}

.footer-custom__badge-img {
    height: 110px;
    width: auto;
}

/* =========================
   HAMBURGER BUTTON (hidden on desktop)
========================= */
.site-header__hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.site-header__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* =========================
   RESPONSIVE
========================= */

/* --- Tablet portrait --- */
@media (max-width: 992px) {
    /* Header: hamburger menu */
    .site-header__hamburger {
        display: flex !important;
    }

    header.site-header {
        height: auto !important;
        min-height: 60px !important;
    }

    header.site-header .site-header__inner {
        flex-wrap: wrap !important;
        height: auto !important;
        padding: 16px 24px !important;
    }

    header.site-header nav.site-header__nav {
        display: none !important;
        width: 100% !important;
        order: 3 !important;
        padding: 0 !important;
    }

    /* Bootstrap .nav ul → forzar columna */
    header.site-header nav.site-header__nav ul.site-header__nav-list {
        flex-direction: column !important;
        width: 100% !important;
        gap: 0 !important;
        margin: 0 !important;
        padding: 8px 0 16px !important;
    }

    header.site-header nav.site-header__nav ul.site-header__nav-list li.nav-item {
        width: 100% !important;
    }

    header.site-header nav.site-header__nav a.site-header__link,
    header.site-header nav.site-header__nav a.nav-link {
        display: block !important;
        width: 100% !important;
        padding: 13px 24px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        font-size: var(--text-body-secondary-size) !important;
    }

    header.site-header.site-header--open {
        background: rgba(0, 0, 0, 0.96) !important;
    }

    header.site-header.site-header--open nav.site-header__nav {
        display: block !important;
    }

    header.site-header .site-header__actions {
        margin-left: auto !important;
    }

    header.site-header a.site-header__btn {
        font-size: var(--text-body-secondary-size) !important;
        padding: 0 14px !important;
        height: 36px !important;
    }

    /* Hero Interno */
    .hero-interno {
        height: auto !important;
        min-height: auto !important;
        padding: 160px 20px 80px !important;
    }

    .hero-interno h1 {
        font-size: var(--text-title-size) !important;
    }

    .hero-interno p {
        margin-bottom: 50px !important;
    }


    .planes-section {
        margin-top: 0 !important;
        padding: 40px 0 60px !important;
    }

    .planes-section .row [class*="col"] {
        width: 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }

    .plan-card {
        min-height: 340px;
    }

    .plan-card--featured {
        transform: none;
    }

    .plan-card--featured:hover {
        transform: translateY(-5px);
    }

    /* Footer: stack */
    .footer-custom__inner {
        flex-direction: column;
        gap: 24px;
        text-align: center;
        padding: 40px 30px;
    }

    .footer-custom__divider {
        width: 80px;
        height: 1px;
    }

    .footer-custom__contact {
        align-items: center;
    }
}

/* --- Mobile --- */
@media (max-width: 768px) {
    /* User menu */
    .user-menu__dropdown {
        right: -20px !important;
        width: 200px !important;
    }

    .user-menu__header {
        font-size: var(--text-body-md-size) !important;
        padding: 16px 20px !important;
    }

    .user-menu__item,
    .user-menu__logout-btn {
        font-size: var(--text-body-secondary-size) !important;
        padding: 12px 20px !important;
    }

    /* Header */
    header.site-header .site-header__inner {
        padding: 12px 16px !important;
    }

    header.site-header a.site-header__btn--outline {
        font-size: var(--text-body-secondary-size) !important;
        padding: 0 12px !important;
        height: 34px !important;
    }

    header.site-header a.site-header__btn--solid {
        font-size: var(--text-body-secondary-size) !important;
        padding: 0 12px !important;
        height: 34px !important;
    }


    /* Extensiones */
    .extensiones {
        margin-top: 20px;
    }


    /* Hero Interno (páginas internas) */
    .hero-interno {
        height: auto !important;
        min-height: auto !important;
        padding: 140px 16px 60px !important;
    }

    .hero-interno h1 {
        font-size: var(--text-subtitle-size) !important;
        line-height: 1.1 !important;
    }

    .hero-interno p {
        font-size: var(--text-body-secondary-size) !important;
        margin-bottom: 30px !important;
    }

    .planes-section .row [class*="col"] {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .planes-section .row {
        gap: 20px 0 !important;
    }

    .plan-card {
        min-height: 280px;
    }

    .plan-card__price {
        font-size: var(--text-title-size);
    }

    /* Planes section (internal pages) */
    .planes-section {
        margin-top: 0;
        padding: 40px 0 60px;
    }

    .plan-card--featured {
        transform: none;
    }

    .plan-card--featured:hover {
        transform: translateY(-5px);
    }

    /* Footer */
    .footer-custom__inner {
        padding: 30px 16px;
        gap: 20px;
    }

    .footer-custom__logo-img {
        height: 70px;
    }

    .footer-custom__phone {
        font-size: var(--text-body-secondary-size);
    }

    .footer-custom__email {
        font-size: var(--text-body-secondary-size);
    }

    .footer-custom__badge-img {
        height: 80px;
    }
}

/* --- Small mobile --- */
@media (max-width: 480px) {
    .plan-card__price {
        font-size: var(--text-subtitle-size);
    }

    .hero-interno h1 {
        font-size: var(--text-subtitle-size) !important;
    }

    .hero-interno p {
        font-size: var(--text-body-secondary-size) !important;
    }
}


/* =========================
   HERO INTERNO (páginas internas: planes, etc.)
   Figma: bg #a7c4e5, h1 IBM Plex Sans 700 60px #2B7DE5, p Inter 500 20px #000
========================= */
.hero-interno {
    background: var(--color-hero-bg);
    height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-interno .container {
    max-width: 750px;
    width: 100%;
    padding: 0;
}

.hero-interno h1 {
    font-family: var(--font-family-heading);
    font-weight: var(--text-title-weight);
    font-size: var(--text-title-size);
    line-height: var(--text-title-line);
    color: var(--color-primary);
    margin: 0 0 16px 0;
    letter-spacing: 0;
}

.hero-interno p {
    font-family: var(--font-family-base);
    font-weight: var(--text-body-md-weight);
    font-size: var(--text-body-md-size);
    line-height: var(--text-body-md-line);
    color: #000000;
    margin: 0 0 80px 0;
}

/* =========================
   BENEFICIOS ICONOS
========================= */
.beneficios-iconos {
    padding: 100px 0;
    background: #FFFFFF;
}

.beneficios-iconos .row {
    justify-content: center;
}

.icon-circle {
    width: 160px;
    height: 160px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 32px 0;
    overflow: hidden;
}

.icon-circle img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.beneficios-iconos .col-md-4 {
    text-align: left;
}

.beneficios-iconos h4 {
    font-family: var(--font-family-heading);
    font-size: var(--text-subtitle-size);
    font-weight: var(--text-subtitle-weight);
    line-height: var(--text-subtitle-line);
    color: #000000;
    margin-bottom: 24px;
    letter-spacing: 0;
}

.beneficios-iconos p {
    font-family: var(--font-family-base);
    font-size: var(--text-body-md-size);
    line-height: var(--text-body-md-line);
    font-weight: var(--text-body-md-weight);
    color: #000000;
    margin-bottom: 32px;
}

.btn-primary-large {
    display: inline-block;
    margin-top: 40px;
    padding: 22px 80px;
    background: #FF0000;
    color: #fff;
    border-radius: 16px;
    font-family: var(--font-family-base);
    font-weight: 700;
    font-size: var(--text-body-md-size);
    text-decoration: none;
    transition: background 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
}

.btn-primary-large:hover {
    background: #dd0000;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.35);
}

.btn-primary-large:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.3);
}

/* ============================= */
/* NAV DROPDOWN (Planes submenu) */
/* ============================= */

.site-header__nav .dropdown-toggle::after {
    display: none !important;
}
.site-header__nav .dropdown-menu {
    background: #000000 !important;
    border: none !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25) !important;
    padding: 18px 22px !important;
    min-width: 300px !important;
    margin-top: 8px !important;
    z-index: 2000 !important;
}

.site-header__nav .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0 0 16px 0 !important;
    background: transparent !important;
    white-space: normal !important;
}

.site-header__nav .dropdown-menu .dropdown-item:last-child {
    margin-bottom: 0 !important;
}

.site-header__dropdown-link {
    display: block !important;
    padding: 0 0 16px 0 !important;
    font-family: var(--font-family-base) !important;
    font-weight: var(--text-body-md-weight) !important;
    font-size: var(--text-body-secondary-size) !important;
    line-height: 24px !important;
    color: #FFFFFF !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    transition: background 0.15s ease !important;
    white-space: normal !important;
}

.site-header__dropdown-link:last-child {
    border-bottom: none !important;
}

.site-header__dropdown-link:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #FFFFFF !important;
    text-decoration: none !important;
}

.site-header__dropdown-link.active,
.dropdown-item.active .site-header__dropdown-link {
    font-weight: 700 !important;
    background: rgba(255, 255, 255, 0.08) !important;
    color: #FFFFFF !important;
}

/* ============================= */
/* DOMINIOS ESPECIALIZADOS PAGE  */
/* ============================= */

.hero-dominios {
    background: #FFFFFF !important;
    padding: 160px 0 60px !important;
}

.hero-dominios__title {
    font-family: var(--font-family-heading) !important;
    font-weight: var(--text-title-weight) !important;
    font-size: var(--text-title-size) !important;
    line-height: var(--text-title-line) !important;
    color: var(--color-primary) !important;
    margin: 0 0 16px 0 !important;
    letter-spacing: 0 !important;
}

.hero-dominios__subtitle {
    font-family: var(--font-family-base) !important;
    font-weight: var(--text-body-md-weight) !important;
    font-size: var(--text-body-md-size) !important;
    line-height: 28px !important;
    color: #000000 !important;
    margin: 0 0 40px 0 !important;
}



.plan-card--selected {
    transform: translateY(-28px);
    box-shadow: 0 24px 45px rgba(43, 125, 229, 0.22);
    z-index: 2;
}

.plan-card--featured.plan-card--selected {
    transform: translateY(-28px);
    box-shadow: 0 24px 45px rgba(43, 125, 229, 0.28);
}

.plan-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

@media (max-width: 1365px) {
    header.site-header .site-header__inner {
        padding: 30px 32px !important;
        gap: 20px !important;
    }

    header.site-header a.site-header__logo {
        margin-right: 8px !important;
    }

    header.site-header nav.site-header__nav > ul,
    header.site-header nav.site-header__nav ul.site-header__nav-list {
        gap: 10px !important;
    }

    header.site-header a.site-header__link,
    header.site-header nav.site-header__nav a.nav-link {
        font-size: var(--text-body-secondary-size) !important;
        line-height: 20px !important;
        padding: 0 1px 8px !important;
    }

    header.site-header .site-header__actions {
        margin-left: 8px !important;
        gap: 8px !important;
    }
}
@media (max-width: 1260px) {
    header.site-header .site-header__inner {
        padding: 24px 20px !important;
        gap: 16px !important;
    }

    header.site-header .site-header__logo-img {
        height: 40px !important;
    }

    header.site-header nav.site-header__nav > ul,
    header.site-header nav.site-header__nav ul.site-header__nav-list {
        gap: 8px !important;
    }

    header.site-header a.site-header__link,
    header.site-header nav.site-header__nav a.nav-link {
        font-size: var(--text-body-secondary-size) !important;
        line-height: 18px !important;
        padding: 0 1px 8px !important;
    }

    header.site-header .site-header__actions {
        gap: 6px !important;
        margin-left: 6px !important;
    }
}
@media (max-width: 768px) {
    .hero-dominios {
        padding: 120px 0 40px !important;
    }

    .hero-dominios__title {
        font-size: var(--text-subtitle-size) !important;
        line-height: 38px !important;
    }

    .hero-dominios__subtitle {
        font-size: var(--text-body-secondary-size) !important;
    }
}


/* Responsive */
@media (max-width: 768px) {
    .doc-requerida__title {
        font-size: var(--text-subtitle-size) !important;
        line-height: 36px !important;
    }

    .doc-requerida__action-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 16px !important;
    }

    .doc-requerida__btn {
        width: 100% !important;
    }
}

/* ===========================
   BUSCADOR DOMINIOS (sección final)
   =========================== */
.buscador-dominios {
    padding: 60px 0 80px !important;
    background: #FFFFFF !important;
}

.buscador-dominios__title {
    font-family: var(--font-family-heading) !important;
    font-weight: var(--text-subtitle-weight) !important;
    font-size: var(--text-subtitle-size) !important;
    line-height: var(--text-subtitle-line) !important;
    color: #000000 !important;
    margin: 0 0 30px 0 !important;
}

.doc-requerida__btn {
    display: inline-block;
    min-width: 180px;
    min-height: 48px;
    padding: 0 32px;
    border-radius: 8px;
    font-family: var(--font-family-base);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    border: 1px solid var(--color-primary);
    box-shadow: 0 2px 8px rgba(43, 125, 229, 0.08);
    margin: 12px 8px 0 0;
    cursor: pointer;
}

.doc-requerida__btn--upload {
    background: var(--color-primary);
    color: #fff;
}
.doc-requerida__btn--upload:hover {
    background: var(--color-primary-hover);
    color: #fff;
}

.doc-requerida__btn--download {
    background: #fff;
    color: var(--color-primary);
}
.doc-requerida__btn--download:hover {
    background: #eaf3fd;
    color: var(--color-primary-hover);
}

