/* ============================
        General Styles
============================ */
body {
    font-family: "colfax-web", sans-serif;
    color: white;
    background-color: #03030d;
}

a {
    text-decoration: none !important; /* Sin subrayado */
    color: inherit !important; /* Mantiene el color del elemento padre */
    opacity: 1; /* Opacidad completa en estado normal */
    transition: opacity 0.3s ease; /* Transición suave */
}

a:hover {
    opacity: 0.8; /* Baja opacidad en hover */
}
/* ============================
        Header Styles
============================ */
#main-header {
    background: transparent;
    position: absolute; /* Superpuesto sobre el hero */
    width: 100%; /* Ocupa todo el ancho */
    z-index: 10;
    transition: background 0.3s ease-in-out;
}

#main-header.sticky {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.597), transparent);
}

/* ============================
        Section Styles
============================ */
section {
    padding: 5% 0 !important; /* Aseguramos que el padding siempre se aplique */
}

/* ============================
        Hero Section Styles
============================ */
.hero, .hero-2 {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr); /* Divide en 12 columnas */
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    align-items: center; /* Alineación vertical */
    justify-content: flex-start; /* Alineación horizontal */
}

.hero {
    background: url('../images/cover-web.jpg') no-repeat center center/cover;
}

.hero-2 {
    background: url('../images/cover-web-2.jpg') no-repeat center center/cover;
}

.hero .content, .hero-2 .content {
    grid-column: 1 / span 6; /* Ocupa el 50% del ancho (6 de 12 columnas) */
    color: white;
}

@media (min-width: 992px) {
    .hero .content, .hero-2 .content {
        padding-left: 95px; /* Añadir espaciado a la izquierda en desktop */
    }
}

