.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: 0;
}

.brand img {
    width: 76px;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    flex-wrap: wrap;
}

.site-nav a {
    padding: 10px 12px;
    border-radius: var(--radius);
    color: var(--color-text);
    font-weight: 700;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--color-primary-dark);
    background: #eff9dd;
}

.client-area-link {
    border: 1px solid var(--color-primary);
    background: #f7ffe9;
}

.menu-toggle {
    display: none;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: var(--color-surface);
    padding: 10px 14px;
    color: var(--color-text);
    font-weight: 700;
}

.hero-home {
    padding: 54px 0 60px;
    background:
        radial-gradient(circle at 85% 20%, rgba(134, 201, 0, 0.18), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #f5f8fc 45%, #edf6df 100%);
}

.page-hero {
    padding: 44px 0;
}

.page-hero .container {
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    padding: clamp(28px, 5vw, 58px);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    gap: 42px;
    align-items: center;
}

.hero-copy {
    max-width: 700px;
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--color-primary-dark);
    font-weight: 800;
}

h1 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.05;
    letter-spacing: 0;
}

p {
    margin: 0 0 16px;
    color: var(--color-muted);
    font-size: 1.06rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: var(--radius);
    font-weight: 800;
    border: 1px solid #2c5c00;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
    background: #356a00;
    color: #ffffff !important;
}

.button:not(.ghost):not(.dark):visited,
.button:not(.ghost):not(.dark) span,
.button:not(.ghost):not(.dark) strong,
.button:not(.ghost):not(.dark) svg {
    color: #ffffff !important;
}

.button:hover {
    transform: translateY(-1px);
}

.button.primary {
    border-color: #2c5c00;
    background: #356a00;
    color: #ffffff !important;
}

.button.secondary {
    background: var(--color-dark);
    color: #ffffff !important;
}

.button.secondary.dark {
    background: #ffffff;
    color: var(--color-dark) !important;
}

