/* Estilos para pantallas extra-pequeñas (xs) */
.dropdown-menu {
    min-width: auto;
    /* Ajusta automáticamente el ancho según el contenido */
}

/* Estilos para pantallas pequeñas (sm) */
@media (min-width: 576px) {
    .dropdown-menu {
        min-width: 10rem;
        /* Establece un ancho mínimo de 10 rem */
    }
}

/* Estilos para pantallas medianas (md) */
@media (min-width: 768px) {
    .dropdown-menu {
        min-width: 15rem;
        /* Establece un ancho mínimo de 15 rem */
    }
}

/* Estilos para pantallas grandes (lg) */
@media (min-width: 992px) {
    .dropdown-menu {
        min-width: 50rem;
        /* Establece un ancho mínimo de 20 rem */
    }
}

/* Estilos para pantallas extra-grandes (xl) */
@media (min-width: 1200px) {
    .dropdown-menu {
        min-width: 50rem;
        /* Establece un ancho mínimo de 25 rem */
    }
}

/* Estilos para pantallas extra-extra-grandes (xxl) */
@media (min-width: 1400px) {
    .dropdown-menu {
        min-width: 50rem;
        /* Establece un ancho mínimo de 30 rem */
    }
}

/* Media Queries para dispositivos móviles */
@media (max-width: 768px) {
    .containercontact {
      flex-direction: column; 
      padding: 20px;
      height: auto; 
    }
  
    .textcontact {
      max-width: 100%; 
      text-align: center; 
    }
  
    .h1contact {
      font-size: 36px; 
    }
  
    .pcontact {
      font-size: 16px; 
    }
  
    .imagecontact {
      max-width: 100%; 
      text-align: center; 
      margin-top: 20px; 
    }
  
    .imagecontact img {
      width: 80%;
    }
  }

  /* Media Queries para tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .containercontact {
      padding: 25px; 
    }
  
    .h1contact {
      font-size: 42px; 
    }
  
    .pcontact {
      font-size: 17px; 
    }
  
    .imagecontact img {
      width: 90%; 
    }
  }


/* Media Queries para dispositivos móviles */
@media (max-width: 768px) {
    .sales-title {
      font-size: 28px; 
    }
  
    .sales-text {
      font-size: 16px; 
    }
  
    .sales-highlights {
      flex-direction: column; 
    }
  
    .sales-highlights p {
      font-size: 16px; 
    }
  }
  
  /* Media Queries para tablets */
  @media (min-width: 769px) and (max-width: 1024px) {
    .sales-title {
      font-size: 32px; 
    }
  
    .sales-text {
      font-size: 17px; 
    }
  
    .sales-highlights p {
      font-size: 17px; 
    }
  }

  @media screen and (max-width: 768px) {
    .container-what {
      flex-direction: column;
      padding: 20px;
      gap: 20px;
    }
  
    .text-what,
    .image-what {
      width: 100%;
      flex: unset;
      padding: 0;
    }
  
    .image-what {
      transform: none !important;
      opacity: 1 !important;
      max-width: 100%;
      overflow: hidden;
    }
  
    .image-what img {
      width: 100%;
      height: auto;
      object-fit: contain;
      display: block;
    }
  
    html, body {
      overflow-x: hidden; /* Prevenir desplazamiento horizontal */
    }
  }
  
  @media screen and (max-width: 480px) {
    .text-what h2 {
      font-size: 24px;
    }
  
    .text-what p {
      font-size: 16px;
    }
  }
  

