:root {
    --primary-color: #1a365d;
    --secondary-color: #2d3748;
    --accent-color: #4299e1;
    --text-color: #2d3748;
    --light-text: #718096;
    --background-color: #ffffff;
    --section-bg: #f7fafc;
    --border-color: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 700;
    color: var(--primary-color);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0.5rem 2rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand img {
    height: 35px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: all 0.3s ease;
}

.navbar-brand img:hover {
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.navbar-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navbar-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-links a:hover {
    color: var(--accent-color);
}

/* Hero Section */
#hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    z-index: 1;
}

#hero h1 {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

#hero h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    transform: scale(1.05);
}

/* Sections */
.section {
    padding: 6rem 2rem;
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: scale(1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.feature-card:hover {
    transform: scale(1.05) !important;
    z-index: 10;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.feature-card p {
    margin-bottom: 0;
    color: var(--text-color);
}

/* Fade-in animations for feature cards */
.feature-card.fade-in {
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.feature-card.fade-in.visible {
    opacity: 1;
}

/* Business Benefits Section */
.benefits-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefits-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

.benefits-card h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.4rem;
}

.benefits-card .benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-card .benefits-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
    line-height: 1.6;
}

.benefits-card .benefits-list li:before {
    content: "✓";
    color: #4CAF50;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Benefits Section */
.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.benefits-list li:before {
    content: "✓";
    color: #4CAF50;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 2rem;
    background: var(--section-bg);
}

.pricing-content {
    max-width: 600px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.pricing-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 400;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

.features-list li {
    padding: 0.4rem 0;
    color: var(--text-color);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.features-list li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Contact Section */
.contact-section {
    padding: 6rem 2rem;
    background: var(--section-bg);
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-info {
    padding: 2rem;
    text-align: center;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

/* Footer */
footer {
    background: var(--primary-color);
    color: white;
    padding: 4rem 2rem;
}

footer h4 {
    color: white;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-links {
        display: none;
    }
    
    .navbar-toggle {
        display: block;
    }
    
    #hero h1 {
        font-size: 2.5rem;
        font-weight: 400;
    }
    
    #hero h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .section {
        padding: 4rem 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeIn 1s ease-out;
}

p {
    margin-bottom: 0;
}

.merriweather-light {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 300;
    font-style: normal;
}

.merriweather-regular {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.merriweather-bold {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 700;
    font-style: normal;
}

.merriweather-black {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 900;
    font-style: normal;
}

.merriweather-light-italic {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 300;
    font-style: italic;
}

.merriweather-regular-italic {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 400;
    font-style: italic;
}

.merriweather-bold-italic {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 700;
    font-style: italic;
}

.merriweather-black-italic {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 900;
    font-style: italic;
}


.roboto-thin {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 100;
    font-style: normal;
}

.roboto-light {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 300;
    font-style: normal;
}

.roboto-regular {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.roboto-medium {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 500;
    font-style: normal;
}

.roboto-bold {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 700;
    font-style: normal;
}

.roboto-black {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 900;
    font-style: normal;
}

.roboto-thin-italic {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 100;
    font-style: italic;
}

.roboto-light-italic {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 300;
    font-style: italic;
}

.roboto-regular-italic {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 400;
    font-style: italic;
}

.roboto-medium-italic {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 500;
    font-style: italic;
}

.roboto-bold-italic {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 700;
    font-style: italic;
}

.roboto-black-italic {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 900;
    font-style: italic;
}



.dm-serif-text-regular {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.caveat {
    font-family: 'Poppins', system-ui, sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.dm-serif-text-regular-italic {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}




.navbar-toggle {
    display: none;
    font-size: 2.5rem;
    cursor: pointer;
    margin-right: 1.5rem;
}

/* Móvil: filas a ancho completo; desktop se anula abajo */
.menu {
    width: 100%;
}

@media (min-width: 769px) {
    .navbar {
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }

    .navbar > a:first-of-type {
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }

    .navbar-links {
        margin-left: auto;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-end;
        width: auto;
    }

    .navbar-links li.menu {
        width: auto;
    }

    /* Estructura inválida pero real: ul > a > li — el padding visible va en el <a> */
    .navbar-links > a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.7rem 1.15rem;
        border-radius: 8px;
        transition: padding 0.25s ease, background-color 0.25s ease, color 0.25s ease;
    }

    .navbar-links > a:hover {
        padding: 1rem 1.65rem;
        background-color: rgba(66, 153, 225, 0.16);
    }

    .navbar-links > a:hover li.menu {
        background-color: transparent;
    }
}

#logo {
    height: 300%;
    width: 30%;
}

.home {
    background: #bde0fe;
    color: #fff;
}

.about {
    background: #ebeae7;
}

#hijos {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.gallery {
    background: #333;
    color: #fff;
}

.presentacion {
    width: 85%;
    height: auto;
    display: flex;
    justify-self: center;
    margin-left: 3%;
    text-align: justify;
    margin-top: 3rem;
    margin-bottom: 4rem;
    font-family: 'Poppins', system-ui, sans-serif;
    font-size: 1.1rem;
}

.presentacion2 {
    width: 85%;
    height: auto;
    display: flex;
    justify-self: center;
    margin-left: 3%;
    text-align: justify;
    margin-top: 3rem;
    font-family: 'Poppins', system-ui, sans-serif;
    font-size: 1.1rem;
}

.presentacion2 {
    width: 85%;
    height: auto;
    display: flex;
    justify-self: center;
    margin-left: 3%;
    text-align: justify;
    margin-top: 3rem;
    font-family: 'Poppins', system-ui, sans-serif;
    font-size: 1.1rem;
}

.contact {
    background: #333;
    color: #fff;
}


.footer {
    background: #c4c3c0;
    color: #0c0c0c;
    text-align: center;
    flex-direction: row;
    padding: 1rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

/* Media Queries */



@media (max-width: 768px) {
    .navbar-toggle {
        display: block;
    }
/* 
    #logo {
        margin-left: 4rem;
    } */

    .translation{
        margin-right: 4rem;
    }

    .menu {
        width: 100%;
    }

    .navbar {
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .navbar-links {
        display: none;
        flex-direction: column;
        width: 100%;
        height: 100vh;
        position: absolute;
        top: 0;
        left: 0;
        background: rgba(26, 54, 93, 0.96);
        backdrop-filter: blur(12px);
        justify-content: center;
        align-items: center;
        z-index: 1000;
        gap: 0.35rem;
    }

    .navbar-links.active {
        display: flex;
    }

    .navbar-close {
        position: absolute;
        top: 1.6rem;
        right: 1.4rem;
        font-size: 2rem;
        cursor: pointer;
        color: #f1f5f9;
        padding: 1rem;
        border-radius: 8px;
        transition: background-color 0.2s ease, color 0.2s ease;
    }

    .navbar-close:hover,
    .navbar-close:focus-visible {
        color: #ffffff;
        background-color: rgba(66, 153, 225, 0.25);
    }

    .navbar-links a {
        padding: 1rem 1.5rem;
        border: none;
        text-align: center;
        width: 100%;
        max-width: 20rem;
        margin: 0;
        color: #f1f5f9;
        border-radius: 10px;
        transition: color 0.2s ease, background-color 0.2s ease;
    }

    .navbar-links a:hover,
    .navbar-links a:focus-visible {
        color: #ffffff;
        background-color: rgba(66, 153, 225, 0.38);
    }

    .navbar-links a:hover li.menu,
    .navbar-links a:focus-visible li.menu {
        background-color: transparent;
    }

}

@media (min-width: 769px) {
    .navbar-close {
        display: none;
        /* Oculta el botón de cerrar en pantallas más grandes */
    }

    .footer {
        display: flex;
        align-items: center;
    }

}


.content {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 400;
    font-style: normal;
    position: relative;
    z-index: 1;
    /* Asegura que el contenido esté delante del video */
    text-align: center;
    color: #fff;
    /* Ajusta el color del texto para que sea legible en el video */
    padding: 20px;
}



.logofooter {
    height: 6rem;
    width: 6rem;
}

#bulletpoints {
    text-align: justify;
    padding: 2rem 1rem;
    min-height: 80vh;
    /* Each section occupies 80% of the viewport height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

dl,
ol,
ul {
    margin: 0
}

.card-body {
    text-align: justify;
}

.btn {
    font-weight: bold;
}

.card {
    margin-top: 0.2rem;
}

.bullets {
    margin-top: 1rem;
}

.redes {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.iconosRedes i {
    margin-left: 1.3rem;
    margin-top: 1rem;
}

a i {
    color: #020202;
    /* Color de Instagram */
    transform: scale(1.4);
    /* Escalar el icono en hover */
}

/* Efecto hover para Instagram */
a i.fa-instagram:hover {
    color: #e4405f;
    /* Color de Instagram */
    transform: scale(2);
    /* Escalar el icono en hover */

}

/* Efecto hover para WhatsApp */
a i.fa-whatsapp:hover {
    color: #25d366;
    /* Color de WhatsApp */
    transform: scale(2);
    /* Escalar el icono en hover */
}

/* Efecto hover para Email */
a i.fa-envelope:hover {
    color: #0072c6;
    /* Color para email */
    transform: scale(2);
    /* Escalar el icono en hover */
}

#peru {
    width: 4rem;
    height: 3rem;
}


.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin: 2rem 0;
}

.image-container:hover {
    transform: scale(1.02);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

/* Media Queries for responsive adjustments */
@media (max-width: 768px) {
    .image-container {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .image-container {
        width: 100%;
    }
}

/* Animaciones para las cards */
.animated-card {
    opacity: 0;
    /* Estado inicial */
    transform: translateY(20px);
    /* Estado inicial */
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.animated-card.show {
    opacity: 1;
    /* Estado final */
    transform: translateY(0);
    /* Estado final */
}

.contenedor-cards {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.equipo {
    margin-top: 1rem;
}

.iconos {
    color: transparent;
}

.reloj {
    background-color: #02020275;
}

#home {
    background-color: #02020275;
}

.animated-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efecto de hover: aumentar tamaño y añadir sombra fuerte */
.animated-card:hover {
    transform: scale(1.05);
    /* Aumentar el tamaño de la card */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    /* Añadir sombra fuerte */
}


.card-title {
    text-align: center;
}


.navbar-brand {
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.1);
}


.content h1,
.content h2,
.content p {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


.logofooter {
    transition: transform 0.3s ease;
}

.logofooter:hover {
    transform: scale(1.1);
}


.card-title {
    font-family: 'Poppins', system-ui, sans-serif;
}


.card-title {
    font-family: 'Poppins', system-ui, sans-serif;
}

.card img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.card:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.card .card-text {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.card.show-description .card-text {
    display: block;
    max-height: 1000px;
    /* Arbitrary large value to ensure the content is fully visible */
}

.card.show-description img {
    filter: grayscale(0%);
}


.iframe-box {
    width: 80%;
}


/* Estilo del contenedor del video */
.iframe-box {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* Proporción 16:9 */
}

/* Estilo del iframe del video */
.iframe-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 100%;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    margin-left: 1rem;
}

@media screen and (min-width: 768px) {

    /* Estilo del contenedor del video para vista desktop */
    .iframe-box {
        padding-top: 0;
        /* Elimina la proporción 16:9 */
        width: 672px;
        /* Ancho original del iframe */
        height: 378px;
        /* Altura original del iframe */
        margin-left: 28%;
        margin-top: 1rem;
        margin-bottom: 3.5rem;
    }
}


.servicios {
    width: 60%;
    height: 30%;
}

@media screen and (min-width: 768px) {
    .servicios {
        width: 30%;
        /* Ajusta el ancho al 50% */
        height: 10%;
        /* Ajusta la altura al 25% */
    }
}

.fotosvarias {
    background-color: #333;
    justify-content: center;
    width: 100%
}

.pasarela {
    width: 60%;
    height: 20%;
    margin-left: 15%;
}


.contactito {
    margin-bottom: 1rem;
}

.copyright {
    margin-top: 0.5rem;
}

.subtitulos {
    font-family: 'Poppins', system-ui, sans-serif;
}


#countdown-container {
    text-align: center;
    background: #ffffff00;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    color: whitesmoke;
}

#countdown {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 10px;
}

#countdown div {
    background: #ea0808bb;
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    width: 6rem;
    justify-content: center;
}

#countdown span {
    display: block;
    font-size: 2em;
}


.reserva {
    margin-top: 2rem;
    color: #fff;
    background-color: rgb(24, 0, 146);
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    padding: 12px 32px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.reserva::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 40%;
    transform: translate(-50%, -50%);
    transition: all 0.7s ease;
}

.reserva:hover::before {
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.reserva:hover {
    background-color: rgb(0, 119, 255);
}


.contact-form h2 {
    margin-top: 0;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
}

button {
    background-color: rgb(24, 0, 146);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.touch {
    margin-top: 1rem;
}

.contactopier {
    margin-top: 1.3rem;
    width: 8rem;
    height: 8rem;

}

.call {
    width: 8rem;
    height: 8rem;
}

@media (max-width: 768px) {
    .contenedor-cards .col-12.col-md-3 {
        flex: 0 0 90%;
        /* Reduce el ancho de las cards */
        max-width: 90%;
        /* Reduce el ancho de las cards */
        margin: 0 auto;
        /* Centra las cards */
    }

    .contenedor-cards .card {
        transform: scale(0.9);
        /* Reduce el tamaño de las cards */
    }
}

.fuente-description {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.sh {
    width: 30rem;
    height: 20rem;
    /* Altura fija de 200px */
}

.top {
    margin-top: 2rem;
}


.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel {
    display: flex;
    width: calc(100% * 2.5);
    /* Ajusta el número de imágenes */
    animation: scroll 60s linear infinite;
    /* Duración de la animación para pantallas grandes */
}

.carousel img {
    width: 16%;
    /* Debe ser 100% dividido entre el número de imágenes */
    object-fit: contain;
}

/* Animación de desplazamiento */
@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* Media query para pantallas móviles */
@media (max-width: 600px) {
    .carousel {
        animation: scroll 150s linear infinite;
        width: calc(100% * 10)
        /* Animación más rápida en pantallas pequeñas */
    }
}



/* Estilo general del rectángulo */
.sliding-rectangle {
    position: absolute;
    left: -100%;
    /* Comienza fuera de la pantalla desde la izquierda */
    top: 20rem;
    /* Posiciona el rectángulo desde el borde superior del contenedor */
    height: 100%;
    width: 50%;
    /* Ancho del rectángulo ajustado a un porcentaje del viewport width */
    background-color: #a6b9c95e;
    /* Fondo blanco semi-transparente */
    transition: transform 0.5s ease-out;
    /* Transición suave de 0.5 segundos */

}

.sliding-rectangle:hover {
    background-color: #0773d299;
    /* Cambia el color de fondo al pasar el mouse */
    border-radius: 5px;
    /* Añade bordes redondeados */
}


/* Clase para hacer visible el rectángulo al deslizarlo */
.sliding-rectangle.visible {
    transform: translateX(190%);
    /* Mueve el rectángulo a su posición final pegado al borde izquierdo */
}

/* Media queries para dispositivos móviles */
@media (max-width: 600px) {
    .sliding-rectangle {
        width: 90vw;
        height: 32vh;
        margin-left: 1.2rem;
        top: 15rem;
        /* Ajusta el ancho del rectángulo para pantallas más pequeñas */
    }

    .sliding-rectangle.visible {
        transform: translateX(90%);
        /* Ajusta la posición final para pantallas más pequeñas */
    }
}


@media (max-width: 600px) {
    .carousel img {
        width: 100%;
        /* La imagen ocupa el 100% del ancho del contenedor */
        height: 50vh;
        /* Mantiene la proporción de la imagen */
        object-fit: cover;
        /* Escala la imagen para que cubra todo el espacio del contenedor */
    }

    /* Opcional: ajusta el carrusel para que no haya espacio lateral */
    .carousel {
        padding: 0;
        margin: 0;
    }
}

.translate {
    z-index: 1;
    margin: 1rem;


}

.translation {
    height: 1.5rem;
    width: 2rem;
    margin-right: 1rem;
    transition: transform 0.3s ease;
}

@media (max-width: 600px) {
.translation{
    position: absolute;
    left: 1rem;
    top: 3rem;
    
}
}


/* Efecto hover para ampliar la imagen */
.translation:hover {
    transform: scale(1.1);
    /* Amplía la imagen un 10% */
}


.chicama{
 width: 80%;
 height: 60%;
}

.negrita{
    font-weight: bold;
    justify-self: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.surfconditions{
    margin: 0;
    justify-content: center;
    text-align:left;
    padding: 10%;
}

/* Image Carousel */
.image-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    border-radius: 10px;
}

.carousel-image.active {
    opacity: 1;
}

.carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 10;
}

.carousel-prev,
.carousel-next {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: white;
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .image-carousel {
        height: 300px;
    }
}

/* Scroll Reveal Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Different animation delays for staggered effect */
.fade-in-delay-1 {
    transition-delay: 0.1s;
}

.fade-in-delay-2 {
    transition-delay: 0.2s;
}

.fade-in-delay-3 {
    transition-delay: 0.3s;
}

/* Specific animations for different elements */
.section h2 {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.section h2.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.pricing-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-form {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.contact-form.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Location Section */
.location-section {
    position: relative;
    padding: 6rem 2rem;
    background: var(--section-bg);
}

.location-content {
    position: relative;
    z-index: 2;
}

.location-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

/* Contact Section with Video Background */
.contact-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

.contact-section .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-section .contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background: var(--section-bg);
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(66, 153, 225, 0.05);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-toggle {
    transition: transform 0.3s ease;
}

.faq-toggle.active {
    transform: rotate(180deg);
}

.location-details h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.location-details h3:not(:first-child) {
    margin-top: 2.5rem;
}

.location-details p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.6;
}

/* Popup Styles */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.popup.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.popup-content {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    max-width: 400px;
    width: 90%;
    text-align: center;
    animation: slideIn 0.3s ease;
}

.popup-icon {
    margin-bottom: 1.5rem;
}

.popup-icon i {
    font-size: 3rem;
    color: #4CAF50;
    animation: scaleIn 0.3s ease;
}

.popup-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.popup-content p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.close-popup-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.close-popup-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

/* Remove duplicate styles at the bottom of the file */
.feature-card.fade-in {
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.feature-card.fade-in.visible {
    opacity: 1;
}

/* Benefits Section */
// ... existing code ...

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.author-info p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

/* Section Titles */
.section h2,
.pricing-section h2,
.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    width: 100%;
}