/* Mantén las reglas de estilo existentes */
body {
    overflow-x: hidden; /* Prevent horizontal scrolling */
    font-family: 'Jost', sans-serif; /* Usamos Jost como fuente por defecto */
}

/* Hero Section */
.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Section Titles */
.section-title {
    font-family: 'Jost', sans-serif;
    color: #6899b4; /* Color Clementine */
    text-transform: uppercase;
    font-size: 2rem; /* Tamaño del título */
    text-align: center;
    margin-bottom: 30px; /* Espaciado inferior */
}

/* Box Container */
.box {
    background-color: white; /* Fondo blanco para las cajas */
    border-radius: 15px; /* Bordes redondeados */
    padding: 20px; /* Padding interno para el contenido */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra para darle relieve */
    margin: 20px auto; /* Margen superior e inferior */
    max-width: 90%; /* Anchura máxima del 90% de la pantalla */
}

/* Botones */
.btn-compare, .btn-select {
    background-color: #F67F00; /* Color de fondo */
    color: white; /* Color del texto */
    font-size: 1rem; /* Tamaño de la fuente */
    font-weight: bold; /* Negrita */
    padding: 10px 20px; /* Padding interno */
    border-radius: 5px; /* Bordes redondeados */
    text-transform: uppercase; /* Texto en mayúsculas */
}

/* Botones hover */
.btn-compare:hover, .btn-select:hover {
    background-color: #cc5600; /* Color más oscuro en hover */
}

/* Ajustes de las cartas dentro de las cajas */
.card {
    background-color: white !important;
    border-radius: 15px;
    height: 100%; /* Asegura que las cartas tengan la misma altura */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 20px;
    text-align: center;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }

    .hero-background {
        height: 300px; /* Set a smaller height for mobile screens */
    }

    .display-4 {
        font-size: 3rem;
    }

    .lead {
        font-size: 1.5rem;
    }

    .btn-primary.btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    /* CORAMA Logo */
    .hero-section img.img-fluid {
        max-width: 150px; /* Reduce logo size on mobile */
        height: auto;
        margin-bottom: 20px;
    }

    /* Título CORAMA */
    .display-4 {
        font-size: 2.5rem;
    }
}

/* Sección de iconos con fondo #002F49 y textos en blanco */
.icons-section {
    background-color: #002F49; /* Fondo azul oscuro */
    padding: 20px; /* Espaciado interno */
    color: white; /* Texto en blanco */
    border-radius: 10px; /* Bordes redondeados para que la sección tenga consistencia */
}

/* Estilo para las cartas dentro de la sección de iconos */
.icon-card {
    background-color: transparent; /* Fondo transparente */
    border: none; /* Sin bordes */
    text-align: center;
    margin-bottom: 30px; /* Espaciado entre iconos */
}

.icon-img {
    width: 160px; /* Tamaño de los iconos */
    height: 160px;
    margin-bottom: 20px; /* Espacio debajo de los iconos */
}

.icon-title {
    font-size: 2rem;
    color: white; /* Texto en blanco */
    margin-bottom: 15px;
    font-weight: bold; /* Texto en negrita */
    text-transform: uppercase; /* Texto en mayúsculas */
    letter-spacing: 1.5px; /* Espaciado entre letras */
    font-family: 'Jost', sans-serif; /* Fuente Jost */
}

.icon-text {
    font-size: 1.2rem;
    color: white; /* Texto en blanco */
    line-height: 1.75; /* Altura de línea para mejorar la legibilidad */
    max-width: 90%; /* Limitar el ancho del texto */
    margin: 0 auto; /* Centrar el texto */
    font-family: 'Jost', sans-serif; /* Fuente Jost */
}

/* Botón "Learn More" sin mayúsculas y estilo personalizado */
.btn-compare {
    background-color: #F67F00; /* Color Clementine */
    color: white; /* Texto blanco */
    font-size: 1rem; /* Tamaño del texto */
    font-family: 'Jost', sans-serif; /* Fuente Jost */
    text-transform: none; /* Sin texto en mayúsculas */
    padding: 10px 20px; /* Espaciado interno */
    border-radius: 5px; /* Bordes redondeados */
    font-weight: bold; /* Texto en negrita */
    transition: background-color 0.3s ease; /* Transición suave */
}

.btn-compare:hover {
    background-color: #cc5600; /* Color más oscuro en hover */
}

/* Asegurar que la sección tenga márgenes superiores e inferiores */
.section-container {
    margin-top: 50px; /* Espacio entre la parte superior y la sección anterior */
    margin-bottom: 50px; /* Espacio entre la parte inferior y la siguiente sección */
}


/* Otros estilos existentes del landingpage.css */

/* Agregar al final del archivo */

.section-container {
    margin-top: 50px; /* Espacio entre secciones */
}

.section-title {
    color: #F67F00; /* Color especificado */
    font-family: 'Jost', sans-serif; /* Fuente Jost */
    text-transform: uppercase; /* Texto en mayúsculas */
    font-weight: bold; /* Negrita */
    margin-bottom: 20px; /* Espacio debajo del título */
    margin-top: 200px;
}

/* Plan Cards Section */
.informationIcon {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.informationTooltip {
    visibility: hidden;
    width: 200px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Position above the paragraph */
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.informationIcon:hover .informationTooltip {
    visibility: visible;
    opacity: 1;
}

.outerCardLP {
    outline: 3px solid #184064;
    width: 400px;
    background-color: #184064;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-right: 20px;
}

.cardSpacingLP {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cardSpacingVerticalLP {
    position: relative;
    display: flex;
}

.innerCardLP {
    flex: 1;
    background-color: #184064;
    color: white !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    border-radius: 15px;
}

.cardPriceLP {
    font-family: 'Jost', sans-serif;
    color: white !important;
    font-weight: 500;
    font-size: 30px;
    margin: 0 10px;
}

.cardTitleLP {
    font-family: 'Jost', sans-serif;
    color: white !important;
    font-weight: 500;
    font-size: 35px;
    margin: 0 10px;
    text-align: center; /* Center the text */
    display: block; /* Ensure it takes up full width */
    width: 100%; /* Full width to align text properly */
}

.cardPriceYearLP {
    font-family: 'Jost', sans-serif;
    background-color: #E46C04; /* CORAMA Orange */
    color: white;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    text-transform: uppercase;
    display: inline-block;
    font-size: 0.9rem;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
    text-align: center; /* Center the text */
    display: block; /* Ensure it takes up full width */
    width: 100%; /* Full width to align text properly */
}

.cardTextSpacingLP {
    display: flex;
    justify-content: space-between;
}

.italicTextFormatLP {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 15px;
    margin: 0 10px;
    color: white !important;
}

.cardInfoFormatLP {
    flex: 3;
    background-color: white;
    color: #184064;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
}


 /* Price Styling - Make it Stand Out */
 .cardInfoFormatLP h1 {
    font-size: 2rem; /* Increase size */
    font-weight: bold;
    color: #184064; /* Professional dark blue */
    text-align: center;
    background: #f8f9fa; /* Light background */
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.includesTextLP {
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 20px;
    margin: 10px;
}

.featureTextLP {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 20px;
    margin: 10px;
}

.buttonFormatLP {
    display: flex;
    justify-content: center;
    background-color: white;
}

footer {
    width: 100vw !important; /* Force it to take full width */
    min-width: 100%;
}