#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1001;
}

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1001;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #3498db;

    -webkit-animation: spin 2s linear infinite;
    /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 2s linear infinite;
    /* Chrome, Firefox 16+, IE 10+, Opera */

    z-index: 1002;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #e74c3c;

    -webkit-animation: spin 3s linear infinite;
    /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 3s linear infinite;
    /* Chrome, Firefox 16+, IE 10+, Opera */
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #f9c922;

    -webkit-animation: spin 1.5s linear infinite;
    /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 1.5s linear infinite;
    /* Chrome, Firefox 16+, IE 10+, Opera */
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);
        /* IE 9 */
        transform: rotate(0deg);
        /* Firefox 16+, IE 10+, Opera */
    }

    100% {
        -webkit-transform: rotate(360deg);
        /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);
        /* IE 9 */
        transform: rotate(360deg);
        /* Firefox 16+, IE 10+, Opera */
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);
        /* IE 9 */
        transform: rotate(0deg);
        /* Firefox 16+, IE 10+, Opera */
    }

    100% {
        -webkit-transform: rotate(360deg);
        /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);
        /* IE 9 */
        transform: rotate(360deg);
        /* Firefox 16+, IE 10+, Opera */
    }
}

#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background: #222222;
    z-index: 1001;
    -webkit-transform: translateX(0);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(0);
    /* IE 9 */
    transform: translateX(0);
    /* Firefox 16+, IE 10+, Opera */
}

#loader-wrapper .loader-section.section-left {
    left: 0;
}

#loader-wrapper .loader-section.section-right {
    right: 0;
}

/* Loaded */
.loaded #loader-wrapper .loader-section.section-left {
    -webkit-transform: translateX(-100%);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(-100%);
    /* IE 9 */
    transform: translateX(-100%);
    /* Firefox 16+, IE 10+, Opera */

    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader-wrapper .loader-section.section-right {
    -webkit-transform: translateX(100%);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(100%);
    /* IE 9 */
    transform: translateX(100%);
    /* Firefox 16+, IE 10+, Opera */

    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
    visibility: hidden;

    -webkit-transform: translateY(-100%);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateY(-100%);
    /* IE 9 */
    transform: translateY(-100%);
    /* Firefox 16+, IE 10+, Opera */

    -webkit-transition: all 0.3s 1s ease-out;
    transition: all 0.3s 1s ease-out;
}

p {
    line-height: 1.8;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #ffffff;
}

.container-fluid {
    max-width: 1770px;
}

.tm-container-small {
    max-width: 1050px;
}

.btn {
    border-radius: 0;
}

.btn-primary {
    background-color: #ffffff;
    border: 0;
    border-radius: 5px;
    padding: 12px 50px 14px;
    font-size: 1.2rem;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #086969;
}

.btn-primary.disabled,
.btn-primary:disabled {
    background-color: #009999;
    pointer-events: all;
    cursor: not-allowed;
}

.form-control {
    padding: 10px 20px;
    width: 100%;
    height: auto;
}

