: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;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

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

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

.navbar-brand img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.navbar-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 0.4rem;
}

.navbar-links li {
    display: flex;
    align-items: center;
}

.navbar-links a {
    color: var(--text-color);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.6rem;
    border-radius: 8px;
    white-space: nowrap;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.navbar-links a:hover {
    color: var(--accent-color);
    background-color: rgba(66, 153, 225, 0.16);
}

.navbar-toggle {
    display: none;
}

.navbar-close {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    z-index: 1000;
}

@media (max-width: 768px) {
    .navbar-close {
        display: block;
    }
}

@media (min-width: 769px) {
    .navbar-close {
        display: none !important;
    }

    /* Keep all nav items on a single row */
    .navbar {
        flex-wrap: nowrap;
    }

    .navbar-links {
        flex-wrap: nowrap;
        min-width: 0;
    }
}

/* Hero Section */
#hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #1a1a1a;
}

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

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

#hero h1 {
    font-size: 4rem;
    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;
}

.section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.feature-card:hover i {
    transform: scale(1.1);
}

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

.feature-card p {
    color: var(--text-color);
    opacity: 0.9;
    font-size: 1rem;
    line-height: 1.6;
}

/* 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: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.pricing-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.price span {
    font-size: 1.2rem;
    color: #666;
}

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

.features-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    color: #666;
    font-size: 1.1rem;
}

.features-list li:last-child {
    border-bottom: none;
}

/* 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-color: var(--primary-color);
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    flex: 1;
    text-align: center;
}

.footer-logo a {
    display: inline-block;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
    transition: transform 0.3s ease;
}

.footer-logo a:hover img {
    transform: scale(1.05);
}

.footer-social {
    flex: 1;
    text-align: left;
    color: white;
}

.footer-social a {
    color: white;
    font-size: 1.5rem;
    margin-right: 20px;
    transition: color 0.3s ease;
}

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

.footer-copyright {
    flex: 1;
    text-align: right;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.9rem;
}

/* Social media icons in footer */
.footer .iconosRedes i,
.footer .iconosRedes a i {
    color: white !important;
    margin-left: 1.3rem;
    margin-top: 1rem;
    transform: scale(1.4);
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover effects for footer social icons */
.footer .iconosRedes i.fa-instagram:hover,
.footer .iconosRedes a:hover i.fa-instagram {
    color: #e4405f !important;
    transform: scale(2);
}

.footer .iconosRedes i.fa-whatsapp:hover,
.footer .iconosRedes a:hover i.fa-whatsapp {
    color: #25d366 !important;
    transform: scale(2);
}

.footer .iconosRedes i.fa-envelope:hover,
.footer .iconosRedes a:hover i.fa-envelope {
    color: #0072c6 !important;
    transform: scale(2);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-social {
        text-align: center;
        margin: 20px 0;
    }
    
    .footer-social a {
        margin: 0 10px;
    }
    
    .footer-copyright {
        text-align: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 0 1.5rem;
        height: 110px;
}

    .navbar-brand img {
        height: 90px;
}

.navbar-toggle {
        display: flex;
        font-size: 2.2rem;
    cursor: pointer;
        height: 100%;
        align-items: center;
    }

    .navbar-close {
        display: block;
    }

    .navbar-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
    flex-direction: column;
        padding: 7rem 2rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

    .navbar-links.active {
        right: 0;
}

    .navbar-links li {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    height: auto;
    }

    .navbar-links a {
        display: block;
        padding: 1rem 0;
    font-size: 1.1rem;
    height: auto;
    }

    #hero h1 {
        font-size: 2.5rem;
}

    #hero h3 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .section {
        padding: 4rem 1rem;
    }

    .feature-card {
        margin-bottom: 1.5rem;
    }
}

@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 {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 20px;
    margin-top: 15vh;
}

.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;
    background-color: #f8f9fa;
}

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%;
    }
    .content {
        margin-top: 10vh;
    }
}

@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 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.content h3 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }

.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-color: #f8f9fa;
    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 {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 600px;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.sliding-rectangle.visible {
    transform: translateY(0);
    opacity: 1;
}

.sliding-rectangle p {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 10px 0;
    text-align: center;
    }

.sliding-rectangle button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    margin: 20px auto;
}

