        .hero-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px;
            margin: 0 auto;
            max-width: 1300px;
            min-height: 400px;
        }

        .unete-ordenador {
            font-size: 55px;
            line-height: 1.2;
            margin-bottom: 15px;
            margin-top: 50px;
            color: var(--color-primary);
            font-weight: bold;
            font-family: 'Poppins1', sans-serif;
        }

        .texto-descriptivo {
            color: var(--color-subtitle);
            font-size: 18px;
            font-family: 'Poppins', sans-serif;
            max-width: 791px;
            margin-bottom: 20px;
        }

        .button-container {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 30px;
        }

        .btn {
            padding: 12px 25px;
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-primaryy {
            background: var(--color-primary);
            color: white;
        }

        .btn-secondaryy {
            background: #fff;
            color: var(--color-secondary);
            border: 2px solid var(--color-secondary);
        }

        .btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }

        .image-container {
            position: relative;
            max-width: 100%;
            margin-bottom: 20px;
        }

        .profile-image {
            max-width: 100%;
            height: auto;
            display: block;
            width: 100%;
            aspect-ratio: 16/9;
        }

        @media (max-width: 768px) {
            .unete-ordenador {
                font-size: 40px;
            }

            .texto-descriptivo {
                font-size: 16px;
            }

            .btn {
                font-size: 14px;
                padding: 10px 20px;
            }
        }

        @media (max-width: 480px) {
            .unete-ordenador {
                font-size: 28px;
            }

            .texto-descriptivo {
                font-size: 14px;
            }

            .btn {
                font-size: 12px;
                padding: 8px 15px;
            }
        }

.ola-contenedor {
    width: 100%;
    height: 40px;
    position: relative;
    margin: 0;
    padding: 0;
    background-color: white;
    overflow: hidden;
    display: block;
    line-height: 0;
}

.ola-contenedor.inferior {
    background-color: white;
    margin-top: -1px;
}

.ola {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0;
    padding: 0;
    display: block;
}

.ola.ola-inferior {
    top: 0;
    bottom: auto;
}

.seccion-contenido {
    background-color: #024ddf;
    padding: 30px 15px 40px;
    width: 100%;
    box-sizing: border-box;
    margin-top: -1px;
    position: relative;
    z-index: 1;
}

.seccion-titulo {
    color: white;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 30px 0;
}

.tarjetas-contenedor {
    display: flex;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    margin: 30px auto 10px;
    flex-wrap: nowrap;
}

.tarjeta {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: 'Poppins', sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tarjeta:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(166, 200, 247, 0.5);
}

.tarjeta-texto {
    flex: 1;
}

.tarjeta-titulo {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--color-primary);
    font-family: 'Poppins1', sans-serif;
}

.tarjeta-descripcion {
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.7;
}

.funcionalidades-section {
    text-align: center;
    max-width: 1500px;
    width: 100%;
    animation: contactFadeIn 1s ease-in-out;
    background-color: #ffffff;
    margin: 80px auto 0;
}

.funcionalidades-title {
    font-family: "Poppins1", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-title);
    margin-bottom: 40px;
    text-align: center;
    padding: 10px;
}

.funcionalidades {
    background-color: #ffffff !important;
    padding: 5% 3%;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.funcion {
    background: #ffffff;
    padding: 18px 15px;
    border-radius: 20px;
    border: 0.5px solid var(--color-primary);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.funcion:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.icono {
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 8px;
    transition: color 0.3s;
    display: inline-block;
    line-height: 1;
}

.funcion:hover .icono {
    color: #1a3f91;
}

.funcion h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-primary);
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.funcion p {
    font-size: 0.9rem;
    color: var(--color-text);
    margin: 0;
    line-height: 1.4;
}

.funcionalidades-section .icono i {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.contact-section {
    background-color: #FF8C32;
    text-align: center;
    padding: 60px 20px;
    color: white;
}

.contact-section h2 {
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 15px;
    font-family: 'Poppins1', sans-serif;
}

.contact-section p {
    font-size: 16px;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.contact-section a {
    display: inline-block;
    padding: 12px 24px;
    margin: 8px;
    border-radius: var(--border-radius-btn);
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
}

.other-method-btn {
    background-color: white;
    color: var(--color-primary);
}

.contact-section a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-content {
    padding-top: 80px;
    padding-bottom: 100px;
    margin: 20px;
}

.faq-content .hero-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    padding: 30px;
}

.faq-content h1 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--color-text);
    font-size: 28px;
    font-family: 'Poppins1', sans-serif;
}