.tm-btn-big {
    padding: 12px 90px 14px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-brand {
    color: #3399CC;
    font-size: 1.6rem;
}

.navbar-brand i {
    font-size: 2rem;
}


.tm-mt-60 {
    margin-top: 60px;
}

.tm-mb-50 {
    margin-bottom: 50px;
}

.tm-mb-74 {
    margin-bottom: 74px;
}

.tm-mb-90 {
    margin-bottom: 90px;
}

.tm-text-primary {
    color: #ffffff;
}

.tm-text-secondary {
    color: #CC6699;
}

a.tm-text-primary:hover {
    color: #ffffff;
}

.tm-bg-gray {
    background-color: rgb(51, 51, 51);
}

.tm-input-paging {
    width: 40px;
    border-radius: 0;
    border: 1px solid #CCCCCC;
    background: #f4f4f4;
    text-align: center;
}

.nav-item {
    margin-right: 30px;
}

.nav-item:last-child {
    margin-right: 0;
}

.nav-link {
    color: #666666;
    border-bottom: 4px solid transparent;
    font-size: 1.2rem;
}

.nav-link-1.active,
.nav-link-1:hover {
    border-color: #6156ff;
}

.nav-link-2.active,
.nav-link-2:hover {
    border-color: #6156ff;
}

.nav-link-3.active,
.nav-link-3:hover {
    border-color: #6156ff;
}

.nav-link-4.active,
.nav-link-4:hover {
    border-color: #6156ff;
}

.tm-search-input:focus {
    border-color: #009999;
    box-shadow: 0 0 0 0.25rem rgb(0 153 153 / 0.25);
}



p,
.tm-text-gray {
    color: #ffffff;
    text-align: justify;
}

.tm-text-gray-light {
    color: #fffdfd;
}

.tm-text-gray-dark {
    color: #666;
}

.tm-video-item {
    position: relative;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
}

.tm-video-item img {
    position: relative;
    display: block;
    min-height: 100%;
    max-width: 100%;
    opacity: 0.8;
}

.tm-video-item figcaption {
    padding: 2em;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.25em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.tm-video-item figcaption::before,
.tm-video-item figcaption::after {
    pointer-events: none;
}

.tm-video-item figcaption,
.tm-video-item figcaption>a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tm-video-item figcaption>a {
    z-index: 1000;
    text-indent: 200%;
    white-space: nowrap;
    font-size: 0;
    opacity: 0;
}

.tm-video-item h2 {
    word-spacing: -0.15em;
    font-weight: 300;
}

.tm-video-item h2,
.tm-video-item p {
    margin: 0;
}

.tm-video-item p {
    letter-spacing: 1px;
    font-size: 68.5%;
}

.tm-gallery div.d-block {
    animation: show .5s ease;
}

@keyframes show {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.tm-paging-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    font-size: 1.1rem;
    color: #999;
    background-color: #EEEEEE;
    margin: 10px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tm-paging-link:hover,
.tm-paging-link.active {
    background-color: #009999;
    color: #fff;
}

/*---------------*/
/***** Ming *****/
/*---------------*/

figure.effect-ming {
    background: #030c17;
}

figure.effect-ming img {
    opacity: 0.9;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;
}

figure.effect-ming figcaption::before {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    border: 2px solid #fff;
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.2);
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: scale3d(1.4, 1.4, 1);
    transform: scale3d(1.4, 1.4, 1);
}

figure.effect-ming h2 {
    font-size: 1.3em;
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
}

figure.effect-ming:hover figcaption::before,
figure.effect-ming:hover h2 {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

figure.effect-ming:hover figcaption {
    background-color: rgba(58, 52, 42, 0);
}

figure.effect-ming:hover img {
    opacity: 0.4;
}

.tm-footer-links li {
    list-style: none;
    margin-bottom: 20px;
}

.tm-footer-links li a {
    color: #410000;
}

.tm-footer-links li a:hover {
    color: #300000;
}



.tm-footer {
    font-size: 0.95rem;
}

.tm-footer-title {
    font-size: 1.4rem;
    text-align-last: center;
}

/* Videos */
#tm-video-container {
    max-height: 400px;
    overflow: hidden;
    background-color: #333;
    margin-bottom: 90px;
    position: relative;
}

#tm-video {
    display: block;
    width: 100%;
    height: auto;
}

#tm-video-control-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    color: #e1e1e1;
}

.tm-video-details {
    height: 100%;
    padding: 40px;
}

/* About */
.tm-row-1640 {
    max-width: 1640px;
}

.tm-about-2-col {
    max-width: 716px;
}

.tm-about-3-col {
    max-width: 540px;
}

.tm-about-2-col,
.tm-about-3-col {
    margin-bottom: 50px;
}

.tm-footer-icon {
    width: 80px;
    /* Tamaño de los iconos */
    height: 80px;
    transition: transform 0.3s ease;
    /* Efecto de hover (opcional) */
    margin-right: 12px;
    /* Espacio adicional entre icono y texto */
}

