@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
html, body {
    height: 100%; 
    margin: 0;
    padding: 0;
}

header, section, footer{
    height: 100%;
}

header {
    color: #fdfed2;
}

section, footer {
    color: #033750;
}

.row {
    height: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Newsreader", serif;
}

p {
    font-family: "Work Sans", sans-serif;
}

.perfil-col {
    background-color: #fdfed2;
}


.perfil {
    background-color: #033750;
    border-radius: 20px;
    padding: 20px;
    width: auto;
    display: flex;
    justify-content: center;  /* Centra el contenido horizontalmente */
    align-items: center;  /* Centra el contenido verticalmente */
    height: 100%;
    flex-direction: column; /* Asegura que el contenido esté apilado en columna */
    text-align: center; /* Alinea el contenido dentro de .perfil de forma centralizada */
}

/* Estilo para la imagen dentro de .perfil */
.perfil-img {
    width: 200px;
    min-width: 100px;
    max-width: 300px;
    padding: 20px;
}

.titulo{
    padding: 0 0 20px 50px !important;
}

/* Estilos para los enlaces de navegación */
nav ul {
    list-style-type: none;
}

nav ul li a {
    border: 1px solid #fdfed2;
    border-radius: 20px;
    padding: 20px;
    margin: 3px;
    text-decoration: none;
    color: #fdfed2; 
    transition: background-color 0.3s ease, color 0.3s ease; 
}

nav ul li a:hover {
    background-color: #fdfed2; 
    color: #033750; 
    transition: background-color 0.3s ease, color 0.3s ease; 
}

nav ul li a:active {
    background-color: #033750; 
    color: #fdfed2;
    transition: background-color 0.3s ease, color 0.3s ease; 
}

/* Estilo para la sección encabezado */
header .row {
    padding-bottom: 60px;
    position: relative; 
    z-index: 1; 
}

header h2{
    padding-top: 20px;
}

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

.isologo{
    width: 150px;
    animation: rotacion 150s linear infinite;
}

@keyframes rotacion {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }

.isotipo{
    height: 70px;
    margin-left: 20px;
}

/* Estilos para los botones en el footer */
footer .btn {
    margin: 3px; 
    padding: 20px; 
    text-align: center;
    display: inline-flex; 
    align-items: center; 
    font-size: 14px;
    border: 1px solid #033750; 
    border-radius: 20px; 
    text-decoration: none;
    color: #fdfed2; 
    transition: background-color 0.3s ease; 
    background-color: transparent; 
}

footer .btn:hover {
    background-color: #fdfed2; 
    color: #033750; 
    opacity: 0.8; 
}

footer .icono {
    width: 20px; 
    height: 20px;
    margin-right: 8px; 
}

footer .btn-success {
    color: #25D366; 
}

footer .btn-danger {
    color: #E1306C; 
}

footer .social-buttons {
    display: flex; 
    justify-content: center;
    gap: 20px; 
    margin-top: 20px;
}

footer .social-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

.bi-chevron-down {
    font-size: 40px; 
    animation: bounce 1.5s ease-in-out infinite;  
    margin-top: 10px;  
    display: inline-block;
}
#inicio .baja-conoce-container, #sobre-mi .baja-conoce-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center; 
    margin-top: 20px;
    border: 1px solid #fdfed2;
    border-radius: 20px;
    padding: 20px;
    text-decoration: none;
    color: #fdfed2;
    width: 100px;
}

#inicio .baja-conoce-container:hover, #sobre-mi .baja-conoce-container:hover{
    background-color: #fdfed2; 
    color: #033750; 
    transition: background-color 0.3s ease, color 0.3s ease; 
}

#inicio .baja-conoce-container:active, #sobre-mi .baja-conoce-container:active{
    background-color: #033750; 
    color: #fdfed2;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#servicios .baja-conoce-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center; 
    margin-top: 20px;
    border: 1px solid #033750;
    border-radius: 20px;
    padding: 20px;
    text-decoration: none;
    color: #033750;
    width: 100px;
}

#servicios .baja-conoce-container:hover{
    background-color: #033750; 
    color: #fdfed2; 
    transition: background-color 0.3s ease, color 0.3s ease; 
}

#servicios .baja-conoce-container:active{
    background-color: #fdfed2; 
    color: #033750;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#servicios h4, #reserva h2{
    padding-top: 50px;
}

.imagina{
    background-image: url("img/agua.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: -50vw 0 !important;
    color: #fdfed2;
}

h2 {
    font-size: 2.5rem;
}
.hablemos {
    padding-top: calc(2.5rem + 50px);
}

#servicios img {
    height: 60px;
    margin-right: 25px;
    margin-bottom: 10px;
}

#servicios p {
    margin: 0 !important;
}