.faq-content .faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.faq-content .faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-content .faq-question {
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    color: var(--color-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-content .faq-question:hover {
    color: var(--color-primary);
}

.faq-content .faq-question::after {
    content: '+';
    font-size: 22px;
    transition: transform 0.3s ease;
}

.faq-content .faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-content .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0 10px;
}

.faq-content .faq-item.active .faq-answer {
    max-height: 300px;
    padding: 15px 10px 0;
}

.faq-content .faq-answer p {
    color: #555;
    font-size: 16px;
}

.faq-content .faq-answer a {
    color: #3498db;
    text-decoration: none;
}

.faq-content .faq-answer a:hover {
    text-decoration: underline;
}

.categorias-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    max-width: 100%;
    padding: 20px;
    margin-bottom: 50px;
    min-height: 420px;
}

.categoria {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 200px;
    cursor: pointer;
    border-radius: 25px;
}

.categoria img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.categoria:hover img {
    transform: scale(1.05);
}

.categoria .titulo {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 0;
    font-family: 'Poppins', sans-serif;
}

.categorias-titulo {
    font-size: 15px;
    margin-bottom: 10px;
    text-align: center;
    padding: 20px 0;
}

.categorias-titulo h1 {
    font-family: 'Poppins1', sans-serif;
    color: var(--color-title);
    font-weight: 700;
}

@media (max-width: 1200px) {
    .reservas-tarjetas {
        flex-direction: row;
        justify-content: center;
    }

    .reserva-tarjeta {
        flex: 0 1 45%;
        max-width: 500px;
    }
}

@media (max-width: 1024px) {
    .grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 12px;
    }

    .funcion {
        padding: 15px 12px;
    }

    .icono {
        font-size: 1.7rem;
    }
}

@media (max-width: 800px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .header-content {
        padding: 0 10px;
    }

    .logo img {
        height: 40px;
    }
}

@media (max-width: 768px) {

    .unete-ordenador {
        font-size: 40px;
    }

    .texto-descriptivo {
        font-size: 16px;
    }

    .btn {
        font-size: 20px;
        padding: 10px 20px;
    }

    .ola-contenedor {
        height: 30px;
    }

    .tarjetas-contenedor {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .tarjeta {
        width: 100%;
        max-width: 400px;
        padding: 20px;
    }

    .reservas-tarjetas {
        flex-direction: column;
        align-items: center;
    }

    .reserva-tarjeta {
        width: 100%;
        max-width: 400px;
    }

    .funcionalidades-title {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 28px;
        margin-top: 50px;
    }

    .grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 10px;
    }

    .funcionalidades {
        padding: 30px 12px;
    }

    .icono {
        font-size: 1.6rem;
        margin-bottom: 6px;
    }

    .funcion h3 {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }

    .funcion p {
        font-size: 0.85rem;
    }

    .contact-section h2 {
        font-size: 35px;
    }

    .contact-section p {
        font-size: 14px;
    }

    .contact-section a {
        font-size: 14px;
        padding: 10px 20px;
    }

    .faq-content .hero-container {
        padding: 20px;
        margin: 30px;
        min-height: 300px;
    }

    .faq-content h1 {
        font-size: 24px;
    }

    .faq-content .faq-question {
        font-size: 16px;
    }

    .categorias-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categoria {
        height: 140px;
    }

    .categorias-titulo {
        font-size: 30px;
    }

    .categorias-titulo h1 {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 35px;
    }

    .unete-ordenador {
        font-size: 28px;
    }

    .texto-descriptivo {
        font-size: 14px;
    }

    .btn {
        font-size: 16px;
        padding: 8px 15px;
    }

    .reservas-titulo {
        font-size: 24px;
    }

    .reserva-titulo {
        font-size: 18px;
    }

    .funcionalidades-section {
        margin-top: 0px;
    }

    .funcionalidades-title {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 20px;
        margin-top: 50px;
    }

    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .funcion {
        padding: 12px 10px;
        margin-bottom: 10px;
    }

    .icono {
        font-size: 1.4rem;
    }

    .funcion h3 {
        font-size: 1rem;
    }

    .funcion p {
        font-size: 0.8rem;
    }

    .contact-section {
        padding: 40px 15px;
        margin-top: 80px;
    }

    .contact-section h2 {
        font-size: 32px;
    }

    .contact-section p {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .contact-section a {
        font-size: 13px;
        padding: 8px 16px;
        margin: 5px;
    }

    .faq-content .hero-container {
        padding: 15px;
        margin: 15px;
    }

    .faq-content h1 {
        font-size: 20px;
    }

    .faq-content .faq-question {
        font-size: 14px;
    }

    .faq-content .faq-answer p {
        font-size: 14px;
    }

    .categorias-titulo {
        font-size: 30px;
    }

    .categorias-titulo h1 {
        font-size: 30px;
    }

    .categoria .titulo {
        font-size: 14px;
        padding: 8px 0;
    }
}

@media (max-width: 350px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .categorias-grid {
        grid-template-columns: 1fr;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20b354;
}

.ver-todas-btn-container {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 60px;
    padding: 0 20px;
}

.seccion-contenido,
.reservas-container,
.funcionalidades-section,
.faq-content {
    content-visibility: auto;
    contain-intrinsic-size: 1000px;
}