.button.ghost {
    background: #ffffff;
    border-color: var(--color-line);
    color: var(--color-text) !important;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.trust-row span {
    padding: 9px 12px;
    border: 1px solid var(--color-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--color-muted);
    font-weight: 700;
}

.hero-visual {
    min-height: 470px;
    position: relative;
}

.commerce-device {
    position: relative;
    min-height: 470px;
    border: 1px solid rgba(17, 24, 39, 0.1);
    border-radius: 28px;
    background: linear-gradient(160deg, #101827, #172033 58%, #243047);
    box-shadow: 0 26px 60px rgba(17, 24, 39, 0.22);
    overflow: hidden;
}

.commerce-device::before {
    content: "";
    position: absolute;
    inset: 22px;
    border-radius: 22px;
    background:
        linear-gradient(90deg, rgba(134, 201, 0, 0.18), transparent 52%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 62px);
}

.device-bar,
.product-card,
.metric-card {
    position: absolute;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.device-bar {
    top: 44px;
    left: 46px;
    right: 46px;
    height: 58px;
    background: linear-gradient(90deg, #ffffff, #e8f3d4);
}

.product-card.large {
    top: 136px;
    left: 48px;
    width: 46%;
    height: 205px;
    background:
        linear-gradient(145deg, rgba(134, 201, 0, 0.18), transparent 55%),
        #ffffff;
}

.product-card.small {
    right: 48px;
    bottom: 54px;
    width: 36%;
    height: 150px;
    background:
        linear-gradient(145deg, rgba(11, 107, 255, 0.16), transparent 56%),
        #ffffff;
}

.metric-card {
    right: 48px;
    top: 150px;
    padding: 18px;
    color: var(--color-dark);
    font-weight: 900;
}

.metric-card.accent {
    left: 64px;
    bottom: 48px;
    right: auto;
    top: auto;
    background: var(--color-primary);
}

.section-kicker {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--color-primary-dark);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.feature-card,
.benefit-card,
.service-panel,
.process-step {
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    border-radius: 8px;
    box-shadow: var(--shadow-card);
}

.feature-card,
.benefit-card,
.process-step {
    padding: 24px;
}

.service-panel {
    padding: 30px;
}

.service-panel ul {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 22px 0;
    list-style: none;
}

.service-panel li {
    position: relative;
    padding-left: 22px;
    color: var(--color-muted);
}

.service-panel li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
}

.card-icon,
.process-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 10px;
    margin-bottom: 14px;
    border-radius: 12px;
    background: #eff9dd;
    color: var(--color-primary-dark);
    font-weight: 900;
}

.feature-card h3,
.benefit-card h3,
.service-panel h3,
.process-step h3 {
    margin: 0 0 10px;
}

.feature-card,
.benefit-card,
.service-panel,
.process-step {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card.is-hovered,
.benefit-card.is-hovered,
.service-panel.is-hovered,
.process-step.is-hovered {
    transform: translateY(-3px);
    border-color: rgba(134, 201, 0, 0.45);
    box-shadow: 0 18px 36px rgba(17, 24, 39, 0.12);
}

.final-cta {
    padding: 48px 0;
}

.final-cta-box {
    padding: clamp(30px, 5vw, 58px);
    border-radius: 8px;
    background: linear-gradient(135deg, #111827, #203048);
    color: #ffffff;
}

.final-cta-box p {
    color: #d9e4f6;
    max-width: 760px;
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.footer-social a,
.site-footer a {
    color: #ffffff;
}

.mini-icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #eff9dd;
    color: var(--color-primary-dark);
    font-weight: 900;
}

.mini-badge,
.comparison-card span {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    border-radius: 999px;
    padding: 6px 10px;
    background: #eaf2ff;
    color: var(--color-blue);
    font-weight: 800;
    font-size: 0.9rem;
}

.notice-card,
.comparison-card,
.visual-contact-form {
    border: 1px solid var(--color-line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
    padding: 22px;
}

.notice-card {
    border-left: 5px solid var(--color-blue);
}

.comparison-card h3,
.notice-card h3,
.visual-contact-form h3 {
    margin-top: 0;
}

.text-link {
    display: inline-flex;
    margin-top: 8px;
    color: var(--color-blue);
    font-weight: 800;
}

.final-cta-box.light {
    background: #ffffff;
    color: var(--color-text);
    border: 1px solid var(--color-line);
}

.final-cta-box.light p {
    color: var(--color-muted);
}

.visual-contact-form label {
    display: grid;
    gap: 7px;
    color: var(--color-text);
    font-weight: 800;
}

.visual-contact-form input,
.visual-contact-form select,
.visual-contact-form textarea {
    width: 100%;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    background: #ffffff;
    color: var(--color-text);
    padding: 12px 13px;
    font: inherit;
}

.visual-contact-form textarea {
    resize: vertical;
    min-height: 126px;
}

.check-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--color-muted);
    font-weight: 700;
}

.check-row input {
    width: auto;
    margin-top: 4px;
}

.form-status {
    display: none;
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 8px;
    background: #eef6ff;
    color: #174078;
    font-weight: 700;
}

.form-status.visible {
    display: block;
}

.contact-channel-link {
    color: var(--color-primary-dark);
    font-weight: 800;
    overflow-wrap: anywhere;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.contact-channel-link:hover,
.contact-channel-link:focus-visible {
    color: var(--color-text);
}

/* Banner principal heredado visualmente de la versión WordPress/Elementor. */
.home-slider {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--color-line);
    background:
        radial-gradient(circle at 84% 18%, rgba(134, 201, 0, 0.18), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #f4f7fb 54%, #edf6df 100%);
}

.home-slider-track {
    position: relative;
}

.home-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(24px);
    transition: opacity 420ms ease, transform 420ms ease, visibility 420ms ease;
}

.home-slide.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

.home-slide-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
    gap: clamp(28px, 5vw, 76px);
    align-items: center;
    min-height: clamp(560px, 67vw, 690px);
    padding-top: 46px;
    padding-bottom: 86px;
}

.home-slide-copy {
    max-width: 650px;
    position: relative;
    z-index: 2;
}

.home-slide-copy h1 {
    max-width: 760px;
    font-size: clamp(2.5rem, 5.3vw, 5.2rem);
    line-height: 0.98;
    text-wrap: balance;
}

.home-slide-copy p {
    max-width: 650px;
    font-size: clamp(1.02rem, 1.5vw, 1.24rem);
    line-height: 1.72;
}

.home-slide-media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.home-slide-media img {
    display: block;
    width: 100%;
    max-width: 760px;
    max-height: 570px;
    object-fit: contain;
    filter: drop-shadow(0 28px 34px rgba(15, 23, 42, 0.18));
}

.home-slider-controls {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    pointer-events: none;
}

.slider-arrow,
.slider-dot {
    pointer-events: auto;
}

.slider-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(17, 24, 39, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: var(--color-text);
    box-shadow: var(--shadow-card);
    cursor: pointer;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.slider-arrow span {
    font-size: 2rem;
    line-height: 1;
    margin-top: -3px;
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
    transform: translateY(-1px);
    border-color: var(--color-primary);
    background: #f7ffe9;
}

.slider-dots {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 13px;
    border: 1px solid rgba(17, 24, 39, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-card);
}

.slider-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #b9c2cf;
    cursor: pointer;
    transition: width 180ms ease, border-radius 180ms ease, background 180ms ease;
}

.slider-dot.is-active {
    width: 30px;
    border-radius: 999px;
    background: var(--color-primary);
}

.slider-dot:focus-visible {
    outline: 3px solid rgba(134, 201, 0, 0.34);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .home-slide,
    .slider-arrow,
    .slider-dot {
        transition: none;
    }
}


/* Integración visual de la tienda Mobile e-Commerce en la web principal. */
.store-showcase {
    min-width: 0;
}

.store-browser {
    overflow: hidden;
    border: 1px solid var(--color-line);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.16);
}

.store-browser-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 0 13px;
    border-bottom: 1px solid var(--color-line);
    background: #f4f7fb;
}

.store-browser-bar span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #cbd5e1;
}

.store-browser img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #ffffff;
}

/* Una sola tarjeta general de Mobile e-Commerce en la Home. */
.mec-home-showcase-card {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--color-line);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.11);
}

.mec-home-showcase-image {
    min-width: 0;
    margin: 0;
    padding: 20px;
    background: #f5f8fc;
}

.mec-home-showcase-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    background: #ffffff;
}

.mec-home-showcase-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(28px, 4vw, 52px);
}

.mec-home-showcase-content h2 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 3.15rem);
    line-height: 1.08;
}

