/* Global Styles */
:root {
    --primary-color: #093d52;
    --secondary-color: #95d0ce;
    --accent-color: #ffd700;
    --text-color: #093d52;
    --light-text: #ffffff;
}

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

/* Navigation */
.navbar {
    font-family: 'Montserrat', sans-serif;
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.95) !important;
}

.navbar-brand img {
    max-height: 50px;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 11px;
    color: var(--primary-color) !important;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color) !important;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh; /* Cambiado a 100vh para pantalla completa */
    width: 100%;
    overflow: hidden;
    margin-bottom: 0;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.anniversary-logo {
    max-width: 200px;
    margin-bottom: 2rem;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 800;
}

/* Adventure Section */
.adventure-section {
    /* Remove these properties:
    padding: 5rem 0;
    background-color: #f8f9fa;
    */
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    background-color: #000;
    /* Remove border-radius property:
    border-radius: 15px;
    */
    overflow: hidden;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.play-button i {
    font-size: 2rem;
    color: var(--primary-color);
}

.adventure-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.adventure-content h2 {
    margin: 0;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.adventure-content h2 span {
    color: var(--primary-color);
}

/* Services Section */
.services-section {
    margin-top: 0;
    padding-top: 0;
}

.service-card {
    text-align: center;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: var(--light-text);
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.service-icon {
    height: 80px;
    width: auto;
    margin-bottom: 0.5rem;
    object-fit: contain;
}

.service-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--light-text);
    opacity: 0.9;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card .btn{
    margin-top: auto;
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 200px;
    border-radius: 25px;
}

.service-card.toboganes {
    background: #3a8399; /* Blue color */
}

.service-card.restaurantes {
    background: #a1cece; /* Red color */
}

.service-card.hotel {
    background: #8e3482; /* Turquoise color */
}

.service-card.aventura {
    background: #f7ce46; /* Light blue color */
}

.service-card .title-container {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 1rem;
    /* Asegurar que el contenido esté centrado verticalmente */
    line-height: 1.2;
}
.service-card .service-icon-container{
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.service-card .service-icon-container img{
    height: 80px; /* Altura fija en lugar de 100% */
    width: auto;
    object-fit: contain;
    /* Asegurar que el icono esté perfectamente centrado */
    display: block;
}

.service-card .title-container h3 {
    margin: 0;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    /* Asegurar que el texto se ajuste bien */
    line-height: 1.2;
    /* Permitir que el texto se ajuste dentro del contenedor */
    max-height: 100%;
    /* Centrado perfecto */
    align-self: center;
}

.service-card .title-container h3 .line-1,
.service-card .title-container h3 .line-2 {
    display: block;
    line-height: 1.2;
}

/* About Section */
.about-section {
    position: relative;
    padding: 4rem 0 0 0;
    overflow: hidden;
    color: var(--light-text);
    background-image: url('../images/about/b-agua-balneario.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.about-content {
    position: relative;
    z-index: 2;
    padding-bottom: 50px;
}

.floating-images {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.floating-img {
    position: absolute;
    max-width: 150px;
    animation: float 6s ease-in-out infinite;
}

.img-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.img-2 {
    top: 40%;
    right: 15%;
    animation-delay: 2s;
}

.img-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.about-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #3a8399;
    text-shadow: none;
}

.about-section p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-shadow: none;
    color: #1b3d50;
}

/* Pricing Section */
.pricing-section {
    margin-top: 0;
    padding-top: 0;
}

.pricing-card {
    padding: 3rem;
    border-radius: 0;
    color: var(--light-text);
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin: 0;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.pricing-card h4 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    width: 100%;
}

.pricing-card ul {
    font-family: 'Montserrat', sans-serif;
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: center;
    width: 100%;
}

.pricing-card p {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    margin: 2rem 0;
}

.pricing-card .btn-primary {
    margin-top: auto;
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 200px;
    border-radius: 25px;
    background-color: #a1cece;
}

.pricing-card.parque {
    background-color: #8e3482;
}

.pricing-card.hotel {
    background-color: #1b3d50;
}

.pricing-card .title-container {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 1rem;
}

.pricing-card .title-container h3 {
    margin: 0;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

/* Promotions Section */
.promotions-section {
    position: relative;
    padding: 5rem 0;
    background-color: white;
    overflow: hidden;
}

.promotions-section .container {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
}

.promotions-image {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    max-width: 500px;
    z-index: 2;
}

.promotions-image img {
    width: 100%;
    height: auto;
}

.promotions-image-left {
    position: absolute;
    left: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 80%;
    max-width: 400px;
    z-index: 2;
    padding-left: 0;
}

.promotions-image-left img {
    width: 100%;
    height: auto;
}

.promo-card {
    margin: 2rem 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background-image: url('../images/b-footer-alberca.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    padding: 3rem 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

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

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

.contact-info p {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    font-size: 1.2rem;
}

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

.social-links a {
    color: var(--light-text);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
}

.footer-logo {
    max-width: 100px;
    display: block;
    margin: 0 auto;
}

.certifications {
    text-align: right;
}

.certifications h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.certification-logos {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.certification-logos img {
    max-width: 100px;
    height: auto;
}

.footer a {
    font-family: 'Montserrat', sans-serif;
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Buttons */
@keyframes wave {
    0% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(-2px) translateY(-2px);
    }
    50% {
        transform: translateX(2px) translateY(2px);
    }
    75% {
        transform: translateX(-2px) translateY(-2px);
    }
    100% {
        transform: translateX(0) translateY(0);
    }
}

.btn-primary, .btn-secondary {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before, .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(0, 149, 232, 0.8);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before, .btn-secondary:hover::before {
    width: 100%;
}

.btn-primary {
    background-color: #a1cece;
    border-color: #a1cece;
    color: var(--text-color);
}

.btn-secondary {
    background-color: #1b3d50;
    border-color: #1b3d50;
    color: var(--light-text);
}

.btn-primary:hover {
    background-color: #8eb8b8;
    border-color: rgba(0, 149, 232, 0.8);
}

.btn-secondary:hover {
    background-color: #152d3c;
    border-color:  rgba(0, 149, 232, 0.8);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        height: 100vh; /* Mantener 100vh en tablets */
    }
    
    .video-background {
        height: 100vh; /* Mantener 100vh en tablets */
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .service-card {
        margin-bottom: 1rem;
        padding-top: 15px; /* Reducir el padding superior en tablets */
    }
    
    .adventure-content h2 {
        font-size: 2rem;
    }
    
    /* Hide floating images on tablets and mobile */
    .floating-images {
        display: none;
    }
    
    /* Footer centrado en tablets */
    .footer .row > div {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .certifications {
        text-align: center;
    }
    
    .certification-logos {
        justify-content: center;
    }
    
    /* Promotions section adjustments for tablets */
    .promotions-image-left,
    .promotions-image {
        display: none;
    }
    
    .promotions-section .container {
        background-image: url('../images/promotions/waves.svg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: auto;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        padding: 3rem 1rem;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 100vh; /* Mantener 100vh en móviles pequeños */
    }
    
    .video-background {
        height: 100vh; /* Mantener 100vh en móviles pequeños */
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .service-card {
        padding-top: 0; /* Eliminar completamente el padding superior en móviles */
        margin-bottom: 0; /* Reducir también el margen inferior */
    }
    
    .service-card .title-container {
        margin-top: 20px; /* Agregar margen superior para móviles */
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    /* Hide floating images on mobile */
    .floating-images {
        display: none;
    }
    
    /* Footer centrado en móviles pequeños */
    .footer .row > div {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .contact-info p {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .certification-logos {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .certification-logos img {
        max-width: 80px;
        margin: 0.5rem;
    }
    
    /* Promotions section adjustments for mobile */
    .promotions-image-left,
    .promotions-image {
        display: none;
    }
    
    .promotions-section {
        background-image: url('../images/promotions/waves.svg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        padding: 3rem 1rem;
    }
    
    .promotions-section .container {
        background: none;
        width: 100%;
        margin: 0;
        padding: 0;
    }
}

/* Video Background Styles */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Cambiado a 100vh para pantalla completa */
    overflow: hidden;
    z-index: -1;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.video-background video.loaded {
    opacity: 1;
}

/* Fallback for when video doesn't play */
.video-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-fallback.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

/* Hide fallback when video is playing */
.video-background video:not([style*="display: none"]) + .video-background::before {
    display: none;
}

/* Footer Responsive Adjustments */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0;
    }
    
    .footer .row > div {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .certifications {
        text-align: center;
    }
    
    .certification-logos {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-logo {
        margin: 1rem auto;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 1.5rem 0;
    }
    
    .footer .row > div {
        margin-bottom: 1.5rem;
    }
    
    .certification-logos img {
        max-width: 80px;
        margin: 0.5rem;
    }
    
    .contact-info p {
        justify-content: center;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 80px;
    height: 80px;
    bottom: 70px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 40px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: white;
    text-decoration: none;
    transform: scale(1.1);
}

.whatsapp-float i {
    font-size: 40px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive adjustments for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 70px;
        height: 70px;
        bottom: 60px;
        right: 15px;
        font-size: 35px;
    }
    
    .whatsapp-float i {
        font-size: 35px;
    }
}

@media (max-width: 576px) {
    .whatsapp-float {
        width: 65px;
        height: 65px;
        bottom: 55px;
        right: 10px;
        font-size: 32px;
    }
    
    .whatsapp-float i {
        font-size: 32px;
    }
}

/* Privacy Policy Styles */
.privacy-content {
    padding: 120px 0 80px;
    background-color: #f8f9fa;
}

.privacy-content h1 {
    color: #003e52;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.privacy-content h2 {
    color: #003e52;
    font-weight: 600;
    margin: 40px 0 20px;
}

.privacy-content p {
    color: #374151;
    line-height: 1.8;
    margin-bottom: 20px;
}

.privacy-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.privacy-content li {
    color: #374151;
    line-height: 1.8;
    margin-bottom: 10px;
}

.privacy-content strong {
    color: #003e52;
    font-weight: 600;
}

.privacy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive adjustments for privacy policy */
@media (max-width: 768px) {
    .privacy-content {
        padding: 100px 0 60px;
    }
    
    .privacy-content h1 {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .privacy-content h2 {
        font-size: 1.5rem;
        margin: 30px 0 15px;
    }
    
    .privacy-container {
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .privacy-content {
        padding: 90px 0 50px;
    }
    
    .privacy-content h1 {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }
    
    .privacy-content h2 {
        font-size: 1.25rem;
        margin: 25px 0 12px;
    }
    
    .privacy-content p,
    .privacy-content li {
        font-size: 0.95rem;
    }
}