/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100;0,9..40,200;0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;0,9..40,900;0,9..40,1000;1,9..40,100;1,9..40,200;1,9..40,300;1,9..40,400;1,9..40,500;1,9..40,600;1,9..40,700;1,9..40,800;1,9..40,900;1,9..40,1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('../css/vendor/bootstrap.min.css');
@import url('../css/vendor/fontawesome.css');
@import url('../css/vendor/brands.css');
@import url('../css/vendor/regular.css');
@import url('../css/vendor/solid.css');
@import url('../css/vendor/swiper-bundle.min.css');

@property --progress {
    syntax: '<integer>';
    inherits: true;
    initial-value: 0;
}

@keyframes load {
    to {
        --progress: var(--value)
    }
}

@keyframes background_animation {
    from {
        background-size: 100%;
    }

    to {
        background-size: 110%;
    }
}

@keyframes ripple {
    from {
        opacity: 0.7;
        transform: scale3d(1, 1, 1);
        transform-origin: center;
        border-width: 1px;
    }

    to {
        opacity: 0;
        transform: scale3d(1.5, 1.5, 1.5);
        transform-origin: center;
        border-width: 10px;
    }
}


:root {
    --dark-bg: #111111;
    --secondary-dark: #3A3A3A;
    --accent-color: #2d3928;
    --accent-color-1: #5c645e;
    --bg-color-2 : #f9f2ec;
    --gray-color: #aaaaaa;
    --font-1: 'Poppins', sans-serif;
    --font-2: 'DM Sans', sans-serif;
}

h1 {
    font-size: 100px;
}

h2 {
    font-size: 68px;
}

h3 {
    font-size: 56px
}

h4 {
    font-size: 32px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 18px;
}

ul {
    list-style: none;
}

img {
    object-fit: cover;
}

section {
    background-size: cover;
    background-position: center;
}

button,
a[type="button"] {
    padding-inline: 1rem;
    padding-block: 0.5rem;
    text-decoration: none;
    transition: all 0.5s;
    color: white;
}

.button {
    padding-inline: 1rem;
    padding-block: 0.5rem;
    background-color: var(--accent-color-1);
    text-decoration: none;
    transition: all 0.5s;
    color: white;
}

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



.button-acceso {
    padding-inline: 1rem;
    padding-block: 0.5rem;
    background-color: #C7A877;
    outline-color: white;
    text-decoration: none;
    transition: all 0.5s;
    color: white;
    border: 2px solid white; /* Añadir el contorno blanco */
    border-radius: 5px; /* Redondear los bordes si lo deseas */
}

.button-acceso:hover {
    background-color: transparent; /* El fondo desaparece al pasar el ratón */
    color: white; /* El texto se vuelve del color del fondo */
    border: 2px solid white; /* Cambia el borde al color del fondo */
}

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

button:hover,
a[type="button"]:hover {
    background-color: var(--accent-color);
    color: white;
}

a {
    text-decoration: none;
}

.font-1 {
    font-family: var(--font-1);
}

.font-2 {
    font-family: var(--font-2);
}

.ls-2 {
    letter-spacing: 2px;
}

.fs-7 {
    font-size: 0.8rem !important;
}

.form input,
.form textarea,
.form select
{
    background-color: white;
    border-radius: 5px;
    border: solid 1px var(--accent-color);
    width: 100%;
}

.form input:focus,
.form textarea:focus,
.form select:focus
{
    box-shadow: none;
    border: solid 1px var(--accent-color-1);
}

.form input::placeholder,
.form textarea::placeholder {
    color: #88888893;
}

.form .submit_form {
    padding-inline: 2rem;
    padding-block: 0.7rem;
    text-decoration: none;
    transition: all 0.5s;
    color: white;
    background-color: var(--accent-color-1);
    border-radius: 5px;
}

.submit_form-subscribe {
    padding-inline: 2rem;
    padding-block: 0.7rem;
    text-decoration: none;
    transition: all 0.5s;
    color: white;
    background-color: var(--accent-color-1);
    border-radius: 5px;
}

