﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Estilos generales */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7); /* Fondo negro semitransparente */
    color: #fff;
    z-index: 10; /* Asegura que el encabezado esté encima del video */
}

    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
    }

    header h1 {
        margin: 0;
    }

    header nav ul {
        list-style: none;
        display: flex;
        margin: 0;
    }

        header nav ul li {
            margin-left: 20px;
        }

            header nav ul li a {
                color: #fff;
                text-decoration: none;
            }

                header nav ul li a:hover {
                    text-decoration: underline;
                }

/* Estilos para el menú hamburguesa */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer; /* Asegura que el cursor cambie a un puntero */
}

/* Ocultar el menú en pantallas pequeñas */
.nav-menu {
    display: flex;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        position: absolute;
        top: 60px;
        left: 0;
    }

        .nav-menu.open {
            display: flex;
        }

        .nav-menu li {
            margin: 0;
            padding: 10px;
            text-align: center;
        }

            .nav-menu li a {
                color: #fff;
                text-decoration: none;
            }
}

.video-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

    .video-banner video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

section {
    padding: 0px 0;
}

.service-item {
    margin-bottom: 20px;
    color: #484848;
}

    .service-item h3 {
        margin-bottom: 10px;
        color: #484848;
    }


footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

/* Estilos adicionales para el botón de activar sonido */
#unmute-button {
    padding: 10px 20px;
    background: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    margin-top: 20px;
}

    #unmute-button:hover {
        background: #555;
    }

/* Sección de servicios */
#services {
    background-color: #000;
    padding: 60px 0;
    text-align: center;
}
    #services h2 {
        font-size: 36px;
        margin-bottom: 40px;
        color: #484848;
    }

    #services .container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        text-align: center;
    }

.service-item {
    background-color: #333333;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin: 20px;
    padding: 20px;
    flex: 1 1 calc(33% - 40px); /* Tres columnas con espacio */
    max-width: calc(33% - 40px);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

    .service-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }

    .service-item h3 {
        color: #cccccc;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .service-item p {
        color: #666;
        font-size: 16px;
        line-height: 1.5;
    }

/* Adaptaciones para dispositivos móviles */
@media (max-width: 768px) {
    .service-item {
        flex: 1 1 calc(50% - 40px); /* Dos columnas con espacio */
        max-width: calc(50% - 40px);
    }
}

@media (max-width: 480px) {
    .service-item {
        flex: 1 1 100%; /* Una columna */
        max-width: 100%;
    }
}

/* Estilos para los modales */
/* Estilos para los modales */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color:black;
    padding: 100px;
    border: 1px solid #888;
    width: 80%;
    height: 90%;
    border-radius: 10px;
    text-align: left;
    position: relative;
    overflow-y: auto;
}

    .modal-content h1, .modal-content h2, .modal-content h3, .modal-content h4, .modal-content p {
        margin: 10px 0;
        
    }

    .modal-content h1 {
        font-size: 28px;
        color: #333;
        text-align: center;
    }

    .modal-content h2 {
        font-size: 22px;
        color: #666;
        font-weight: normal;
    }

    .modal-content h3 {
        font-size: 20px;
        color: #333;
        margin-top: 20px;
    }

    .modal-content h4 {
        font-size: 18px;
        color: #333;
        margin-top: 15px;
    }

    .modal-content p {
        font-size: 16px;
        color: #555;
        line-height: 1.6;
        text-align: justify;
    }

.modal-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
}

.modal-text {
    flex: 1 1 50%;
    padding-right: 20px;
}

.modal-image {
    flex: 1 1 50%;
}

    .modal-image img, .modal-image video {
        width: 90%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        margin-top: 10px;
    }

.close {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
}

    .close:hover,
    .close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }

/* Adaptaciones para dispositivos móviles */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        height: 95%;
        padding: 20px;
    }

    .modal-section {
        flex-direction: column;
    }

    .modal-text, .modal-image {
        flex: 1 1 100%;
        padding: 0;
    }

    .phone-container {
        width: 90% !important;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 100%;
        height: 100%;
        padding: 20px;
    }
    .phone-container {
        width: 90% !important;
        max-width: 90%;
    }
}

/*phone ----------------------------------- */
.phone-container {
    position: relative;
    width: 60% !important;
    max-width: 60%;
    z-index: 0;
    margin: 0 auto;
}

    .phone-container img {
        width: 100%
    }

.internal-video {
    position: absolute;
    top: 13%;
    left: 15%;
    z-index: 10;
    width: 100%;
    height: 100%;
    margin: 0 auto
}

video {
    width: 100%
}

@media only screen and (max-width:600px) {
    .phone-container {
        position: relative;
        width: 90% !important;
        max-width: 90%;
        z-index: 0
    }
    
}

/* Botón de WhatsApp Flotante */
.whatsapp-button {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: background-color 0.3s, box-shadow 0.3s;
}

    .whatsapp-button img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
    }

    .whatsapp-button:hover {
        background-color: #20c15d;
        box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }

/* Botón de silenciar/activar sonido */
/* Botón de silenciar/activar sonido */
.mute-toggle {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
}

    .mute-toggle:hover {
        background: rgba(0, 0, 0, 0.9);
    }
#new-section .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    width: 100%;
    background: #f70d98 url(images/line-art.png) no-repeat center center;
    background-size: cover; /* Asegura que el fondo cubra todo el área */
}