.tm-footer-icon:hover {
    transform: scale(1.4);
    /* Efecto de hover (opcional) */
}

.tm-social-icon {
    width: 50px;
    /* Tamaño de los iconos */
    height: 50px;
    transition: transform 0.3s ease;
    /* Efecto de hover (opcional) */
    margin-right: 12px;
    /* Espacio adicional entre icono y texto */
}

.tm-social-icon:hover {
    transform: scale(1.4);
    /* Efecto de hover (opcional) */
}

.tm-about-icon-container {
    width: 150px;
    height: 150px;
    border: 1px solid #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tm-about-img-text {
    max-width: 940px;
}

/* Contact */
select.form-control {
    border-radius: 0;
}

select.form-control option {
    height: 30px;
}



.mapouter {
    position: relative;
    height: 480px;
    width: 100%;
    max-width: 480px;
}

.gmap-canvas {
    overflow: hidden;
    background: none !important;
    height: 480px;
    width: 100%;
}

.tm-contact-form {
    max-width: 420px;
}

.tm-address-col {
    max-width: 520px;
}

.tm-contacts {
    padding-left: 0;
}

.tm-contacts li {
    list-style: none;
    margin-bottom: 20px;
}

.tm-contacts li a i {
    width: 30px;
}

.tm-social {
    display: flex;
}

.tm-social {
    list-style: none;
    margin-bottom: 20px;
    margin-right: 15px;
}

.tm-social li a i {
    width: 40px;
    height: 40px;
    color: #666666;
    background-color: #EEEEEE;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tm-social li a:hover i {
    color: #fff;
    background-color: #009999;
}

.form-control,
input:-internal-autofill-selected,
select:not([multiple]) {
    color: #009999 !important;
}

.form-control::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #009999;
    opacity: 1;
    /* Firefox */
}

@media (max-width: 991px) {
    .navbar-collapse {
        z-index: 1000; 
        position: fixed;
        top: 50px;
        right: 0px;
        background: white;
        width: 150px;
        padding: 15px;
    }

    .tm-container-content {
        max-width: 870px;
    }

    .tm-contact-form,
    .tm-address-col,
    .mapouter {
        max-width: 100%;
    }

    .tm-people-row {
        max-width: 900px;
    }
}

@media (max-width: 767px) {
    .tm-paging-col {
        flex-direction: column;
    }

    .tm-paging {
        flex-wrap: wrap;
    }

    .tm-about-img-text {
        max-width: 640px;
    }

    .tm-about-2-col,
    .tm-about-3-col {
        margin-bottom: 50px;
    }
}

@media (max-width: 575px) {
    .tm-container-content {
        max-width: 420px;
    }

    .tm-search-form {
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
        justify-content: center;
    }

    .tm-search-input {
        width: 100%;
        max-width: 360px;
    }

    .tm-people-row {
        max-width: 420px;
    }
}

@media (max-width: 400px) {
    .tm-btn-big {
        padding: 12px 50px 14px;
    }
}

@media (max-width: 334px) {
    .tm-social-icon {
        flex-wrap: wrap;
        justify-content: start !important;
    }

    .tm-social-icon {
        margin-right: 40px;
    }
}

.image-container {
    overflow: hidden;
    width: 80%;
    max-width: 800px;
}

/* Estilos para la animación de deslizamiento */
.slide-in {
    transform: translateX(-110%);
    /* La imagen comienza fuera de la vista */
    opacity: 0;
    transition: transform 1s ease-out, opacity 1s ease-out;
}

.slide-in.active {
    transform: translateX(5%);    /* La imagen se mueve a su posición original */
    opacity: 1;
}