.hero h1, .hero-2 h1 {
    font-family: "colfax-web", sans-serif;
    font-weight: 700;
    font-size: 72px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero h2, .hero-2 h2 {
    font-family: "colfax-web", sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Botones en Hero */
.hero__cta {
    max-width: 400px; /* Limita el ancho máximo */
}

.button-container {
    text-align: center;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 72px;
    width: 400px;

}

.button-container a {
    color: white;
    background: linear-gradient(-225deg, #0037c5, #0064ff);
    text-transform: uppercase;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.button-container a:hover {
    background: linear-gradient(225deg, #0064ff, #0037c5);
    color: white;
}

.button-container {
    text-align: center;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 72px;
    width: 400px;
}

.button-container a {
    color: white;
    background: linear-gradient(-225deg, #0037c5, #0064ff);
    text-transform: uppercase;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.button-container a:hover {
    background: linear-gradient(225deg, #0064ff, #0037c5);
    color: white;
}


/* Botón terciario */
.hero__cta .terciary a {
    color: white;
    background: transparent;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    height: 72px;
    width: 400px;
    border: 1px solid hsla(0, 0%, 98%, .5);
}

.hero__cta .terciary a:hover {
    background: white;
    color: black !important;
}


/* Botones en general */
.button-container-button {
    background: linear-gradient(-225deg, #0037c5, #0064ff);
    text-align: center;
    margin:  10px 5px;
    padding: 4px 50px;
    display: inline-block;
    color: white;
    align-items: center;
    justify-content: center;
    height: 72px;
    border: none !important;
    transition: all 1s ease-in-out;
}
.button-container-button:hover {
    background: linear-gradient(225deg, #0064ff, #0037c5);
    color: white !important;
    transition: all 1s ease-in-out;
}


.button-terciary {
    color: white;
    background: transparent;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    padding: 4px 50px;
    display: inline-block;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    margin: 0 auto 15px;
    border: 1px solid hsla(0, 0%, 98%, .5);
}

.button-terciary:hover {
    background: white;
    color: black !important;
}


/* ============================
    Botones de Planes
============================ */

.plan-card {
    transition: box-shadow 0.3s ease;
}

.plan-card:hover {
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.badge {
    font-size: 0.75rem;
    padding: 0.25em 0.5em;
}

.check-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #ccc; /* Borde gris cuando está inactivo */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: transparent; /* Oculta el check */
    transition: all 0.3s ease-in-out;
}

.plan-card:hover .check-icon,
.plan-card.selected .check-icon {
    background-color: #0056b3; /* Azul de fondo */
    border-color: #0056b3; /* Borde azul */
    color: white; /* Muestra el check */
}


/* ============================
    Tabla de Comparación
============================ */
.comparison-chart {
    width: 100%;
    color: #f9f9f9;
    font-family: "colfax-web", sans-serif;
}

.header-row {
    background: inherit;
    padding: 1rem 0;
    font-weight: bold;
}

.chart-column-header {
    padding: 1rem;
}

.chart-column-highlight {
    background: #005bb5;
}

.plan-button {
    padding: 10px 15px;
    font-size: 1rem;
    font-weight: bold;
    color: #f9f9f9;
    border: 2px solid #005bb5;
    background: #136878;
}

.plan-button.highlight {
    background: #005bb5;
    border-color: #005bb5;
}

.plan-price {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.feature-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-column, .feature-cell {
    text-align: center;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-column p, .feature-cell p {
    margin: 0;
    line-height: 1.5;
}

.feature-cell i {
    color: #f9f9f9;
    font-size: 1.2rem;
}

/* ============================
        FAQ Section
============================ */
.accordion .card {
    background-color: #13151d;
    border: none;
    margin-bottom: 1rem;
}

.accordion .card-header {
    background-color: #13151d;
    border: none;
    position: relative;
}

.accordion .btn-link {
    color: #ffffff;
    font-family: "colfax-web", sans-serif;
    font-weight: 700;
    text-decoration: none;
    width: 100%;
    text-align: left;
}

.accordion .btn-link:after {
    content: "+";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.accordion .btn-link[aria-expanded="true"]:after {
    content: "-";
}

.accordion .collapse {
    background-color: #13151d;
    border-top: none;
}

/* ============================
      Disponibilidad Section
============================ */
.availability {
    width: 100%;
    padding: 5% 0;
    background-color: #080a15;
    text-align: center;
}

.availability h2 {
    font-family: "colfax-web", sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: #f9f9f9;
}

.availability span {
    font-family: "colfax-web", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: silver;
}

.availability img {
    margin-top: 2rem;
    max-width: 100%;
    height: auto;
}

/* ============================
        Footer Styles
============================ */
footer {
    color: #b3b3b3;
}

footer img {
    margin: 0 10px;
}
@media (max-width: 776px) {
    .hero h1, .hero-2 h1 {
        font-size: 28px;
    }
    .hero h2, .hero-2 h2 {
        font-size: 1rem;
    }
    .hero .content, .hero-2 .content {
        grid-column: 1 / -1; /* Ocupa todo el ancho */
        text-align: center; /* Centrar horizontalmente el texto */
        padding: 0 20px 30px; /* Espaciado a los costados y margen inferior */
        display: flex; /* Activar flexbox */
        flex-direction: column; /* Alinear en columna */
        align-items: center; /* Centrar contenido horizontalmente */
        justify-content: flex-end; /* Ubicar al final del contenedor */
        height: 100%; /* Ocupa toda la altura disponible */
    }
    .hero__cta, .hero-2 .hero__cta {
        margin: 0 auto; /* Asegura que esté centrado */
        max-width: 100%; /* No permite que exceda los límites */
    }
    .hero__cta .button-container, .hero-2 .button-container {
        max-width: 300px; /* Control del ancho de los botones */
        width: 100%; /* Que se adapte al contenedor */
    }
    .plan-price {
    font-size: 0.7rem;
    }
    .h2-table{
    font-size: 1.4rem;
    font-weight: 700;
    }
    .sticky-top {
        position: relative !important;
        text-align: center;
        background: black;
        padding-bottom: 30%;
    }
    .login-container {
    margin: 100px auto 30px auto;
}