.submit_form-subscribe:hover {
    background-color: var(--dark-bg);
    color: white;
    filter: none;
}

.maps {
    width: 100%;
    height: 480px;
    /* filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg); */
}

#header {
    transition: all 0.5s ease;
}

.nav-link {
    border-bottom: 2px solid transparent;
    font-size: 1.2rem;
    color: white;
    font-family: var(--font-2);
}

.nav-link:hover {
    font-size: 1.2rem; /* Aumenta el tamaño al pasar el cursor */
    font-weight: bold;
    color: #EADAD0 !important; /* Cambia el color del texto */
}

.nav-link.active {
    font-size: 1.2rem; /* Cambia el tamaño de la letra */
    font-weight: bold; /* Aplica estilo en negritas */
    color: white !important; /* Asegura que el texto sea blanco */
    border-color: white; /* Mantiene el subrayado blanco */
}

.nav-link:focus {
    color: white !important;
}

.navbar-toggler {
    border: none;
    color: white;
}

.navbar-toggler:focus {
    box-shadow: none;
    background-color: transparent;
}

.dropdown-menu {
    background-color: var(--accent-color);
    border-radius: 0;
    border: none;
    border-top: solid 2px white;
    padding: 0;
    padding-block: 0.5rem;
    box-shadow: 1px 1px 23px 1px rgba(0, 0, 0, 0.17);
    -webkit-box-shadow: 1px 1px 23px 1px rgba(0, 0, 0, 0.17);
    -moz-box-shadow: 1px 1px 23px 1px rgba(0, 0, 0, 0.17);
}

.dropdown-item {
    padding-block: 0.5rem;
    color: white;
    font-family: var(--font-2);
    font-size: 0.85rem;
}

.dropdown-item.active {
    color: white;
    background-color: var(--accent-color-1);
}

.dropdown-item:hover {
    color: white;
    background-color: var(--accent-color-1);
}

.dropdown-item:focus {
    color: var(--accent-color);
}

.section {
    padding: 2em 2em 6em 2em;
    overflow: hidden;
}

.r-container {
    max-width: 1140px;
    margin-right: auto;
    margin-left: auto;

}

.bg-dark-color {
    background-color: var(--dark-bg);
}

.bg-dark-transparent {
    background-color: #232323b7;
}

.bg-secondary-dark {
    background-color: var(--secondary-dark);
}

.bg-accent-color {
    background-color: var(--accent-color);
}

.bg-accent-color-1 {
    background-color: var(--accent-color-1);
}

.bg-color-2 {
    background-color: var(--bg-color-2);
}

.accent-color {
    color: var(--accent-color);
}

.accent-color-1 {
    color: var(--accent-color-1);
}

.border-accent-color {
    border-color: var(--accent-color) !important;
}

.border-accent-color-1 {
    border-color: var(--accent-color-1) !important;
}

.border-accent-color-2 {
    border-color: var(--accent-color-2) !important;
}

.text-gray {
    color: var(--gray-color) !important;
}

.bg-accent-color-hover:hover {
    background-color: var(--accent-color);
    color: white;
}

.btn-dark {
    background-color: var(--dark-bg);
    color: white;
    border: none;
}

.btn-dark:hover {
    background-color: var(--accent-color-1);
    color: white;
    border: none;
}

