html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }

    aside {
        margin-top: 20px;
    }
}

body {
    background: #f2f7fb;
}

.main-content {
    display: flex;
    justify-content: space-between;
}

.main-section {
    flex: 3;
    margin-right: 20px;
}

aside {
    flex: 1;
    background-color: #f8f9fa; /* Color de fondo para distinguir el aside */
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Sombra para destacar el aside */
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

#Recinto {
    width: 200px;
    margin: 2rem 0;
    border-radius: 50%;
}

.card {
    border: none;
    background-color: #172654;
}

.card-custom {
    width: 18rem;
    text-align: left;
    border: 1px solid #172654;
    border-radius: 10px; /* Esquinas redondeadas */
    padding: 1rem;
    position: relative;
    margin-top: 60px; /* Ajustar el margen superior */
    overflow: visible; /* Permitir que la imagen se salga del contenedor */
    background-color: #ebf4ff;
}

    .card-custom img {
        width: 150px; /* Tamaño de la imagen */
        height: 150px; /* Tamaño de la imagen */
        border-radius: 50%;
        position: absolute;
        top: -60px; /* Mover la imagen hacia arriba */
        left: 25%; /* Centrar la imagen horizontalmente */
        transform: translateX(-60%); /* Centrar la imagen horizontalmente */
        border: 3px solid #172654; /* Borde blanco alrededor de la imagen */
        background-color: #172654; /* Fondo blanco para la imagen */
    }

.card-body {
    margin-top: 70px; /* Añadir margen superior para dar espacio a la imagen */
}

.card-custom_2 {
    width: 18rem;
    text-align: left;
    border: 1px solid #172654;
    border-radius: 10px; /* Esquinas redondeadas */
    padding: 1rem;
    position: relative;
    margin-top: 10px; /* Ajustar el margen superior */
    overflow: visible; /* Permitir que la imagen se salga del contenedor */
    background-color: #ebf4ff;
}
.custom-div {
    background-color: #f4f8fb;
    border: 1px solid #315a73;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin-top: 20px; /* Margen superior para separar del contenido anterior */
}

    .video-container video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: fill; /* Ensure the iframe fills the container */
    }


/* Aplica estilos específicos a los input de tipo texto, email, password, etc. */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="tel"],
select {
    border-radius: 12px; /* Esquinas redondeadas */
    border: 1px solid #1d3f5d; /* Borde con color #f0f8fe */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /* Sombra leve */
    padding: 8px 12px 8px 20px; /* Relleno interno: top, right, bottom, left */
    transition: box-shadow 0.3s ease; /* Transición suave para la sombra */
}

    /* Efecto al hacer foco */
    input[type="text"]:focus,
    input[type="email"]:focus,
    input[type="password"]:focus,
    input[type="number"]:focus,
    input[type="date"]:focus,
    input[type="tel"]:focus,
    select:focus {
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2); /* Sombra más pronunciada al enfocar */
        border-color: #dfdfff; /* Cambia el color del borde al hacer foco */
        outline: none; /* Quita el borde azul predeterminado */
    }




.boton {
    border-radius: 20px !important;
    background-color: #e7e7e7;
    color: #000000;
    padding: 8px 20px;
    border: 1px inset #888888;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

    .boton:hover {
        background-color: #b0b0b0;
    }

.volver {
    border-radius: 20px !important;
    background-color: #383941;
    color: #f4f5f7;
    padding: 8px 20px;
    border: 1px inset #383941;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

    .volver:hover {
        background-color: #7b7f95;
    }

.tarjetas {
    background-color: #ebf4ff;
    padding: 10px;
    border-radius: 10px;
}

.round-button {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #277c93; /* Color del botón */
    color: white;
    text-align: center;
    line-height: 50px; /* Asegura que el icono o texto esté centrado verticalmente */
    font-size: 20px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

    .round-button:hover {
        background-color: #275463; /* Color cuando el botón es hover */
    }

    .round-button:active {
        background-color: #275463; /* Color cuando se hace clic en el botón */
    }

.icon-text {
    display: flex;
    align-items: center;
}

    .icon-text i {
        margin-right: 5px; /* Espacio entre el icono y el texto */
        font-size: 2em; /* Aumenta el tamaño del icono */
    }

.styled-button-Menu {
    width: 100%;
    max-width: 500px;
    min-width: 100px;
    height: auto;
    padding: 1.3em 3em;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: #f6f6f6;
    background-color: #000000;
    border: none;
    border-radius: 45px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
    margin-top: 10px;
}

    .styled-button-Menu:hover {
        background-color: #b0b0b0;
        box-shadow: 0px 15px 20px rgba(175, 176, 177, 1);
        color: #000000;
        transform: translateY(-7px);
    }

    .styled-button-Menu:active {
        transform: translateY(-1px;
    }

.contenedor {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, .6);
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    margin: 10px auto;
    text-align: center;
    backdrop-filter: blur(15px);
}

.contenedor_centrado {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, .6);
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    margin: 10px auto;
    text-align: center;
    backdrop-filter: blur(15px);
    max-width: 300px;
    width: 90%;
}

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
}
.filtro-buscador {
    position: sticky;
    top: 0;
    z-index: 1030; /* por encima del contenido */
    background-color: #fff;
    border-bottom: 1px solid #dee2e6;
}


html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    background-image: url('./Imagenes/Animales_1.JPG');
    background-size: cover;
    background-repeat: no-repeat;
    font-family: 'Poppins', sans-serif;
    color: navy;
    margin: 0;
    padding: 0;
}

.nav {
    width: 281px;
}

.nav__link {
    color: #303440;
    display: block;
    padding: 15px 0;
    text-decoration: none;
}

.nav__link--inside {
    border-radius: 6px;
    padding-left: 20px;
    text-align: left;
}

    .nav__link--inside:hover {
        background: #e0e2e4;
    }

.list {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-radius: 0 16px 16px 0;
    background: #fff;
}

.list__item {
    list-style: none;
    width: 92%;
    text-align: center;
    overflow: hidden;
}

.list__item--click {
    cursor: pointer;
}

.list__button {
    display: flex;
    align-items: center;
    gap: 1em;
    width: 70%;
    margin: 0 auto;
}

.arrow .list__arrow {
    transform: rotate(90deg);
}

.list__arrow {
    margin-left: auto;
    transition: transform .3s;
}

.list__show {
    width: 80%;
    margin-left: auto;
    border-left: 2px solid #303440;
    list-style: none;
    transition: height .4s;
    height: 0;
}

.icon-container {
    display: flex;
    align-items: center;
    gap: 5px;
}

.custom-background {
    background-color: #e5ecf4;
}

#Recinto {
    width: 200px;
    margin: 2rem 0;
    border-radius: 50%;
}
.textarea-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

    .textarea-wrapper textarea {
        padding-top: 1.5rem; /* deja espacio para el label */
    }

    .textarea-wrapper label {
        position: absolute;
        top: 0.25rem;
        left: 0.75rem;
        font-size: 0.9rem;
        pointer-events: none;
        background: white;
        padding: 0 .25rem;
    }
