@font-face {
    font-family: 'Poppings';
    src: url('fonts/Poppings-SemiBold.ttf') format('truetype'), 
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700; /* Bold */
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-ExtraBold.ttf') format('truetype');
    font-weight: 800; /* ExtraBold */
    font-style: normal;
}

/* Aplicamos la fuente en toda la página */
body {
    font-family: 'Poppings', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/*
.pricing-table {
    display: flex;                
    justify-content: center; 
    align-items: center;           
    height: 90vh;                
    margin: 0;                     
    flex-wrap: wrap;
    
 
}

.plan {
    width: 30%;                      
    height: auto;                     
    padding: 20px;                   
    margin: 0 3rem;
    text-align: center;              
    background-color: white;         
    border: 1px solid rgba(128, 128, 128, 0.3);         
    border-radius: 7%;              
    box-shadow: 0px 4px 10px rgba(128, 128, 128, 0.4); 
    position: relative;   
}*/

.pricing-table {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    padding: 1rem;
}

.plan {
    padding: 20px;
    text-align: center;
    background-color: white;
    border: 1px solid rgba(150, 163, 181, 0.3);
    border-radius: 3%;
    box-shadow: 0px 2px 3px rgba(150, 163, 181, 0.3);  
    margin: 1rem 1rem;
}


.features{
    font-family: 'Poppins',sans-serif;
    font-weight: 700;
}

.home {
    background-color: azure;
    border-radius: 10px;
}

h2 {
    color: #1383A8;
    text-align: center;
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 20px;
    font-family: 'Poppins',sans-serif;
    font-weight: 700;
}

.feature-button {
    background-color: #1383A8;
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    margin-bottom: 25px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

li::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background-image: url('check-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.additional-features {
    margin-top: 30px;
    font-size: 12px;
    color: #666;
}

.additional-features li {
    margin-bottom: 10px;
}

.additional-features li::before {
    background-image: url('info-icon.png');
}


/*BOTONES DE SECCION INFO - INTERACTIVA POP-UP*/    
.buttonPopUp {
    position: absolute;
    width: min(10vw, 10vh);
    height: min(10vw, 10vh);
    border-radius: 50%;    
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.buttonPopUp img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que la imagen cubra el área del botón */
    transition: transform 0.3s ease;
}

.buttonPopUp:hover {
    transform: scale(1.1); /* Aumenta el tamaño del botón al hacer hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Agrega una sombra para dar profundidad */
}

.buttonPopUp:hover img {
    transform: scale(1.2); /* Agranda la imagen dentro del botón al hacer hover */
}


@media (max-width: 577px) {
    .displayNone {
        display: none; /* Oculta el div en pantallas grandes */
    }
}


/* Media query para pantallas móviles */
@media (max-width: 768px) {
    #demo {
        background-image: none; /* Quita la imagen de fondo */
        background-color: white; /* Cambia el fondo a blanco */
        padding: 20px; /* Reduce el padding */
    }

    #frmdescarga {
        background-color: white; /* Cambia el fondo del formulario a blanco */
        color: black; /* Cambia el color del texto a negro para mejor contraste */
    }
}