
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
    font-family: 'Provicali';
    src: url('/src/Provicali.otf') format('woff2'),
         url('/src/Provicali.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Aplicar fuentes */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Provicali', sans-serif;
    color: #273B45 ;
    text-transform: uppercase;
    font-weight:  ;
}

body {
    font-family: 'Montserrat', sans-serif ;
}


.navbar {
    background: transparent;
    padding: 10px 20px;
}
.navbar-brand {
    font-weight: bold;
    font-size: 24px;
    background: linear-gradient(90deg, #FFA927, #FF7E82);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    border-radius: 15px 0 0 15px ;
}
.nav-buttons .btn {
    background: linear-gradient(90deg, #FFA927, #FF7E82);
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 20px 0 0 20px ;
    padding: 10px 20px;
    margin: 5px;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: smaller;
}
.nav-buttons .btn:hover {
    background: linear-gradient(90deg, #FF7E82, #FFA927);
}


.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    display: block;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 1000;
}

.whatsapp-float img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.whatsapp-float img:hover {
    transform: scale(1.1);
}


.content-section {
    margin-top: 100px; /* Para evitar superposición con el menú fijo */
    padding: 2rem 0;
}

.content-section img {
    max-width: 100%;
    border-radius: 10px;
}


p{
    font-size: small;
}
 
.advanced-bg {
    background: linear-gradient(90deg, #5c5c5c, #a7a7a7);
    color: white;
    
    padding: 20px;
    border-radius: 10px;
}

.text-muted {
    color: #555;
}


.content-section h2 {
    font-size: 1.5rem;
    margin-top: 1rem;
}

.content-section p {
    margin: 0.5rem 0;
 
}

.advanced-section {
    background: linear-gradient(to right, #ffffff 50%, #f0f0f0 50%);
    padding: 2rem;
}

.advanced-section h2 {
    margin-bottom: 1rem;
}

.advanced-section ul {
    list-style-type: disc;
    padding-left: 1.5rem;
  
}

.secondary-section {
    padding: 2rem 0;
}

.secondary-section h2 {
    margin-bottom: 1rem;
}

.secondary-section ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.secondary-section img {
    max-width: 100%;
    border-radius: 10px;
}

.gallery-section {
    background: linear-gradient(90deg, #5c5c5c, #b0b0b0);
    
    color: white;
}
.gallery-img {
    width: 100%;
    cursor: pointer;
    border-radius: 10px;
    transition: transform 0.3s;
}
.gallery-img:hover {
    transform: scale(1.05);
}
.detail-image {
    position: absolute;
    bottom: 1px;
    right: 1px;
    max-width: 450px;
    z-index: 0;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}
.modal-content {
    display: block;
    max-width: 90%;
    max-height: 80%;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
}
.close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 35px;
    cursor: pointer;
}
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    padding: 10px;
}
.prev { left: 10px; }
.next { right: 10px; }

.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    left: 50%;
    width: 70%;
    text-align: center;
    
  }
  
  .carousel-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px; /* Ajusta según necesites */
  }
  
  .carousel-item img {
    opacity: 0.1; /* Hace que la imagen de fondo no opaque el texto */
  }
  


.certifications-section {
    padding: 2rem 0;
    text-align: center;
  
}

.certifications-section h2 {
    
   
    margin-bottom: 1rem;
}

.certifications-section p {
    color: #ff5e62;
   
}

.certifications-section .certificate {
    text-align: center;
    margin-bottom: 1.5rem;
}

.certifications-section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 0.5rem;
}

.certifications-section .caption {
    line-height: 1.1; /* Espaciado de 1.5 veces el tamaño de la fuente */
    font-size: 0.9rem;
}
.payment-section {
    padding: 2rem 0;
    background-color: #f9f9f9;
}

.payment-section h3 {
    color: #FFA927;
   
    margin-top: 1rem;
}

.payment-section p {
    color: #555;
}

.payment-section .highlight {
    color: #FFA927;
    font-family: 'Montserrat', sans-serif;
    
}

.payment-section .contact-info {
    font-family: 'Montserrat', sans-serif;
}

.payment-section .contact-info a {
    color: white;
    font-weight: bold;
    display: block;
    text-decoration: none;
    font-size: 16px;
}

.payment-section .payment-logos img {
    max-width: 150px;
    margin: 0.5rem;
}


.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #273B45;
    margin-bottom: 30px;
}


.partner-section {
    background: #f8f9fa;
  }
  
  .partner-logo {
    width: 100%;
    max-width: 120px;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .partner-logo.show {
    opacity: 1;
    transform: scale(1);
  }

  .service-box {
    opacity: 0;
    transform: translateX(0);
    transition: all 0.8s ease-in-out;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 3px;
    border-radius: 10px;
    justify-content: center;
    
    
}

.caja{
    background-color: white;
    border-radius: 10px;
    padding-left: 20px;
    padding-right: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.caja:hover {
    transform: translateY(-5px);
}
.appear-left {
    transform: translateX(-50px);
}
.appear-right {
    transform: translateX(50px);
}
.visible {
    opacity: 1;
    transform: translateX(0);
}
.emoji {
    font-size: 24px;
}

/* === AJUSTES SOLO PARA MÓVIL (pantallas <768px) === */
@media (max-width: 767.98px) {
  /* 1) Galería a 2 columnas en vez de 3 */
  .gallery-section .row .col-4 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
  /* quitar paddings extra y centrar cada “celda” */
  .gallery-section .row {
    margin-left: -5px;
    margin-right: -5px;
  }
  .gallery-section .row > [class*="col-"] {
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 10px;
  }

  /* 2) Esconder el icono superpuesto (esa imagen absolute top) */
  .gallery-section .col-md-6 img[style*="position:absolute"] {
    display: none !important;
  }

  /* 3) Ocultar o achicar más la “detail-image” si te sigue molestando */
  .gallery-section .detail-image {
    display: none !important;
  }

  /* 4) Ajustar título y texto */
  .gallery-section h3 {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 1rem;
  }
  .gallery-section .col-md-6:nth-child(2) {
    margin-top: 1rem;
    text-align: center;
  }
}