.video-container {
    flex: 1 1 25%;
    max-width: 100%;
    padding: 40px;
    display: flex;
    justify-content: center; /* Centra el contenido horizontalmente */
}

.text-container {
    flex: 1 1 50%;
    max-width: 100%;
    padding: 80px;
   
}

/* Consulta de medios para pantallas pequeñas */
@media (max-width: 768px) {
    #new-section .container {
        padding: 0; /* Elimina el padding para pantallas pequeñas */
    }

    .video-container, .text-container {
        flex: 1 1 100%;
        max-width: 90%;
        padding: 20px; /* Ajusta el padding para pantallas pequeñas */
        text-align:justify;
    }
}
/* Estilo del botón de cerrar al final del texto */
.close-modal-button {
    display: block;
    margin: 20px auto 0;
    padding: 10px 20px;
    background-color: #f70d98;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    font-size: 18px;
    width: fit-content;
}

    .close-modal-button:hover {
        background-color: #c00a78;
    }

/* Estilos básicos */
#gallery {
    padding: 60px 0;
    background-color: #333;
    text-align: center;
}

    #gallery h2 {
        font-size: 36px;
        margin-bottom: 40px;
        color: #000;
    }

/* Estilos de la cuadrícula */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 20px;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
}

.grid-item {
    position: relative;
    overflow: hidden;
    cursor: pointer; /* Cambia el cursor a un puntero */
}

    .grid-item img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 10px;
        transition: transform 0.3s ease-in-out;
    }

    .grid-item:hover img {
        transform: scale(1.1);
    }

    /* Estilos del efecto hover */
    .grid-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }

    .grid-item:hover::before {
        opacity: 1;
    }

    .grid-item:hover img {
        transform: scale(1.1);
    }

    /* Estilos del texto de la imagen */
    .grid-item:hover .caption {
        opacity: 1;
    }

.caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

#contact {
    padding:30px 20px;
    background-color: #000;
    color: #fff;
    text-align: center;
}

    #contact h2 {
        font-size: 36px;
        margin-bottom: 40px;
        color: #fff; /* Cambiado para mejorar el contraste */
    }

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 20px;
    padding: 10px 20px;
    border: 2px solid #f70d98;
    border-radius: 10px;
    transition: background-color 0.3s, color 0.3s;
}

    .contact-item i {
        font-size: 24px;
        color: #f70d98;
    }

    .contact-item:hover {
        background-color: #f70d98;
        color: #333;
    }

        .contact-item:hover i {
            color: #333;
        }

    .contact-item a {
        color: inherit; /* Mantener el color del enlace consistente */
        text-decoration: none; /* Eliminar subrayado del enlace */
    }

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr; /* Una columna en pantallas pequeñas */
    }

    .contact-item {
        font-size: 18px; /* Ajustar el tamaño de fuente en pantallas pequeñas */
        padding: 10px; /* Ajustar el padding en pantallas pequeñas */
    }

    #contact h2 {
        font-size: 28px; /* Ajustar el tamaño de la fuente del encabezado en pantallas pequeñas */
    }
}


#availability-calendar {
    padding: 20px;
    background: #000;
    background-size: cover; /* Asegura que el fondo cubra todo el área */
    overflow-x: hidden; /* Evita el desbordamiento horizontal */
}

    #availability-calendar h2 {
        padding: 60px 0;
        color: #fff; /* Cambiado para mejorar el contraste */
        text-align: center;
    }

.calendar-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.month {
    flex: 1 1 calc(33.333% - 40px); /* Ajusta el ancho para tres columnas */
    background-color: #666;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 10px; /* Añade un margen para evitar desbordamientos */
    box-sizing: border-box; /* Incluye el padding y el borde en el ancho total */
}

    .month h3 {
        font-size: 20px;
        margin-bottom: 10px;
        color: #fff;
    }

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background-color: #333;
    color: #fff;
}

th, td {
    padding: 10px;
    border: 1px solid #ccc;
    text-align: center;
    font-size: 16px;
    position: relative; /* Necesario para el tooltip */
}

.available {
    border: 2px solid #8bc34a; /* Borde verde para días disponibles */
    color: #8bc34a;
}

.unavailable {
    border: 2px solid #f44336; /* Borde rojo para días ocupados */
    color: #f44336;
}

.available i {
    color: #8bc34a; /* Color del icono para días disponibles */
}

.unavailable i {
    color: #f44336; /* Color del icono para días ocupados */
}

/* Tooltip */
td[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

td[data-tooltip]:hover::before {
    opacity: 1;
}

/* Resaltar solo la celda al pasar el mouse */
td:hover {
    background-color: #ddd;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .month {
        flex: 1 1 calc(50% - 40px); /* Dos columnas */
    }
}

@media (max-width: 768px) {
    .month {
        flex: 1 1 100%; /* Una columna */
        margin: 10px 0; /* Ajusta el margen para pantallas pequeñas */
        padding: 10px; /* Ajusta el padding para pantallas pequeñas */
    }
}

@media (max-width: 480px) {
    .calendar-container {
        padding: 0; /* Elimina el padding para contenedores pequeños */
    }

    .month {
        margin: 5px 0; /* Reduce el margen en pantallas muy pequeñas */
        padding: 5px; /* Reduce el padding en pantallas muy pequeñas */
    }

    th, td {
        padding: 5px; /* Reduce el padding en celdas en pantallas muy pequeñas */
        font-size: 14px; /* Reduce el tamaño de la fuente en pantallas muy pequeñas */
    }
}