/* ===============================
   HERO PRINCIPAL - INDEX
================================ */

.hero-main {
    position: relative;
    background: linear-gradient(
        135deg,
        #000a34 0%,
        #0b1a5e 45%,
        #000a34 100%
    );
    padding: 0;
    overflow: hidden;
    color: #ffffff;
}

/* Overlay sutil */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 20% 20%,
        rgba(255,255,255,0.08),
        transparent 60%
    );
    pointer-events: none;
}

/* CONTENEDOR */
.hero-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

/* BADGE */
.hero-badge {
    display: inline-block;
    background: rgba(250,188,9,0.15);
    color: #fabc09;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 22px;
}

/* TITULO */
.hero-content h1 {
    font-size: clamp(36px, 4.5vw, 58px);
    line-height: 1.1;
    margin-bottom: 22px;
    font-weight: 800;
}

.hero-content h1 strong {
    display: block;
    font-weight: 800;
}

.hero-content h1 span {
    color: #fabc09;
}

/* TEXTO */
.hero-content p {
    max-width: 560px;
    font-size: 18px;
    line-height: 1.7;
    color: #e5e7eb;
    margin-bottom: 40px;
}

/* BOTONES */
.hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: #fabc09;
    color: #000a34;
    padding: 14px 34px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
    font-size: 1.4rem;
}

.btn-hero-primary:hover {
    background: #ffd54f;
}

.btn-hero-secondary {
    border: 2px solid #fabc09;
    color: #fabc09;
    padding: 14px 34px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
    font-size: 1.4rem;
}

.btn-hero-secondary:hover {
    background: rgba(250,188,9,.15);
}

/* IMAGEN */
.hero-visual img {
    width: 100%;
    max-width: 520px;
    border-radius: 24px;
    box-shadow: 0 40px 90px rgba(0,0,0,.45);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual img {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-main {
        padding: 110px 0;
    }
}
/* ===============================
   SERVICIOS PRINCIPALES
================================ */

.main-services {
    background: #f8fafc;
    padding: 110px 20px;
}

.main-services .section-subtitle {
    max-width: 760px;
    margin: 0 auto 70px;
    text-align: center;
    font-size: 18px;
    color: #475569;
}

/* GRID */
.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* CARD */
.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0,0,0,.12);
}

/* DESTACADO */
.service-card.highlight {
    border: 2px solid #fabc09;
}

/* TEXTO */
.service-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: #0f172a;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 22px;
}

/* LINK */
.service-card a {
    align-self: flex-start;
    font-weight: 600;
    color: #000a34;
    text-decoration: none;
    position: relative;
    font-size: 1.3rem;
}

.service-card a::after {
    content: "→";
    margin-left: 6px;
    transition: margin-left .3s ease;
}

.service-card a:hover::after {
    margin-left: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .main-services {
        padding: 90px 20px;
    }
}
/* ===============================
   HOSTING NVMe DESTACADO
================================ */

.featured-nvme {
    background: linear-gradient(
        135deg,
        #300000 0%,
        #a50606 50%,
        #000000 100%
    );
    color: #ffffff;
    padding: 120px 20px;
    overflow: hidden;
}

/* GRID */
.nvme-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* CONTENIDO */
.nvme-badge {
    display: inline-block;
    background: rgba(250, 188, 9, 0.15);
    color: #fabc09;
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 600;
    margin-bottom: 18px;
}

.nvme-content h2 {
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.2;
    margin-bottom: 20px;
}

.nvme-content h2 span {
    color: #fabc09;
}

.nvme-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #e5e7eb;
    margin-bottom: 28px;
}

/* LISTA */
.nvme-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}

.nvme-features li {
    font-size: 16px;
    margin-bottom: 12px;
    color: #f1f5f9;
}

/* BOTONES */
.nvme-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* VISUAL */
.nvme-visual {
    display: flex;
    justify-content: center;
}

.nvme-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    backdrop-filter: blur(6px);
    box-shadow: 0 30px 60px rgba(0,0,0,.35);
    max-width: 360px;
}

.nvme-label {
    display: inline-block;
    background: #fabc09;
    color: #000a34;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.nvme-card h3 {
    font-size: 24px;
    margin-bottom: 14px;
}

.nvme-card p {
    font-size: 15px;
    color: #e5e7eb;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .nvme-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .nvme-actions {
        justify-content: center;
    }
}
/* ===============================
   SERVICIOS PRINCIPALES
================================ */

.main-services {
    background: #f9fafb;
    padding: 120px 20px;
}

.section-title {
    text-align: center;
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 14px;
}

.section-title span {
    color: #fabc09;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 18px;
    color: #555;
}

/* GRID */
.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* CARD */
.service-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 32px;
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
    position: relative;
    transition: transform .3s ease, box-shadow .3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0,0,0,.12);
}

/* RECOMENDADO */
.service-card.recommended {
    border: 2px solid #fabc09;
}

.service-badge {
    position: absolute;
    top: -14px;
    right: 24px;
    background: #fabc09;
    color: #000a34;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 999px;
}

/* TEXTOS */
.service-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
}

.service-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 18px;
}

.service-price {
    font-size: 16px;
    margin-bottom: 18px;
}

.service-price strong {
    font-size: 22px;
    color: #000a34;
}

/* FEATURES */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.service-features li {
    font-size: 14px;
    margin-bottom: 10px;
    color: #333;
}

/* BOTONES */
.btn-service {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 14px;
    border-radius: 999px;
    border: 2px solid #000a34;
    color: #000a34;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease;
}

.btn-service:hover {
    background: #000a34;
    color: #ffffff;
}

.btn-service.primary {
    background: #000a34;
    color: #ffffff;
    border-color: #000a34;
}

.btn-service.primary:hover {
    background: #fabc09;
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .main-services {
        padding: 90px 16px;
    }
}
/* ===============================
   POR QUÉ ELEGIR VANGUARDIA DIGITAL
================================ */

.why-vanguardia {
    background: #ffffff;
    padding: 120px 20px;
}

.why-vanguardia .section-title {
    text-align: center;
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 14px;
}

.why-vanguardia .section-title span {
    color: #fabc09;
}

.why-vanguardia .section-subtitle {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

/* GRID */
.why-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* CARD */
.why-card {
    background: #f9fafb;
    border-radius: 18px;
    padding: 40px 30px;
    text-align: left;
    box-shadow: 0 16px 36px rgba(0,0,0,.06);
    transition: transform .3s ease, box-shadow .3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(0,0,0,.12);
}

/* ICON */
.why-icon {
    font-size: 36px;
    margin-bottom: 18px;
}

/* TEXTOS */
.why-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #000a34;
}

.why-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .why-vanguardia {
        padding: 90px 16px;
    }

    .why-vanguardia .section-subtitle {
        margin-bottom: 50px;
    }
}