@media (max-width: 768px) {
  .container-what {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  .text-what,
  .image-what {
    width: 100%;
    flex: unset;
    padding: 0;
  }

  .image-what {
    transform: none !important;
    opacity: 1 !important;
  }

  .image-what img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  html, body {
    overflow-x: hidden;
  }
}
/* Tablet Landscape (1024px o menos) */
@media (max-width: 1024px) {
  .anniversary-banner {
    padding: 50px 0;
  }
  
  .text-us h1 {
    font-size: 42px;
  }
}

/* Tablet Portrait (768px o menos) */
@media (max-width: 768px) {
  .anniversary-banner {
    padding: 40px 0;
  }
  
  .content-us {
    flex-direction: column;
  }
  
  .text-us {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .text-us h1 {
    font-size: 36px;
  }
  
  .image-us {
    width: 70%;
  }
}

/* Teléfonos grandes (576px o menos) */
@media (max-width: 576px) {
  .anniversary-banner {
    padding: 30px 0;
  }
  
  .text-us h1 {
    font-size: 28px;
  }
  
  .image-us {
    width: 85%;
  }
}

/* Teléfonos pequeños (400px o menos) */
@media (max-width: 400px) {
  .text-us h1 {
    font-size: 24px;
  }
  
  .image-us {
    width: 95%;
  }
}

/* Orientación horizontal en móviles */
@media (max-height: 500px) and (orientation: landscape) {
  .anniversary-banner {
    padding: 20px 0;
  }
  
  .content-us {
    flex-direction: row;
  }
  
  .text-us {
    width: 60%;
    text-align: left;
    margin-bottom: 0;
  }
  
  .image-us {
    width: 35%;
  }
}




@media (max-width: 1024px) {
    .container-us-1 {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .image-us-1 {
        margin-left: 0; /* Quitar margen en móviles */
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .image-us-1 img {
        width: 100%;
        height: auto;
        max-width: 450px; /* Evita que sea demasiado grande */
    }
    .content-us-1 {
        padding: 20px;
    }
    .title-us-1 {
        font-size: 24px; /* Reducir tamaño del título */
    }
}
@media screen and (max-width: 1024px) {
    .container-values {
      flex-direction: column;
      height: auto;
      gap: 15px;
      padding: 20px;
    }
  
    .box-values {
      width: 90%;
      height: auto;
      padding: 15px;
    }
  
    .box-values i {
      font-size: 45px;
      top: 50px;
    }
  
    .box-values h2 {
      font-size: 24px;
      top: 15px;
    }
  
    .box-values p {
      margin-top: 100px;
      font-size: 16px;
    }
  }
  
  @media screen and (max-width: 768px) {
    .container-values {
      gap: 10px;
    }
  
    .box-values {
      width: 95%;
      padding: 10px;
    }
  
    .box-values i {
      font-size: 40px;
      top: 40px;
    }
  
    .box-values h2 {
      font-size: 22px;
      top: 10px;
    }
  
    .box-values p {
      font-size: 15px;
      margin-top: 90px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .container-values {
      padding: 10px;
    }
  
    .box-values {
      width: 100%;
      height: auto;
      padding: 10px;
    }
  
    .box-values i {
      font-size: 35px;
      top: 30px;
    }
  
    .box-values h2 {
      font-size: 20px;
      top: 5px;
    }
  
    .box-values p {
      font-size: 14px;
      margin-top: 80px;
    }
  }

  /* Ajuste para pantallas pequeñas */
@media (max-width: 768px) {
  .img-logo img {
    max-width: 400px; /* Tamaño más grande en móviles sin romper el diseño */
  }
}
/* Para hacerlo más responsivo */
@media (max-width: 768px) {
  .hero-area {
    height: 600px;
  }
  .img-logo img {
    max-width: 300px;
  }
}


/* TABLETS (601px - 992px) */
@media (min-width: 601px) and (max-width: 992px) {
  .productos {
    padding: 200px 100px;
  }
  
  .contenido {
    padding: 30px;
    width: 85%;
  }
  
  .h1-productos {
    font-size: 2.2rem;
  }
  
  .p-productos {
    font-size: 1.1em;
  }
}

/* MÓVILES GRANDES (481px - 600px) */
@media (min-width: 481px) and (max-width: 600px) {
  .productos {
    padding: 150px 50px;
  }
  
  .contenido {
    padding: 25px;
  }
  
  .h1-productos {
    font-size: 2rem;
  }
}

/* MÓVILES PEQUEÑOS (hasta 480px) */
@media (max-width: 480px) {
  .productos {
    padding: 100px 20px;
    height: auto;
    min-height: 100vh;
  }
  
  .video-background {
    height: 100%;
  }
  
  .contenido {
    padding: 20px;
    width: 95%;
    border-radius: 15px;
  }
  
  .h1-productos {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .p-productos {
    font-size: 1em;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  }
}

/* Media Queries para pantallas pequeñas */
@media (max-width: 768px) {
  .info-section {
    padding: 20px;
    gap: 15px;
  }

  .info-card {
    width: 100%; /* Ajustar el tamaño de las tarjetas */
    min-height: 300px; /* Reducir la altura mínima */
    padding: 20px; /* Reducir el padding */
  }

  .info-card h3 {
    font-size: 16px; /* Reducir el tamaño de fuente */
  }

  .info-card p {
    font-size: 12px; /* Reducir el tamaño de fuente */
  }

  .icon {
    font-size: 30px; /* Reducir el tamaño del icono */
  }

  .info-button {
    font-size: 14px; /* Reducir el tamaño de fuente del botón */
    padding: 8px 16px; /* Reducir el tamaño del padding del botón */
  }
}
/* 📱 Media Queries para tablets y móviles */
@media (max-width: 1024px) {
  .container-values {
    gap: 15px;
  }
  
  .box-values {
    max-width: 320px;
    height: auto;
    padding: 15px;
  }
  
  .box-values h2 {
    font-size: 22px;
  }
  
  .box-values i {
    font-size: 50px;
    top: 50px;
  }

  .box-values p {
    font-size: 15px;
    margin-top: 120px;
  }
}

@media (max-width: 1024px) {
  .container-values {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 20px;
  }

  .box-values {
    width: 90%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .box-values {
    width: 100%;
    max-width: 320px;
  }

  .box-values h2 {
    font-size: 24px;
  }

  .box-values p {
    font-size: 16px;
  }

  .box-values i {
    font-size: 50px;
  }
}


/* Media query para dispositivos con un ancho de pantalla menor a 768px (teléfonos móviles) */
@media (max-width: 768px) {
  .container-ob {
    padding: 20px; /* Reduce el padding en dispositivos móviles */
  }

  .title-ob h1 {
    font-size: 1.8rem; /* Ajusta el tamaño del título para pantallas pequeñas */
  }

  .text-ob p {
    font-size: 0.9rem; /* Reduce el tamaño del texto */
    max-width: 100%; /* Asegura que el texto se ajuste a la pantalla */
  }

  .images-ob img {
    width: 90%; /* Asegura que las imágenes no sean demasiado grandes */
    max-width: 100%; /* Ajusta el ancho máximo de las imágenes */
    max-height: 250px; /* Limita la altura para que no se desborde */
  }
}

/* Media Queries para pantallas muy pequeñas (por ejemplo, móviles en modo vertical) */
@media (max-width: 480px) {
  .info-card {
    width: 100%; /* Asegurarse de que las tarjetas ocupen todo el ancho de la pantalla */
    min-height: 250px; /* Ajustar la altura mínima */
  }

  .info-card h3 {
    font-size: 14px; /* Ajustar el tamaño de fuente */
  }

  .info-card p {
    font-size: 12px; /* Ajustar el tamaño de fuente */
  }

  .icon {
    font-size: 28px; /* Ajustar el tamaño del icono */
  }

  .info-button {
    font-size: 12px; /* Ajustar el tamaño de fuente del botón */
    padding: 6px 12px; /* Ajustar el tamaño del padding */
  }
}
/* Media Queries para pantallas pequeñas */
@media (max-width: 1024px) {
  .quote {
    font-size: 3.5rem;
    text-shadow: 
      1px 1px 3px rgba(0, 0, 0, 0.8),
      -1px -1px 0 rgba(255, 255, 255, 0.2),
      1px 1px 0 rgba(0, 0, 0, 0.5);
  }
  
  .name {
    font-size: 2rem;
  }
  
  .title {
    font-size: 1.5rem;
  }
}

/* Tablet pequeña (600px a 767px) */
@media (max-width: 767px) {
  .quote {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
  }
  
  .name {
    font-size: 1.8rem;
  }
  
  .title {
    font-size: 1.3rem;
  }
  
  .text-show-credits {
    max-width: 90%;
    padding: 15px;
  }
}

/* Teléfonos móviles (hasta 599px) */
@media (max-width: 599px) {
  .quote {
    font-size: 2rem;
    line-height: 1.1;
    text-shadow: 
      1px 1px 2px rgba(0, 0, 0, 0.8),
      -1px -1px 0 rgba(255, 255, 255, 0.1),
      1px 1px 0 rgba(0, 0, 0, 0.3);
  }
  
  .name {
    font-size: 1.4rem;
  }
  
  .title {
    font-size: 1rem;
  }
  
  .text-show-credits {
    max-width: 95%;
    padding: 10px;
  }
  
  .signature {
    text-shadow: 1px 1px 1px rgba(0,0,0,0.8);
  }
}

/* Pantallas muy pequeñas (hasta 360px) */
@media (max-width: 360px) {
  .quote {
    font-size: 1.6rem;
  }
  
  .name {
    font-size: 1.2rem;
  }
  
  .title {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .banner img {
    max-height: 1000px;  /* Aumentado de 700px */
  }

  .text-overlay {
    font-size: 2rem;
  }

  .slider {
    width: 100%;
    max-width: 500px;
  }
}
@media screen and (max-width: 1024px) {
  .banner-text h1 {
    font-size: 65px; /* Reducimos en tablets */
  }
}

@media screen and (max-width: 768px) {
  .banner-text h1 {
    font-size: 50px; /* Ajuste para móviles grandes */
  }
}

@media screen and (max-width: 480px) {
  .banner-text h1 {
    font-size: 38px; /* Reducción para móviles pequeños */
  }
}

@media screen and (max-width: 1024px) {
  .banner-text p {
    font-size: 22px;
    max-width: 500px;
  }
}

@media screen and (max-width: 768px) {
  .banner-text p {
    font-size: 20px;
    max-width: 450px;
  }
}

@media screen and (max-width: 480px) {
  .banner-text p {
    font-size: 18px;
    max-width: 90%;
  }
}
@media (max-width: 576px) {
  .banner img {
    max-height: 900px;  /* Aumentado de 600px */
  }

  .text-overlay {
    font-size: 1.5rem;
  }

  .slider {
    width: 100%;
    max-width: 450px;
  }
}


/* Tablet landscape (1024px a 768px) */
@media (max-width: 1024px) and (orientation: landscape) {
  .how-process {
    min-height: 500px;
    background-size: cover;
    background-position: top center;
  }
}

/* Tablet portrait (768px a 600px) */
@media (max-width: 768px) {
  .how-process {
    height: auto;
    min-height: 80vh;
    background-size: cover;
    background-position: 60% center;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

/* Móviles grandes (600px a 480px) */
@media (max-width: 600px) {
  .how-process {
    min-height: 70vh;
    background-size: 100% auto;
    background-position: top center;
  }
  
  .how-process h1 {
    font-size: 2.8rem;
  }
}

/* Móviles pequeños (menos de 480px) */
@media (max-width: 480px) {
  .how-process {
    min-height: 60vh;
    background-size: 100% 100%;
    background-position: center center;
  }
  
  .how-process h1 {
    font-size: 2.2rem;
  }
  
  .how-process p {
    font-size: 0.95rem;
  }
}

/* Ajustes especiales para móviles en orientación horizontal */
@media (max-height: 500px) and (orientation: landscape) {
  .how-process {
    min-height: 100vh;
    background-size: cover;
    background-position: 30% center;
  }
}

/* Tablets (ancho entre 601px y 1024px) */
@media (max-width: 1024px) and (min-width: 601px) {
  .carrusel-titulo {
    font-size: 2.5rem;
  }

  .carrusel img {
    height: 70px;
  }

  .carrusel-container {
    gap: 20px;
  }
}

/* Teléfonos (ancho de 600px o menos) */
@media (max-width: 600px) {
  .carrusel-titulo {
    font-size: 2rem;
  }

  .carrusel img {
    height: 60px;
  }

  .carrusel-container {
    gap: 15px;
  }
}






.parallax-container {
    background-image: url('../img/Parallax.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /*background-attachment: fixed;*/
}

@media (max-width: 768px) {
    .parallax-container {
        height: auto;
    }
}

.parallax {
    background-image: url('../img/Contacto.jpg');
    background-size: cover;
    height: 400px;
    /* o la altura deseada */
}


.breadcrumb-item+.breadcrumb-item::before {
    color: #0D72B7;

}

.btn-blue {
    color: #FFF;
    background-color: #808b96;
    border-color: #808b96;
}

.text-blue {
    color: #0D72B7;
}

.text-brown {
    color: #b700fff5;
}

.text-red {
    color: #ab0a2f;
}

.text-pink {
    color: #df4367;
}

.text-blue-light {
    color: #006987;
}

.text-yellow {
    color: #ffc400;
}

.text-black {
    color: #111;
}

.bg-white-color {
    background-color: rgba(255, 255, 255, 0.6);
}

.bg-blue-color {
    background-color: #0D72B7;
}


.text-black {
    color: #111;
}

.dropdown-menu a:hover {
    background-color: #0D72B7;
    /* Cambia el color al que desees */
}

.dropdown-menu a:hover p {
    color: white;
    /* Cambia el color al que desees */
}

.texto-subrayado {
    text-align: center;
    /* centra el contenido horizontalmente */
    width: 50%;
    /* ajusta el ancho del contenedor según tus necesidades */
    margin: 0 auto;
    /* centra el contenedor horizontalmente */
}

.texto-subrayado h4 {
    display: inline-block;
    /* hace que el título se comporte como un elemento en línea */
    position: relative;
    /* establece la posición relativa para poder posicionar el subrayado */
    /* quita el margen por defecto */
    text-decoration-thickness: 0.2em;
}

.texto-subrayado h4::after {
    content: "";
    display: block;
    width: 100%;
    height: 0.4em;
    background-color: #FFA328;
    position: absolute;
    bottom: -0.8em;
    /* ajusta el espacio aquí */
    right: -0.3em;
    /* ajusta la posición diagonal aquí */
    transform: skew(-30deg);
    /* agrega la diagonalización */
    left: 0;
}



.text-justify {
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-align: justify;
    color: #43444b; 
    font-size: 15px; 
    font-weight: 600; 
}

.transparent {
    background-color: rgba(255, 255, 255, 0.8);
}

.whatsapp-float {
    position: fixed;
    bottom: 29px;
    right: 90px;
    z-index: 9999;
    width: 58px;
    height: 58px;
    background-color: #25D366;
    color: white;
    font-size: 20px;
    border: none;
    border-radius: 0;
    text-align: center;
    text-decoration: none;
    font-family: sans-serif;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    line-height: 45px;
    /* Ajusta la altura del botón al tamaño del ícono */
    border-radius: 50%;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #FFF;
    box-shadow: 2px 2px 3px #666;
    text-decoration: none;
}

.whatsapp-float i {
  line-height: 58px;
    font-size: 30px;
}

.icons {
    font-size: 100px;
}

.animated {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.animated.active {
    opacity: 1;
}

.card {
    max-width: 400px;
    margin: auto;
}

.avatar {
    width: 150px;
    height: 150px;
    overflow: hidden;
    margin: auto;
    border: 4px solid #ddd;
    border-radius: 50%;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    text-align: center;
}

.angkor {
    font-family: 'Overpass', sans-serif;
    font-weight: 800;
}


nav {
    font-family: 'Fraunces', serif;
}

nav a {
    font-family: 'Sofia Sans Extra Condensed', serif;
    text-decoration: none;
    color: #000; 
    margin-right: 15px;
    transition: color 0.3s ease;
    font-size: 1em; 
    text-shadow: 2px 2px 2px hwb(0 0% 100% / 0.2); 
}

nav a:hover {
    color: #0056b3; 
}
#boton-cotizar {
    font-family: 'Sofia Sans Extra Condensed', serif;
    background-color: #0D72B7; 
    color: #fff; 
    padding: 10px 20px; 
    border: none;
    border-radius: 5px; 
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    transition: background-color 0.3s ease;
    margin-top: 1.3em; 
    align-self: center; 
}

#boton-cotizar:hover {
    background-color: #003f7f; 
}
.boton-cotizar:hover {
    background-color: #003f7f;
}
.asap-bold {
    font-family: 'Alegreya', serif;
    font-weight: 800;
}

.alegreya-bold {
    font-family: 'Alegreya', sans-serif;
    font-weight: 800;

}

.alegreya-italic {
    font-family: 'Alegreya', sans-serif;
    font-style: italic;
    color: #63646f; 
    font-size: 24px; 
    font-weight: 600; 

}


.roboto-italic {
    font-family: 'Roboto', sans-serif;
    font-style: italic;
}

.roboto-bold {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.roboto-italic-bold {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-style: italic;
}

.card:hover {
    border: 1px solid #ccc;
    box-shadow: 2px 2px 10px #ffffff;
}

.size-flag {
    color: #0D72B7;
    font-size: 3rem;
}

.size-eye {
    color: #be1616;
    font-size: 3rem;
}

.size-gem {
    color: #ffc400;
    font-size: 3rem;
}

.contact-background {
    background: linear-gradient(to bottom right, #9c9999, white);
}

.btn-primary {
    background: #0D72B7;
    border: none;
}

.btn-primary:hover {
    background: #04225c;
}

.circulo-lista {
    list-style-type: circle;
}


 