.sliding-rectangle button:hover {
    background-color: var(--accent-color);
}

.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: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.testimonial-content {
    flex: 1;
    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;
    justify-content: center;
    margin-top: auto;
}

.author-image {
    width: 80px;
    height: 80px;
    margin-right: 1rem;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid var(--accent-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.author-image img:hover {
    transform: scale(1.1);
}

.author-info {
    text-align: left;
}

.author-info h4 {
    margin: 0;
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
}

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

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

    .author-image {
        width: 60px;
        height: 60px;
    }
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Proporción 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .video-container {
        margin-top: 2rem;
    }
}

.surfboard-icon {
    width: 30px;
    height: 100px;
    position: relative;
    margin: 0 auto 1.5rem;
    transform: rotate(45deg);
}

.surfboard-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    clip-path: polygon(
        0% 20%,    /* Punto superior izquierdo */
        100% 0%,   /* Punto superior derecho (punta) */
        100% 80%,  /* Punto inferior derecho */
        0% 100%    /* Punto inferior izquierdo (cola) */
    );
}

.surfboard-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border: 1px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.feature-card:hover .surfboard-icon {
    transform: rotate(45deg) scale(1.1);
    transition: transform 0.3s ease;
}

/* FAQ Styles */
.accordion .card {
    border: none;
    margin-bottom: 1.5rem;
    background: transparent;
}

.accordion .card-header {
    background: transparent;
    padding: 0;
    border: none;
}

.accordion .btn-link {
    width: 100%;
    text-align: left;
    color: var(--text-color);
    text-decoration: none;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion .btn-link::after {
    content: '+';
    font-size: 1.5rem;
    position: absolute;
    right: 1.5rem;
    transition: transform 0.3s ease;
}

.accordion .btn-link.collapsed::after {
    content: '+';
}

.accordion .btn-link:not(.collapsed)::after {
    content: '-';
}

.accordion .btn-link:hover,
.accordion .btn-link:focus {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.15);
    text-decoration: none;
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.accordion .btn-link.collapsed {
    color: var(--text-color);
}

.accordion .card-body {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    border-radius: 0 0 12px 12px;
    margin-top: -8px;
    margin-left: 1rem;
    margin-right: 1rem;
}

.accordion .collapse.show + .card-body {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .accordion .btn-link {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .accordion .card-body {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        padding: 1.2rem;
    }
}

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

.equipo.subtitulos {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.contenedor-cards {
    margin-top: 2rem;
}

.animated-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.animated-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-img-top {
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.animated-card:hover .card-img-top {
    transform: scale(1.05);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.fuente-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
}

/* Responsive adjustments for team section */
@media (max-width: 768px) {
    .contenedor-cards {
        margin-top: 1rem;
    }
    
    .card-img-top {
        height: 250px;
    }
    
    .equipo.subtitulos {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 75px;
}

.date-banner {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(8px);
    margin: 20px auto;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
}

.date-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Poppins', system-ui, sans-serif;
}

.date-icon {
    font-size: 1.2rem;
}

.date-text {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .date-banner {
        margin: 15px auto;
        padding: 10px 15px;
    }
    .date-text {
        font-size: 0.9rem;
    }
}

/* Section backgrounds */
.about {
    background-color: #f8f9fa;
}

#bulletpoints {
    background-color: #f8f9fa;
}

#pricing {
    background-color: #f0f4f8;
}

#contact {
    background-color: #f8f9fa;
}

#countdown-container {
    background-color: #f8f9fa;
}

/* Ajuste de colores de texto para mejor contraste */
.about h2,
#bulletpoints h2,
#pricing h2,
#contact h2 {
    color: #2c3e50;
}

.about p,
#bulletpoints p,
#pricing p,
#contact p {
    color: #4a4a4a;
}

/* Ajuste de las cards para que destaquen sobre el fondo */
.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Ajuste para dispositivos móviles */
@media (max-width: 768px) {
    .background-video {
        height: 100%;
    }
}