.mec-home-showcase-content p {
    max-width: 560px;
}

.mec-home-showcase-content .button {
    margin-top: 12px;
}

/* Planes completos de Mobile e-Commerce: imagen, contenido, precio y detalle. */
.mec-home-plans {
    background: #f5f8fc;
}

.mec-detail-plan-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.mec-detail-plan-grid-home {
    margin-top: 0;
}

.mec-detail-plan-card {
    --mec-detail-accent: #075985;
    --mec-detail-soft: #eaf7ff;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #dce6f2;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(1, 31, 78, 0.11);
}

.mec-detail-plan-card--demo {
    --mec-detail-accent: #075985;
    --mec-detail-soft: #eaf7ff;
}

.mec-detail-plan-card--mensual {
    --mec-detail-accent: #1d4ed8;
    --mec-detail-soft: #eaf2ff;
}

.mec-detail-plan-card--anual {
    --mec-detail-accent: #166534;
    --mec-detail-soft: #eaf9ee;
}

.mec-detail-plan-card--corporativo {
    --mec-detail-accent: #5b21b6;
    --mec-detail-soft: #f3edfc;
}

.mec-detail-plan-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 245px;
    padding: 18px 14px 17px;
    background: var(--mec-detail-accent);
    color: #ffffff;
    text-align: center;
}

.mec-detail-plan-image-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72%;
    max-width: 180px;
    min-height: 122px;
    margin: 0 auto 13px;
    padding: 7px;
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.mec-detail-plan-image-box img {
    display: block;
    width: 100%;
    max-height: 112px;
    object-fit: contain;
}

.mec-detail-plan-head h3 {
    margin: 0 0 7px;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1.13;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
}

.mec-detail-plan-head p {
    max-width: 240px;
    margin: 0;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.35;
}

.mec-detail-plan-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 18px 15px 15px;
    background: #ffffff;
}

.mec-detail-plan-features {
    display: grid;
    flex: 1 1 auto;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mec-detail-plan-features li {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 37px;
    padding: 5px 0;
    color: #475467;
    font-size: 0.82rem;
    line-height: 1.28;
}

.mec-detail-plan-features li span {
    display: flex;
    flex: 0 0 27px;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: var(--mec-detail-soft);
    color: var(--mec-detail-accent);
    font-size: 0.78rem;
    font-weight: 900;
}

.mec-detail-plan-features li strong {
    font-weight: 500;
}

.mec-detail-plan-footer {
    margin-top: 16px;
    padding: 17px 13px 13px;
    border-radius: 12px;
    background: var(--mec-detail-soft);
    text-align: center;
}

.mec-detail-plan-price {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin: 0 0 12px;
    color: #071a3d;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1.2;
}

.mec-detail-plan-buy {
    width: 100%;
    background: var(--mec-detail-accent);
    border-color: var(--mec-detail-accent);
    color: #ffffff;
}

.mec-detail-plan-buy:hover,
.mec-detail-plan-buy:focus-visible {
    background: var(--mec-detail-accent);
    border-color: var(--mec-detail-accent);
    color: #ffffff;
    filter: brightness(0.91);
}




/* Mobile e-Commerce: planes inmediatamente bajo la presentación general. */
.mobile-overview-plan-grid {
    margin-top: 0;
    margin-bottom: 24px;
}

/* Planes de Hosting Web en Inicio. */
.home-hosting-plans {
    background: #ffffff;
}

.home-hosting-heading {
    margin-bottom: 22px;
}

.hosting-plan-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.hosting-plan-card {
    display: flex;
    min-width: 0;
    min-height: 100%;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--color-line);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.10);
}

.hosting-plan-media {
    margin: 0;
    background: #ffffff;
    line-height: 0;
}

.hosting-plan-media img {
    display: block;
    width: 100%;
    height: auto;
}

.hosting-plan-summary {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 16px;
    text-align: center;
}

.hosting-plan-summary h3 {
    margin: 0 0 9px;
    color: var(--color-text);
    font-size: 1.05rem;
    line-height: 1.25;
}

.hosting-plan-price {
    margin: auto 0 0;
    padding: 8px 4px 13px;
    color: var(--color-text);
    font-size: 1.24rem;
    font-weight: 900;
    line-height: 1.2;
}

.hosting-plan-button {
    width: 100%;
}

.card-icon.mec-feature-icon {
    width: 56px;
    min-width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 16px;
}

.mec-feature-icon svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ESCALA DE TÍTULOS: HOME Y MOBILE E-COMMERCE
   Mantiene títulos legibles sin ocupar excesivamente la pantalla. */
.hero-home .hero-copy h1 {
    font-size: clamp(2.65rem, 3.8vw, 3.55rem);
    line-height: 1.08;
    text-wrap: balance;
}

.page-hero.inner-hero .hero-copy h1 {
    font-size: clamp(2.45rem, 3.45vw, 3.35rem);
    line-height: 1.08;
    text-wrap: balance;
}

.mobile-overview-section .section-heading,
.mec-home-plans .section-heading,
#soluciones .section-heading {
    max-width: 980px;
}

.mobile-overview-section .section-heading h2,
.mec-home-plans .section-heading h2,
#soluciones .section-heading h2 {
    font-size: clamp(2.05rem, 2.85vw, 2.8rem);
    line-height: 1.12;
    text-wrap: balance;
}