/* Estilos para el cuadro de texto */
.info-box {
    /* Dimensiones y espaciado */
    width: 90%;
    max-width: 500px;
    min-width: 200px;
    height: auto;
    padding: 10px;
    margin: auto;
    /* Centrado automático */

    /* Estilos visuales */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    background-color: #f0f0f0;
    transition: all 0.3s ease;
    overflow: hidden;
    display: block;
    /* Necesario para centrado */

    /* Contenido interno */
    .info-text {
        font-family: 'Antonio', sans-serif;
        margin-bottom: 8px;
        font-size: 1.2rem;
        line-height: 1.3;
        color: rgb(255, 255, 255);
        font-weight: bold;
        text-align: center;
        /* Centrado en móvil */
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        word-break: break-word;
    }
}

/* Responsive para tablets (768px+) */
@media (min-width: 768px) {
    .info-box {
        width: 70%;
        padding: 20px;


        .info-text {
            font-size: 1.3rem;
            text-align: left;
            /* Alineación izquierda */
        }
    }
}

/* Responsive para escritorio (992px+) */
@media (min-width: 992px) {
    .info-box {
        width: 500px;
        padding: 30px;
        justify-content: center;
        /* Centrado horizontal */

        .info-text {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
    }
}

/* Animación al hacer hover */
.info-box:hover {
    transform: translateY(-10px);
    /* Efecto de levantar */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    /* Sombra más pronunciada */
}

.animated-box {
    background-color: rgba(0, 87, 184, 0.781);
    transition: transform 0.5s ease;
    /* Transición suave */
}

/* Estilos para la imagen */
.rounded-image {
    border-radius: 20px;
    /* Bordes redondeados */
    width: 40%;
    /* Altura automática */
    height: auto;
    /* Ancho de la imagen */
    transition: transform 1s ease-out, opacity 1s ease-out;
    /* Transición suave */
    display: inline-block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
    /* Sombra */
}

.rounded-images {
    border-radius: 20px;
    /* Bordes redondeados */
    width: 40%;
    /* Altura automática */
    height: auto;
    /* Ancho de la imagen */
    transition: transform 1s ease-out, opacity 1s ease-out;
    /* Transición suave */
    display: inline-block;
    box-shadow: 0 4px 8px rgba(0, 18, 182, 0.507);
    /* Sombra */
}

.rouded-image-large {
    border-radius: 20px;
    width: 30%;
    /* Ancho automático */
    height: 280%;
    /* Altura automática */
}

.difuminado {
    opacity: 0.7;
    width:100%;
    height: 150px;
    object-fit: cover;
}

.footer-header-image {
  width: 100%;      /* ocupa todo el ancho disponible */
  overflow: hidden; /* evita que se desborde */
}
.footer-header-image img {
  width: 100%;      /* ajusta el ancho al contenedor */
  height: auto;     /* mantiene la proporción */
  display: block;   /* quita el espacio blanco debajo */
  max-width: 100%;  /* evita que se “salga” */

}

/*
/* Estilos para la lista con íconos de Font Awesome */
/*.custom-list li {
/*    margin-bottom: 15px;    /* Espaciado entre elementos de la lista */
/*    font-size: 1.4rem;    /* Tamaño de la fuente */
/*    display: flex;
    align-items: center;
  /* Alinea el ícono y el texto verticalmente */
/*    color: rgb(0, 87, 184);
    font-weight: bold;
}*/
.custom-list {
  list-style: none; /* quitamos viñetas */
  padding: 0;
  margin: 0;
}

.custom-list li {
  position: relative;
  align-items: flex-start; /* alinea el texto con el ícono */
  padding-left: 2rem; /* espacio para el icono */
  margin-bottom: 1rem; /* separación entre ítems */
  font-size: 1.5rem; /* tamaño base que escala en responsive */
  line-height: 1.5;
}

.custom-list li::before {
  content: "";
  background: url("right-arrow.png") no-repeat center;
  background-size: contain; /* se ajusta automáticamente */
  width: 2rem;  /* tamaño relativo al texto */
  height: 1rem;
  position: absolute;
  left: 0;
  top: 0.5rem; /* ajuste vertical */
}

/* Responsivo */
@media (max-width: 768px) {
  .custom-list li {
    font-size: 0.95rem; /* texto un poco más chico */
    padding-left: 1.6rem; /* menos espacio lateral */
  }

  .custom-list li::before {
    width: 0.9rem;
    height: 0.9rem;
    top: 0.25rem;
  }
}

@media (max-width: 480px) {
  .custom-list li {
    font-size: 0.9rem; 
    padding-left: 1.4rem;
  }

  .custom-list li::before {
    width: 0.8rem;
    height: 0.8rem;
    top: 0.2rem;
  }
}

.list-icon {
    margin-right: 5px;    /* Espacio entre el ícono y el texto */
    width: 20px;
    height: 20px;
}

/* Estilos para el contenedor de la lista */
.list-container {
    text-align: left;
    /* Alineación del texto */
    max-width: 700px;
    /* Ancho máximo de cada lista */
}

/* Estilos para el contenedor de las dos listas */
.lists-container {
    margin-top: 20px;
    /* Espacio superior reducido para móviles */
    display: flex;
    flex-direction: column;
    /* Apila las listas en móviles */
    align-items: center;
    /* Centra verticalmente en móviles */
    gap: 20px;
    /* Espacio reducido entre listas en móviles */
    max-width: 100%;
    /* Ocupa el ancho completo en móviles */
    padding: 0 15px;
    /* Padding lateral para evitar pegado a bordes */
    margin-left: auto;
    margin-right: auto;
}

/* Tablet (768px en adelante) */
@media (min-width: 768px) {
    .lists-container {
        flex-direction: row;
        /* Vuelve a disposición horizontal */
        justify-content: center;
        /* Centra las listas horizontalmente */
        gap: 30px;
        /* Espacio intermedio entre listas */
        margin-top: 30px;
        /* Espacio superior ajustado */
        padding: 0 20px;
        /* Padding lateral reducido */
    }
}

/* Escritorio (992px en adelante) */
@media (min-width: 992px) {
    .lists-container {
        gap: 60px;
        /* Espacio original entre listas */
        margin-top: 40px;
        /* Espacio superior original */
        max-width: 1200px;
        /* Ancho máximo original */
        padding: 0;
        /* Elimina padding lateral si es necesario */
    }
}


/*La cabecera */
.tm-hero {
    height: 20vh;
    /* Ocupa el 100% del alto de la ventana */
    min-height: 100px;
    /* Altura mínima */
    background-size: auto;
    /* La imagen cubre todo el contenedor */
    background-position: center;
    /* Centra la imagen */
    background-repeat: no-repeat;
    /* Evita que la imagen se repita */
    display: flex;
}

/*El pie de pagina*/
.ingredientes-title {
    font-family: 'Antonio', sans-serif;
    font-weight: 550;
    color: rgb(255, 255, 255);
    text-align: left;
    text-shadow: 2px 2px 4px rgb(0, 0, 0);
    margin: 0;
    /* Reset del margen para móviles */
    position: relative;
    /* Cambio a relativo para mejor control en móviles */
    left: auto;
    /* Reset de posición fija */
    transform: none;
    /* Eliminamos el transform */
    padding: 20px;
    /* Espaciado general */
    font-size: 2rem;
    /* Tamaño base para móviles */
}

/* Tablet (768px en adelante) */
@media (min-width: 768px) {
    .ingredientes-title {
        font-size: 2.5rem;
        margin-left: 50px;
    }
}

/* Escritorio (992px en adelante) */
@media (min-width: 992px) {
    .ingredientes-title {
        font-size: 3rem;
        margin-left: 100px;
        position: absolute;
        left: 100px;
        transform: translateY(-50%);
    }
}

.higiene-title {
    font-family: 'Antonio', sans-serif;
    /* Fuente personalizada */
    font-weight: 550;
    /* Texto en negrita */
    font-size: 3rem;
    /* Tamaño de la fuente */
    color: rgb(255, 255, 255);
    /* Color del texto */
    text-align: center;
    /* Alineación a la izquierda */
    margin-left: 100px;
    /* Margen izquierdo */
    /*position: ; /* Posicionamiento absoluto */
    left: 100px;
    /* Posición  */
    transform: translateY(-50%);
    /* Ajuste fino para centrar */
    text-shadow: 2px 4px 4px rgb(0, 0, 0);
    /* Sombra suave */
}

.title-footer {
    font-family: Arial, sans-serif;
    /* Fuente del texto */
    font-size: 2rem;
    /* Tamaño de la fuente */
    color: rgb(238, 231, 231);
    font-weight: bold;
    text-shadow: 2px 4px 4px rgb(65, 65, 65);
    /* Sombra suave*/
}

.title {
    font-family: Arial, sans-serif;
    /* Fuente del texto */
    font-size: 2rem;
    /* Tamaño de la fuente */
    color: rgb(134, 134, 134);
    font-weight: bold;
    text-shadow: 2px 4px 4px rgb(192, 191, 191);
    /* Sombra suave */
}

.cuadro-titulo {
    text-align: center;
    /* Centra el texto */
    margin-bottom: 30px;
    /* Espacio entre el título y las listas */
}

.listas-wrapper {
    display: flex;
    /* Coloca las listas en una fila */
    justify-content: space-between;
    /* Espacio entre las listas */
}


/* Estilos para el contenedor principal */

.rounded-container {
    display: flex;
    justify-content: flex-end;
    /* Distribuye el espacio entre la imagen y el cuadro de texto */
    align-items: center;
    /* Reducimos el espacio entre la imagen y el cuadro de texto */
    padding: 5px;
    /* Espacio interno */
    max-width: 1100px;
    /* Ancho máximo del contenedor */
    margin: auto;
    /* Centrar el contenedor */
    flex-wrap: wrap;
    /* Permite que los elementos se envuelvan en pantallas pequeñas */
}

.rounded-container-accesorio {
    display: flex;
    justify-content: center;/* imagen y bordes de la hoja*/
    
    /* Reducimos el espacio entre la imagen y el cuadro de texto */
    align-items: center; 
    gap: 0;
    padding: 5px;
    /* Espacio interno */
    max-width: 1100px;
    /* Ancho máximo del contenedor */
    margin: auto;
    /* Centrar el contenedor */
    flex-wrap: wrap;
    /* Permite que los elementos se envuelvan en pantallas pequeñas */
}

/* Estilos responsivos */
@media (max-width: 767px) {
    .rounded-container {
        display: flex;
        flex-direction: row;
        /* Apila los elementos en pantallas pequeñas */
        align-items: center;
        /* Centra los elementos horizontalmente */
        justify-content: center;
        /* Centra los elementos verticalmente */
        gap: 9px;
        /* Espacio entre la imagen y el cuadro de texto */
        width: 100%;
        /* Asegura que el contenedor ocupe todo el ancho */
        justify-content: center;
    }

    .rounded-container-accesorio {
        display: flex;
        flex-direction: column;
        /* Apila los elementos en pantallas pequeñas */
        align-items: center;
        /* Centra los elementos horizontalmente */
        justify-content: center;
        /* Centra los elementos verticalmente */
        gap: 10px;
        /* Espacio entre la imagen y el cuadro de texto */
        width: 100%;
        /* Asegura que el contenedor ocupe todo el ancho */
        margin: 0 auto;
        /* Centra el contenedor en la pantalla */
        text-align: center;
        /* Centra el texto dentro del contenedor */
    }

    .info-box {
        width: 80%;
        /* Ocupa el 80% del ancho en pantallas pequeñas */
        margin-top: 5px;
        /* Espacio entre la imagen y el cuadro de texto */
        margin-left: 100px;
    }
    .info-text {
        font-size: 1rem;
        /* Tamaño de fuente más pequeño en móviles */
        text-align: center;
        /* Centra el texto en móviles */
    }

    .rounded-image {
        width: 40%;
        /* La imagen ocupa el 40% del ancho en pantallas pequeñas */
        display: block;
        /* Asegura que la imagen se comporte como un bloque */
        margin: 0 auto;
        /* Centra la imagen horizontalmente */

    }


    .tm-hero {
        height: 10vh;
        /* Reduce la altura en móviles */
        min-height: 100px;
        /* Altura mínima para móviles */
    }

    h1.text-left {
        font-size: 1rem;
        /* Reduce el tamaño en móviles */
        margin-left: 10px;
        /* Ajusta el margen */
        top: 30%;
        /* Ajusta la posición vertical */
    }

}

.cuadro-punteado {
    /* Modelo de caja */
    box-sizing: border-box;
    padding: 16px;
    width: fit-content;
    margin: 0 auto; /* Centra el div */
    display: block; /* Cambiado de inline-block a block para que funcione el centrado */

    /* Estilo visual */
    border: 3px dotted #333;
    border-radius: 8px;
    background-color: transparent; /* en vez de #3936d600 */

}

.info-text-foot {
    font-family: 'Antonio', sans-serif;
    text-align: start;   /* 👉 centra el texto */
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.3;
    word-break: break-word;
    color: rgb(0, 87, 184);
    margin: 0; /* ya no necesitas margen extra */
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

* {
  scroll-behavior: inherit !important;
}

/*===================
40. Contact us css 
=====================*/

.contact-wrapper {
  position: relative;
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.contact-img{
  position: relative;
  padding-left: 20px;
}

.contact-img::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 100%;
  background: #6156ff;
  border-radius: 20px 0 0 20px;
  clip-path: polygon(100% 0, 20% 50%, 100% 100%, 0 100%, 0 0);
  z-index: -1;
}

.contact-img img{
  width: 100%;
  clip-path: polygon(100% 0, 100% 100%, 10% 100%, 0 50%, 10% 0);
}

.contact-form{
  padding: 25px;
}

.contact-form-header {
  margin-bottom: 30px;
}

.contact-form-header h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  color:  var(--color-dark);
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form .form-group .form-control {
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: none;
  transition: var(--transition);
}

.contact-form .form-group .form-control:focus {
  border-color: var(--theme-color2);
}

.contact-map {
  margin-bottom: -9px;
}

.contact-map iframe {
  width: 100%;
  height: 450px;
}

.contact-content {
  margin-bottom: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 35px;
  padding: 30px 20px;
  position: relative;
  margin-bottom: 25px;
  border-radius: 50px 50px 50px 0;
  background:var(--color-white);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.contact-info::before{
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -8px;
  background: #6156ff;
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
  height: 20px;
  z-index: -1;
}

.contact-info-icon{
  font-size: 35px;
  color: var(--color-gray);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  position: relative;
  border-radius: 30px;
  background: var(--theme-color);
}

.contact-info-icon::before{
  content: "";
  position: absolute;
  left: -15px;
  right: -15px;
  top: -15px;
  bottom: -15px;
  border: 3px solid var(--theme-color);
  border-radius: 40px;
}

.contact-info h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color:  var(--color-dark);
}

.contact-info p{
  color:  var(--color-dark);
  font-weight: 500;
  font-size: 16px;
}


@media all and (max-width: 768px) {
  .contact-content {
    margin-bottom: 50px;
  }
}



/*====================
8. Theme button contact
======================*/

.theme-btn {
  font-size: 14px;
  color: #009999;
  padding: 14px 20px;
  transition: var(--transition);
  text-transform: uppercase;
  position: relative;
  border-radius: 50px 50px 50px 0;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  background: var(--theme-color2);
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.theme-btn::before {
  content: "";
  height: 300px;
  width: 300px;
  background:  var(--theme-color);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.theme-btn:hover {
  color: var(--color-white);
}

.theme-btn:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

.theme-btn i {
  margin-left: 5px;
}

.theme-btn span {
  margin-right: 5px;
}

.theme-btn2{
  background: var(--color-white);
  color: var(--color-dark);
}

.theme-btn2::before{
  background: var(--theme-color);
}

.theme-btn2:hover{
  color: var(--color-white);
}