.image-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: transparent;
    background-image: linear-gradient(270deg, #02010100 25%, #f9f2ec 55%);
    opacity: 0.85;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.image-overlay-2 {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: #000000;
    opacity: 0.5;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.image-overlay-3 {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: #FFFFFF;
    opacity: 0.75;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.overlay {
    background-image: url(../image/bg.png);
    background-size: contain;
    background-position: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
    background-size: 65% auto;
    opacity: 1;
}

.overlay.right {
    background-position: center right;
}

.overlay.left {
    background-position: center left;
}

.logo-container {
    max-width: 230px;
}

.divider {
    display: flex;
    align-items: center;
}

.divider::after {
    display: block;
    content: "";
    border-bottom: 0;
    flex-grow: 1;
    border-top: 3px solid var(--accent-color);
    max-width: 80px;
    min-width: 80px;
}

.divider-before::before {
    display: block;
    content: "";
    border-bottom: 0;
    flex-grow: 1;
    border-top: 3px solid var(--accent-color);
    max-width: 80px;
    min-width: 80px;
}

.divider-element {
    letter-spacing: 2px;
    flex-shrink: 0;
    flex-grow: 1;
    margin: 0;
    margin-left: 1rem;
    font-weight: 400;
}

.image-infinite-bg {
    height: 90vh;
}

.animation-bg {
    animation: background_animation 10s forwards;
}

.r-progress {
    --value: 17;
    --progress-color: var(--accent-color);
    --secondary-progress-color: var(--accent-color-1);
    --animation-duration: 2000;
}

.r-progress-bar {
    position: relative;
    height: 15px;
    background-color: var(--secondary-progress-color);
    display: flex;
    border-radius: 3px;
    overflow: hidden;
}

.r-progress-bar .progress-value {
    height: 100%;
    width: calc(var(--progress) * 1%);
    background-color: var(--progress-color);
    position: relative;
    /* border-radius: 3px; */
    animation: load;
    animation-fill-mode: forwards;
    animation-duration: calc(var(--animation-duration) * 1ms);
    animation-timing-function: linear;
    animation-delay: 500ms;
    color: black;
}

.r-progress-bar.percentage-label::after {
    counter-reset: percentage var(--progress);
    content: counter(percentage) '%';
    display: block;
    position: absolute;
    left: calc((var(--progress) * 1%) - 3rem);
    animation: load;
    animation-fill-mode: forwards;
    animation-duration: calc(var(--animation-duration) * 1ms);
    animation-timing-function: linear;
    animation-delay: 500ms;
    color: white;
    font-size: 14px;
    line-height: 1.2;
    /* font-weight: 700; */
    font-family: var(--font-1);
}

.bg-attach-fixed {
    background-attachment: fixed;
}

.social-container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.social-item {
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 20px;
    width: 1.8rem;
    height: 1.8rem;
    background-color: var(--accent-color-2);
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.social-item.bg-accent-color-1 {
    background-color: var(--accent-color-1);
}

.social-item.bg-accent-color {
    background-color: var(--accent-color);
    width: 2.6rem;
    height: 2.6rem;
}

.social-item:hover {
    color: white;
    transform: scale(1.1);
}

.share-button{
    background-color: var(--accent-color-1);
    aspect-ratio: 1/1;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

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

.nav-tabs {
    border-bottom: none;
}

.nav-tabs .nav-link {
    background-color: transparent;
    color: var(--accent-color);
    border: none;
    position: relative;
}

.nav-tabs .nav-link:hover {
    border: none;
    color: white;
}

.nav-tabs .nav-link.active {
    background-color: transparent;
    border: none;
}

.nav-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

.breadcrumb .breadcrumb-item>a {
    color: var(--accent-color);
}

.breadcrumb .breadcrumb-item.active {
    color: var(--accent-color-1);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--accent-color-1);
}

.swiper-pagination {
    margin-block: 1rem;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background-color: black;
}

.video-container {
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    position: relative;
}

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

.video-btn {
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: 5rem;
    background-color: transparent;
    border: solid 2px white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.border-custom {
    border-width: 0px 1px 0px 0px;
    border-color: var(--accent-color);
    border-style: solid;
}

.icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 2.5rem;
    aspect-ratio: 1/1;
    width: 4rem;
    height: 4rem;
}

.request-loader {
    position: relative;
    height: 60px;
    width: 60px;
    border-radius: 50% !important;
    border: solid 2px var(--accent-color);
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-color-1);
}

.request-loader:hover {
    border: solid 2px var(--accent-color);
    color: var(--accent-color);
}


.request-loader::after,
.request-loader::before {
    opacity: 0.2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    color: var(--accent-color-1);
    border: 4px solid currentColor;
    border-radius: 50%;
    animation-name: ripple;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(.65, 0, .34, 1);
    z-index: 0;
}

.request-loader::after {
    animation-delay: 0.5s;
    animation-duration: 3s;
}

.request-loader::before {
    animation-delay: 0.2s;
    animation-duration: 3s;
}

.ifr-video {
    aspect-ratio: 16/9;
    width: 100%;
}

.post-button {
    background-color: transparent;
    color: var(--accent-color) !important;
    border: none !important;
}

.post-button:hover {
    background-color: transparent !important;
    color: var(--accent-color) !important;
    transform: scale(1.15);
}

.card.with-border-bottom {
    border-bottom: 5px solid var(--accent-color) !important;
}

.list-group .list-group-item {
    border: none;
    border-radius: 5px;
}

.list-group .list-group-item.active {
    background-color: var(--accent-color);
}

.list-group .list-group-item.list-group-item-action:hover {
    background-color: var(--accent-color);
    color: white;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--accent-color-1);
}

.accordion-item:first-of-type .accordion-button {
    border-radius: 5px;
}

.accordion-button {
    background-color: var(--accent-color-1);
    border-radius: 5px;
    border: solid 2px var(--accent-color-1);
    color: white;
}

.accordion-button:hover {
    filter: none;
}

.accordion-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: none;
    border: solid 2px var(--accent-color-1);
}

.accordion-item {
    border: none;
    background-color: transparent;
    margin-bottom: 1rem;
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-button:not(.collapsed)::after {
    filter: invert(0);
}

.outer-margin {
    margin-right: -7rem;
}

.list{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.list li {
    padding: 0;
}

.link {
    color: white;
}

.link:hover {
    color: var(--bg-color-2);
}

.team-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.team-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.team-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    background-color: transparent;
    background-image: linear-gradient(180deg, #02010100 0%, var( --accent-color ) 100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    transform: translateY(-20px);
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.team-image:hover .team-overlay{
    top: 0%;
    opacity: 1;
    transform: translateY(0px);
    visibility: visible;
}

.team-container .social-item {
    width: 2.2rem;
    height: 2.2rem;
}

.team-container .social-item:hover {
    background-color: var(--accent-color);
    transform: none;
}



@media only screen and (max-width:993px) {
    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 18px;
    }

    h5 {
        font-size: 14px;
    }

    h6 {
        font-size: 12px;
    }

    .section {
        padding: 6em 2em 6em 2em;
    }

    .divider {
        width: 330px;
    }

    .fs-very-large {
        font-size: 3.125rem;
    }

    .image-absolute-1 {
        left: 45%;
        top: 35%;
    }

    .image-infinite-bg {
        background-size: cover !important;
    }

    #header {
        background: rgba(19, 19, 19, 0.88);
        backdrop-filter: blur(11px);
        -webkit-backdrop-filter: blur(11px);
    }

    .border-custom {
        border-width: 0px 0px 1px 0px;
    }

    .outer-margin {
        margin-right: 0;
    }
}

.section .row .col {
    display: flex;
}

.section .row .col > .rounded-3 {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.video-fullscreen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Ajuste de márgenes para evitar empalmes */
.section {
    padding: 4rem 1rem;
}

/* Centrar elementos en dispositivos móviles */
@media (max-width: 768px) {
    .section .col {
        text-align: center;
        justify-content: center;
    }
    
    /* Ajustar márgenes en móviles */
    .section {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    /* Footer responsivo */
    footer {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    footer .col {
        margin-bottom: 1rem;
    }
}

/* Ajustes generales para íconos y textos */
.fa-award {
    font-size: 2rem;
}

h5 {
    font-size: 1.5rem;
}

/* Ajuste para espaciado excesivo */
.section .col > .rounded-3 {
    padding: 2rem;
}

/* Centrar el contenido de la sección en dispositivos pequeños */
.section.bg-color-2 {
    text-align: center; /* Asegura que todo el texto esté centrado */
}

.section.bg-color-2 .r-container {
    max-width: 1140px; /* Asegúrate de que tenga un ancho adecuado */
    margin: 0 auto; /* Centra la sección dentro de la página */
}

.section.bg-color-2 .w-100 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centra las tarjetas en línea */
    gap: 1rem; /* Espaciado uniforme entre las tarjetas */
}

.section.bg-color-2 .col {
    flex: 1 1 calc(33.33% - 1rem); /* Ajusta el tamaño en pantallas grandes */
    max-width: calc(33.33% - 1rem);
    margin-bottom: 1rem; /* Espaciado inferior */
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 768px) {
    .section.bg-color-2 .col {
        flex: 1 1 100%; /* Tarjetas de ancho completo en móviles */
        max-width: 100%;
    }

    .section.bg-color-2 .w-100 {
        justify-content: center; /* Asegura que estén centradas */
        gap: 1rem;
    }

    .section.bg-color-2 p {
        padding: 0 1rem; /* Ajusta el espacio horizontal del texto */
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    z-index: 1000;
  }
  
  .whatsapp-float img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
  }
  
  .whatsapp-float:hover img {
    transform: scale(1.1);
  }

/* Icono flotante del teléfono */
.phone-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 55px;
    height: 55px;
    z-index: 1000;
  }
  
  .phone-float img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
  }
  
  .phone-float:hover img {
    transform: scale(1.1);
  }

/* Color del Link del footer */
    .footer-link {
        color: white; 
        text-decoration: none; 
      }
    
      .footer-link:hover {
        color: orange;
    }


    .section h6, .section h2 {
        margin-top: 0 !important;
    }

    #header {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    @media (max-width: 768px) {
        .section {
            padding: 0; /* Eliminar paddings en dispositivos pequeños */
            margin: 0; /* Asegurar que no haya margen */
        }
        
    }

    @media (max-width: 768px) {
        .section .d-flex {
            padding-top: 1rem; /* Ajusta el espacio superior */
            padding-left: 0.5rem; /* Ajusta el espacio superior */
            padding-right: 0.5rem; /* Ajusta el espacio superior */


        }
    }

    @media (max-width: 768px) {
        h6 {
            margin-top: 1.5rem !important; /* Agrega margen superior */
        }
    }
    

    @media (max-width: 768px) {
        .section .d-flex {
            margin-top: 2rem; /* Agrega espacio al contenedor */
        }
    }

    /* Agregado para mejorar la experiencia en Contacto */
    @media (max-width: 768px) {
        .section {
            padding: 2rem 1rem; /* Reducimos el padding para que no se sienta tan grande */
        }
    
        .section h6, .section h3 {
            text-align: center; /* Centrar títulos en móviles */
        }
    
        .d-flex.flex-row {
            flex-direction: column; /* Asegurar que los íconos y textos no se desajusten */
            align-items: center;
            text-align: center;
        }
    
        .social-container {
            justify-content: center;
        }
    
        .submit_form {
            width: 100%; /* Asegurar que el botón ocupe todo el ancho */
        }
    }

    /* Estilo para centrar el toast en la pantalla */
    .toast-container-center {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1050; /* Asegura que esté por encima del contenido */
        width: auto;
        max-width: 400px;
    }

    @media (max-width: 768px) {
        .xcrud-top-actions .btn {
            width: 40px; /* Mantiene los botones compactos */
            padding: 8px; /* Ajusta el padding */
            text-align: center;
        }
        
        .xcrud-top-actions .btn i {
            font-size: 1.2rem; /* Ajusta el tamaño del icono */
        }
    
        .xcrud-top-actions .btn span {
            display: none; /* Oculta el texto en pantallas pequeñas */
        }
    }

    .fc-day-header, .fc-day {
        width: 14.28% !important; /* Distribuye equitativamente los 7 días de la semana */
        min-width: 100px;
    }