/* MOBILE E-COMMERCE: COMPARISON, SUPPORT AND LICENSE SUMMARY */
.mec-plan-comparison-section {
    background: #f4f7fb;
}

.mec-plan-comparison-shell {
    padding: 30px;
    border: 1px solid #dfe7f2;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
}

.mec-plan-comparison-heading {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}

.mec-plan-comparison-heading h2 {
    margin: 4px 0 8px;
}

.mec-plan-comparison-heading p {
    max-width: 850px;
    margin: 0;
    color: var(--color-muted);
    line-height: 1.65;
}

.mec-plan-comparison-icon,
.mec-support-icon,
.mec-license-highlight-icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: #eaf2ff;
    color: #0865f5;
}

.mec-plan-comparison-icon svg,
.mec-support-icon svg,
.mec-license-highlight-icon svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mec-plan-comparison-scroll {
    overflow-x: auto;
    border: 1px solid #dfe7f2;
    border-radius: 22px;
    scrollbar-width: thin;
}

.mec-plan-comparison-table {
    width: 100%;
    min-width: 1020px;
    border-collapse: separate;
    border-spacing: 0;
    color: #17233b;
}

.mec-plan-comparison-table th,
.mec-plan-comparison-table td {
    padding: 20px 18px;
    border-right: 1px solid #dfe7f2;
    border-bottom: 1px solid #dfe7f2;
    text-align: left;
    vertical-align: top;
    line-height: 1.55;
}

.mec-plan-comparison-table th:last-child,
.mec-plan-comparison-table td:last-child {
    border-right: 0;
}

.mec-plan-comparison-table tbody tr:last-child th,
.mec-plan-comparison-table tbody tr:last-child td {
    border-bottom: 0;
}

.mec-plan-comparison-table thead th {
    background: #111b31;
    color: #fff;
    font-weight: 800;
}

.mec-plan-comparison-table thead th:first-child {
    border-radius: 20px 0 0 0;
}

.mec-plan-comparison-table thead th:last-child {
    border-radius: 0 20px 0 0;
}

.mec-plan-comparison-table tbody th {
    width: 15%;
    background: #fbfcfe;
    font-weight: 850;
}

.mec-plan-comparison-table td {
    width: 21.25%;
    background: #fff;
}

.mec-plan-comparison-table td.is-duration {
    color: #0865f5;
    font-weight: 850;
}

.mec-support-section {
    background: #fff;
}

.mec-support-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.mec-support-card,
.mec-license-highlight-card {
    padding: 24px;
    border: 1px solid #dfe7f2;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.055);
}

.mec-support-card h3,
.mec-license-highlight-card h3 {
    margin: 18px 0 10px;
    color: #17233b;
    font-size: 1.08rem;
    line-height: 1.35;
}

.mec-support-card p,
.mec-license-highlight-card p {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.65;
}

.mec-license-summary {
    background: #f4f7fb;
}

.mec-license-highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.mec-license-highlight-card:nth-child(1) .mec-license-highlight-icon {
    background: #eaf2ff;
    color: #0865f5;
}

.mec-license-highlight-card:nth-child(2) .mec-license-highlight-icon {
    background: #ebfbf3;
    color: #0a9b68;
}

.mec-license-highlight-card:nth-child(3) .mec-license-highlight-icon {
    background: #fff5e8;
    color: #d97706;
}

.mec-license-highlight-card:nth-child(4) .mec-license-highlight-icon {
    background: #f1ecff;
    color: #6d3bd1;
}

.mec-license-note {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-top: 16px;
    padding: 18px 20px;
    border-left: 4px solid #0865f5;
    border-radius: 14px;
    background: #eef5ff;
}

.mec-license-note span {
    display: inline-flex;
    flex: 0 0 24px;
    color: #0865f5;
}

.mec-license-note svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mec-license-note p {
    margin: 0;
    color: #315082;
    line-height: 1.65;
}


/* ESCALA GLOBAL DEFINITIVA DE TÍTULOS: TODOS LOS MENÚS */
.hero-home .hero-copy h1,
.home-slide-copy h1,
.page-hero.inner-hero h1,
.page-hero.inner-hero .hero-copy h1 {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: clamp(2.35rem, 3.25vw, 3.15rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
    text-wrap: balance;
    overflow-wrap: anywhere;
}

.section-heading h2,
.visual-plans-section .section-heading h2,
.split-layout h2,
.final-cta h2,
.mec-plan-comparison-heading h2 {
    max-width: 100%;
    font-size: clamp(1.95rem, 2.55vw, 2.5rem);
    line-height: 1.12;
    letter-spacing: -0.018em;
    text-wrap: balance;
    overflow-wrap: anywhere;
}

.page-hero.inner-hero .container.narrow,
.visual-plans-section .section-heading,
.section-heading {
    width: 100%;
}


/* RITMO VERTICAL GLOBAL COMPACTO: TODAS LAS PÁGINAS */
.site-main > section {
    margin-top: 0;
    margin-bottom: 0;
}

.site-main > .section + .section {
    border-top: 0;
}

.page-hero .container {
    padding-top: clamp(26px, 3.6vw, 44px);
    padding-bottom: clamp(26px, 3.6vw, 44px);
}

.section-heading {
    margin-bottom: 24px;
}

.mec-plan-comparison-section,
.mec-support-section,
.mec-license-summary {
    margin: 0;
}

.mec-support-grid,
.mec-license-highlight-grid,
.comparison-grid,
.process-grid,
.feature-grid,
.feature-grid-wide,
.benefits-grid,
.service-panels {
    margin-top: 0;
    margin-bottom: 0;
}

/* Formulario funcional de contacto FullTopWeb. */
.contact-hp {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.visual-contact-form .form-status {
    margin: 0 0 18px;
}

.form-status.is-success {
    border: 1px solid #b9e28a;
    background: #eff9dd;
    color: #315f00;
}

.form-status.is-error {
    border: 1px solid #f1b5b5;
    background: #fff1f1;
    color: #8a1f1f;
}

.form-status.is-error strong {
    display: block;
    margin-bottom: 7px;
}

.form-status.is-error ul {
    margin: 0;
    padding-left: 20px;
}

.form-status.is-error li + li {
    margin-top: 4px;
}

.visual-contact-form input:focus,
.visual-contact-form select:focus,
.visual-contact-form textarea:focus {
    border-color: var(--color-primary-dark);
    outline: 3px solid rgba(134, 201, 0, 0.16);
}

.visual-contact-form .button[type="submit"] {
    margin-top: 18px;
}


/* =========================================================
   Menú Información y sistema inicial de métodos de pago
   ========================================================= */
.nav-info-menu {
    position: relative;
    flex: 0 0 auto;
}

.nav-info-menu > summary {
    min-height: 42px;
    padding: 10px 12px;
    border-radius: var(--radius);
    color: var(--color-text);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.nav-info-menu > summary::-webkit-details-marker {
    display: none;
}

.nav-info-menu > summary::marker {
    display: none;
}

.nav-info-menu > summary:hover,
.nav-info-menu > summary.active,
.nav-info-menu[open] > summary {
    color: var(--color-primary-dark);
    background: #eff9dd;
}

.nav-info-chevron {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    transition: transform 160ms ease;
}

.nav-info-menu[open] .nav-info-chevron {
    transform: rotate(180deg);
}

.nav-info-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 300px;
    padding: 10px;
    border: 1px solid var(--color-line);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.16);
    z-index: 1250;
}

.site-nav .nav-info-item {
    width: 100%;
    min-height: 72px;
    padding: 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--color-text);
}

.site-nav .nav-info-item + .nav-info-item {
    margin-top: 6px;
}

.site-nav .nav-info-item:hover,
.site-nav .nav-info-item:focus-visible,
.site-nav .nav-info-item.active {
    background: #f3f9e7;
    color: var(--color-primary-dark);
    outline: none;
}

.nav-info-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: #eff9dd;
    color: var(--color-primary-dark);
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}

.nav-info-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.nav-info-copy {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.nav-info-copy strong {
    font-size: 0.94rem;
    line-height: 1.15;
}

.nav-info-copy small {
    color: var(--color-muted);
    font-size: 0.73rem;
    line-height: 1.35;
    white-space: normal;
}

.payment-system-heading {
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    gap: 28px;
    align-items: end;
}

.payment-system-heading h2 {
    margin: 0 0 10px;
}

.payment-country-form {
    padding: 18px;
    border: 1px solid var(--color-line);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 8px;
}

.payment-country-form label {
    color: var(--color-text);
    font-weight: 800;
}

.payment-country-form select {
    width: 100%;
    min-height: 46px;
    padding: 10px 42px 10px 12px;
    border: 1px solid #cfd9e8;
    border-radius: 12px;
    background: #ffffff;
    color: var(--color-text);
    font: inherit;
}

.payment-country-form small {
    color: var(--color-muted);
    line-height: 1.4;
}

.payment-country-button {
    margin-top: 4px;
}

.payment-method-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.payment-method-panel {
    padding: 22px;
    border: 1px solid var(--color-line);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.payment-panel-header {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.payment-panel-header h3,
.payment-method-card h4 {
    margin: 0 0 6px;
}

.payment-panel-header p,
.payment-method-card p,
.payment-notice p {
    margin: 0;
}

.payment-panel-icon,
.payment-method-card-icon {
    border-radius: 14px;
    background: #eff9dd;
    color: var(--color-primary-dark);
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}

.payment-panel-icon {
    width: 52px;
    height: 52px;
}

.payment-method-card-icon {
    width: 44px;
    height: 44px;
}

.payment-panel-icon svg {
    width: 27px;
    height: 27px;
    fill: currentColor;
}

.payment-method-card-icon svg {
    width: 23px;
    height: 23px;
    fill: currentColor;
}

.payment-method-stack {
    display: grid;
    gap: 12px;
}

.payment-method-card {
    min-height: 126px;
    padding: 17px;
    border: 1px solid #dce6f3;
    border-radius: 16px;
    background: #f9fbfe;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.payment-method-card.is-setup {
    min-height: 264px;
    align-items: center;
}

.payment-status {
    margin-bottom: 7px;
    padding: 5px 9px;
    border-radius: 999px;
    background: #eaf2ff;
    color: #0b58b0;
    display: inline-flex;
    font-size: 0.74rem;
    font-weight: 800;
}

.payment-notice {
    margin-top: 20px;
    padding: 16px 18px;
    border-left: 4px solid var(--color-primary);
    border-radius: 14px;
    background: #f4fae9;
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.payment-notice-icon {
    width: 24px;
    height: 24px;
    color: var(--color-primary-dark);
    flex: 0 0 auto;
}

.payment-notice-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* =========================================================
   Iconografía universal para tarjetas informativas
   Sustituye las iniciales por SVG, con el mismo tratamiento
   visual aprobado para las tarjetas de Mobile e-Commerce.
   ========================================================= */
.card-icon.ftw-card-icon {
    width: 56px;
    min-width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 16px;
}

.ftw-card-icon svg {
    width: 29px;
    height: 29px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 560px) {
    .card-icon.ftw-card-icon {
        width: 50px;
        min-width: 50px;
        height: 50px;
        border-radius: 14px;
    }

    .ftw-card-icon svg {
        width: 26px;
        height: 26px;
    }
}

/* FULLTOPWEB COLOR ICONS V2
   Iconografía colorida inspirada en los menús de Mobile e-Commerce. */
.ftw-emoji-icon {
    display: inline-flex;
    width: 1em;
    height: 1em;
    align-items: center;
    justify-content: center;
    font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    filter: drop-shadow(0 2px 2px rgba(15, 23, 42, 0.14));
}

.card-icon.ftw-card-icon,
.card-icon.mec-feature-icon,
.mec-plan-comparison-icon,
.mec-support-icon,
.mec-license-highlight-icon,
.nav-info-icon,
.payment-panel-icon,
.payment-method-card-icon {
    border: 1px solid rgba(15, 23, 42, 0.07);
    background: linear-gradient(145deg, #ffffff, #f4f8ff);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
    color: inherit;
}

.feature-card:nth-child(6n + 1) .card-icon,
.benefit-card:nth-child(6n + 1) .card-icon,
.service-panel:nth-child(6n + 1) .card-icon,
.mec-support-card:nth-child(5n + 1) .mec-support-icon,
.mec-license-highlight-card:nth-child(4n + 1) .mec-license-highlight-icon {
    background: linear-gradient(145deg, #fff7e8, #ffffff);
}

.feature-card:nth-child(6n + 2) .card-icon,
.benefit-card:nth-child(6n + 2) .card-icon,
.service-panel:nth-child(6n + 2) .card-icon,
.mec-support-card:nth-child(5n + 2) .mec-support-icon,
.mec-license-highlight-card:nth-child(4n + 2) .mec-license-highlight-icon {
    background: linear-gradient(145deg, #eaf8ff, #ffffff);
}

.feature-card:nth-child(6n + 3) .card-icon,
.benefit-card:nth-child(6n + 3) .card-icon,
.service-panel:nth-child(6n + 3) .card-icon,
.mec-support-card:nth-child(5n + 3) .mec-support-icon,
.mec-license-highlight-card:nth-child(4n + 3) .mec-license-highlight-icon {
    background: linear-gradient(145deg, #effbea, #ffffff);
}

.feature-card:nth-child(6n + 4) .card-icon,
.benefit-card:nth-child(6n + 4) .card-icon,
.service-panel:nth-child(6n + 4) .card-icon,
.mec-support-card:nth-child(5n + 4) .mec-support-icon,
.mec-license-highlight-card:nth-child(4n + 4) .mec-license-highlight-icon {
    background: linear-gradient(145deg, #f5edff, #ffffff);
}

.feature-card:nth-child(6n + 5) .card-icon,
.benefit-card:nth-child(6n + 5) .card-icon,
.service-panel:nth-child(6n + 5) .card-icon,
.mec-support-card:nth-child(5n + 5) .mec-support-icon {
    background: linear-gradient(145deg, #fff0f2, #ffffff);
}

.feature-card:nth-child(6n) .card-icon,
.benefit-card:nth-child(6n) .card-icon,
.service-panel:nth-child(6n) .card-icon {
    background: linear-gradient(145deg, #eef2ff, #ffffff);
}

.card-icon.ftw-card-icon .ftw-emoji-icon,
.card-icon.mec-feature-icon .ftw-emoji-icon,
.mec-plan-comparison-icon .ftw-emoji-icon,
.mec-support-icon .ftw-emoji-icon,
.mec-license-highlight-icon .ftw-emoji-icon {
    font-size: 1.75rem;
}

.nav-info-icon .ftw-emoji-icon {
    font-size: 1.55rem;
}

.payment-panel-icon .ftw-emoji-icon {
    font-size: 1.7rem;
}

.payment-method-card-icon .ftw-emoji-icon {
    font-size: 1.45rem;
}

.payment-notice-icon .ftw-emoji-icon {
    font-size: 1.25rem;
    filter: none;
}

.contact-layout .stack-list article h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-inline-icon {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 10px;
    background: linear-gradient(145deg, #ffffff, #eef5ff);
    font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
    font-size: 1.25rem;
    line-height: 1;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.07);
}

@media (max-width: 760px) {
    .ftw-emoji-icon {
        font-size: 1.5rem;
    }

    .card-icon.ftw-card-icon .ftw-emoji-icon,
    .card-icon.mec-feature-icon .ftw-emoji-icon,
    .mec-plan-comparison-icon .ftw-emoji-icon,
    .mec-support-icon .ftw-emoji-icon,
    .mec-license-highlight-icon .ftw-emoji-icon {
        font-size: 1.55rem;
    }
}



/* Tarjetas de Desarrollo Web: misma estructura visual de Hosting y Mobile e-Commerce. */
.home-web-plans {
    background: #ffffff;
}

.home-web-heading {
    margin-bottom: 22px;
}

.web-plan-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.web-plan-card {
    display: flex;
    min-width: 0;
    min-height: 100%;
    flex-direction: column;
    overflow: hidden;
    scroll-margin-top: 110px;
    border: 1px solid var(--color-line);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.10);
}

.web-plan-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 6 / 7;
    margin: 0;
    background: #ffffff;
    line-height: 0;
}

.web-plan-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.web-plan-summary {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 14px;
    text-align: center;
    background: #ffffff;
}

.web-plan-summary h3 {
    min-height: 2.55em;
    margin: 0 0 8px;
    color: #10233f;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.25;
}

.web-plan-price {
    display: flex;
    min-height: 46px;
    margin: 0 0 10px;
    align-items: center;
    justify-content: center;
    color: #10233f;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.15;
}

.web-plan-price-pending {
    visibility: hidden;
}

.web-plan-summary .button {
    width: 100%;
    min-height: 44px;
    margin-top: auto;
    padding: 9px 8px;
    text-align: center;
}

.web-plan-details-button,
.web-plan-buy-button {
    border: 1px solid #2c5c00;
    background: #356a00;
    color: #ffffff;
}

.web-plan-details-button:hover,
.web-plan-details-button:focus-visible,
.web-plan-buy-button:not(.is-disabled):hover,
.web-plan-buy-button:not(.is-disabled):focus-visible {
    border-color: #244c00;
    background: #2c5c00;
    color: #ffffff;
}

.web-plan-buy-button.is-disabled {
    cursor: not-allowed;
    opacity: 0.55;
    pointer-events: none;
}

/* AJUSTE DEFINITIVO: BOTÓN CLIENTES MÁS PROPORCIONADO EN PC */
@media (min-width: 901px) {
    .site-nav .client-area-link,
    .client-area-link {
        width: auto !important;
        min-width: 220px !important;
        min-height: 64px !important;
        padding: 10px 24px !important;
        border-radius: 32px !important;
        gap: 14px !important;
    }

    .client-area-link strong,
    .client-area-link .client-area-title {
        font-size: 1.35rem !important;
        line-height: 1.05 !important;
    }

    .client-area-link small,
    .client-area-link .client-area-subtitle {
        font-size: 0.78rem !important;
        line-height: 1.1 !important;
    }

    .client-area-link svg,
    .client-area-link .client-area-chevron {
        width: 18px !important;
        height: 18px !important;
        flex: 0 0 18px !important;
    }
}

/* =========================================================
   CONTRASTE GLOBAL DE BOTONES
   Los botones sólidos conservan letras blancas y fondos AA.
   Los botones blancos/ghost mantienen texto oscuro.
   ========================================================= */
html body .button:not(.ghost):not(.secondary):not(.dark):not(.home-promoter-join):not(.mec-promoter-join):not(.home-promoter-access):not(.mec-promoter-access):not(.promoter-secondary):not(.mec-detail-plan-buy):not(.web-plan-details-button):not(.web-plan-buy-button) {
    border-color: #2c5c00 !important;
    background: #356a00 !important;
    color: #ffffff !important;
}

html body .button:not(.ghost):not(.secondary):not(.dark):not(.home-promoter-join):not(.mec-promoter-join):not(.home-promoter-access):not(.mec-promoter-access):not(.promoter-secondary):not(.mec-detail-plan-buy):not(.web-plan-details-button):not(.web-plan-buy-button):hover,
html body .button:not(.ghost):not(.secondary):not(.dark):not(.home-promoter-join):not(.mec-promoter-join):not(.home-promoter-access):not(.mec-promoter-access):not(.promoter-secondary):not(.mec-detail-plan-buy):not(.web-plan-details-button):not(.web-plan-buy-button):focus-visible {
    border-color: #244c00 !important;
    background: #2c5c00 !important;
    color: #ffffff !important;
}

html body .button:not(.ghost):not(.dark) span,
html body .button:not(.ghost):not(.dark) strong,
html body .button:not(.ghost):not(.dark) svg {
    color: #ffffff !important;
}

html body .button.secondary {
    color: #ffffff !important;
}

html body .button.secondary.dark,
html body .button.ghost {
    color: var(--color-dark) !important;
}

html body .button.secondary.dark span,
html body .button.secondary.dark strong,
html body .button.secondary.dark svg,
html body .button.ghost span,
html body .button.ghost strong,
html body .button.ghost svg {
    color: var(--color-dark) !important;
}

html body .home-promoter-join,
html body .mec-promoter-join {
    border-color: #064b78 !important;
    background: #075985 !important;
    color: #ffffff !important;
}

html body .home-promoter-join:hover,
html body .home-promoter-join:focus-visible,
html body .mec-promoter-join:hover,
html body .mec-promoter-join:focus-visible {
    border-color: #043b5f !important;
    background: #064b78 !important;
}

html body .home-promoter-access,
html body .mec-promoter-access {
    border-color: #7c2d12 !important;
    background: #9a3412 !important;
    color: #ffffff !important;
}

html body .home-promoter-access:hover,
html body .home-promoter-access:focus-visible,
html body .mec-promoter-access:hover,
html body .mec-promoter-access:focus-visible {
    border-color: #65230e !important;
    background: #7c2d12 !important;
}

html body .mec-detail-plan-card--demo .button.mec-detail-plan-buy {
    border-color: #064b78 !important;
    background: #075985 !important;
}

html body .mec-detail-plan-card--mensual .button.mec-detail-plan-buy {
    border-color: #1e40af !important;
    background: #1d4ed8 !important;
}

html body .mec-detail-plan-card--anual .button.mec-detail-plan-buy {
    border-color: #2c5c00 !important;
    background: #356a00 !important;
}

html body .mec-detail-plan-card--corporativo .button.mec-detail-plan-buy {
    border-color: #4c1d95 !important;
    background: #5b21b6 !important;
}

html body .button.web-plan-details-button,
html body .button.web-plan-buy-button {
    border-color: #2c5c00 !important;
    background: #356a00 !important;
    color: #ffffff !important;
}

html body .button.web-plan-details-button:hover,
html body .button.web-plan-details-button:focus-visible,
html body .button.web-plan-buy-button:not(.is-disabled):hover,
html body .button.web-plan-buy-button:not(.is-disabled):focus-visible {
    border-color: #244c00 !important;
    background: #2c5c00 !important;
}

/* =========================================================
   FULLTOPWEB — NARANJA OFICIAL DE ACCIONES COMERCIALES
   Referencia visual aprobada: botón "DESCARGAR MI DEMO".
   Alcance deliberadamente limitado a:
   1) Solicitar/Pedir información en Hosting de Inicio.
   2) Ver opción financiada en Desarrollo Web.
   3) Ya soy promotor / acceso al panel en Programa Promotores.
   ========================================================= */
html body #planes-hosting-web .hosting-home-showcase-content .hero-actions .button.secondary,
html body .ftw-web-financing-section .ftw-web-financing-option .button.secondary,
html body .promoter-page .promoter-actions .button.promoter-secondary {
    border-color: #f05a00 !important;
    background: linear-gradient(180deg, #fe7900 0%, #f05a00 100%) !important;
    color: #ffffff !important;
    outline: none !important;
    box-shadow: none !important;
}

html body #planes-hosting-web .hosting-home-showcase-content .hero-actions .button.secondary span,
html body #planes-hosting-web .hosting-home-showcase-content .hero-actions .button.secondary strong,
html body #planes-hosting-web .hosting-home-showcase-content .hero-actions .button.secondary svg,
html body .ftw-web-financing-section .ftw-web-financing-option .button.secondary span,
html body .ftw-web-financing-section .ftw-web-financing-option .button.secondary strong,
html body .ftw-web-financing-section .ftw-web-financing-option .button.secondary svg,
html body .promoter-page .promoter-actions .button.promoter-secondary span,
html body .promoter-page .promoter-actions .button.promoter-secondary strong,
html body .promoter-page .promoter-actions .button.promoter-secondary svg {
    color: #ffffff !important;
    stroke: currentColor;
}

html body #planes-hosting-web .hosting-home-showcase-content .hero-actions .button.secondary:hover,
html body #planes-hosting-web .hosting-home-showcase-content .hero-actions .button.secondary:focus-visible,
html body .ftw-web-financing-section .ftw-web-financing-option .button.secondary:hover,
html body .ftw-web-financing-section .ftw-web-financing-option .button.secondary:focus-visible,
html body .promoter-page .promoter-actions .button.promoter-secondary:hover,
html body .promoter-page .promoter-actions .button.promoter-secondary:focus-visible {
    border-color: #d94c00 !important;
    background: linear-gradient(180deg, #f06b00 0%, #d94c00 100%) !important;
    color: #ffffff !important;
    outline: none !important;
    box-shadow: none !important;
}

/* =========================================================
   AJUSTE ÚNICO — "YA SOY PROMOTOR" SIN BORDE/AUREOLA AZUL
   Conserva fondo naranja + texto/icono blancos.
   Se elimina cualquier borde, outline o halo en todos los estados.
   ========================================================= */
html body div.promoter-page div.promoter-actions a.button.promoter-secondary,
html body div.promoter-page div.promoter-actions a.button.promoter-secondary:link,
html body div.promoter-page div.promoter-actions a.button.promoter-secondary:visited,
html body div.promoter-page div.promoter-actions a.button.promoter-secondary:hover,
html body div.promoter-page div.promoter-actions a.button.promoter-secondary:focus,
html body div.promoter-page div.promoter-actions a.button.promoter-secondary:focus-visible,
html body div.promoter-page div.promoter-actions a.button.promoter-secondary:active {
    border: 2px solid transparent !important;
    outline: 0 !important;
    outline-color: transparent !important;
    outline-offset: 0 !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    background: linear-gradient(180deg, #fe7900 0%, #f05a00 100%) !important;
    color: #ffffff !important;
    -webkit-tap-highlight-color: transparent;
}

html body div.promoter-page div.promoter-actions a.button.promoter-secondary span,
html body div.promoter-page div.promoter-actions a.button.promoter-secondary strong,
html body div.promoter-page div.promoter-actions a.button.promoter-secondary svg {
    color: #ffffff !important;
    stroke: currentColor !important;
}
