@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
body {
  font-family: "Poppins", sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
  overflow-x: hidden;
}


.layout_padding {
  padding: 90px 0;
}

.layout_margin {
  margin: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.heading_container h2 {
  position: relative;
  font-weight: bold;
}

.heading_container h2 span {
  color: #7335b7;
}

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*header section*/
.hero_area {
  position: relative;
  min-height: 80vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #43C0F0;
  border-radius: 0 0 300px 0;
  margin-bottom: 15px;
}


.sub_page .hero_area {
  min-height: auto;
  border-radius: 0 0 45px 0;
}

.header_section {
  padding: 0px 0;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}


.navbar-brand img {
  /* Propiedades CSS para el logo */
  max-width: 150px; /* Ajusta el ancho m谩ximo del logo */
  height: auto; /* Altura autom谩tica para mantener la relaci贸n de aspecto */
  margin: 10px; /* Centra el logo horizontalmente */
  display: block; /* Asegura que la imagen se comporte como un bloque */
  border-radius: 15px 15px 15px 15px
}

@media (max-width: 768px) {
  /* Ajustes para dispositivos m贸viles */
  .navbar-brand img {
    max-width: 150px;
  }
}


.custom_nav-container {
  padding: 0;
}

.custom_nav-container .navbar-nav {
  margin: auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 5px 25px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link, .custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: #000000;
  background-color: #ffffff;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #ffffff;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 0;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: 0;
  margin-bottom: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-2 {
  display: none;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-3 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin: 0;
  margin-top: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-1,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-2,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-3 {
  -webkit-transform: none;
          transform: none;
}

.quote_btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.quote_btn-container a {
  color: #000000;
  text-transform: uppercase;
}

.quote_btn-container a span {
  margin-left: 5px;
}

.quote_btn-container a:hover {
  color: #f8842b;
}

.quote_btn-container .quote_btn {
  display: inline-block;
  padding: 5px 25px;
  background-color: #F9B004;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #fffff;
}

.quote_btn-container .quote_btn:hover {
  color: #ffffff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

/*end header section*/
/* slider section */
.slider_section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 45px 0;
}

.slider_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .detail-box {
  text-align: center;
  color: #ffffff;
}

.slider_section .detail-box h1 {
  font-weight: bold;
  margin-bottom: 20px;
}

.slider_section .detail-box .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -5px;
  margin-top: 45px;
}

.slider_section .detail-box .btn-box a {
  margin: 5px;
  text-align: center;
  width: 185px;
}

.slider_section .detail-box .btn-box .btn1 {
  display: inline-block;
  padding: 12px 15px;
  background-color: #EA619F;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 2px solid #fffff;
}

.slider_section .detail-box .btn-box .btn1:hover {
  color: #ffffff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.slider_section .img-box img {
  width: 100%;
  border-radius: 30px 30px 30px 30px
}

.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 45px;
}

.slider_section .carousel-indicators li {
  background-color: #ffffff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  opacity: 1;
}

.slider_section .carousel-indicators li.active {
  width: 23px;
  height: 23px;
  background-color: #F9B004;
}

.service_section {
  text-align: center;
}

.service_section .heading_container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.service_section .box {
  margin-top: 25px;
  padding: 15px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service_section .box::before {
  content: "";
  width: 275px;
  height: 275px;
  position: absolute;
  right: -137.5px;
  bottom: -137.5px;
  background-color: #F9B004;
  z-index: -1;
  border-radius: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service_section .box .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 125px;
  border-radius: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service_section .box .img-box img {
  width: 75px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service_section .box .detail-box {
  margin-top: 15px;
}

.service_section .box .detail-box h5 {
  font-weight: bold;
  position: relative;
}

.service_section .box .detail-box a {
  color: inherit;
}

.service_section .box:hover {
  color: #ffffff;
}

.service_section .box:hover::before {
  -webkit-transform: scale(5);
          transform: scale(5);
  background-color: #F9B004;
}

.service_section .box:hover img {
  -webkit-filter: invert(1);
          filter: invert(1);
}

.service_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 45px;
}

.service_section .btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #EA619F;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #00000;
}

.service_section .btn-box a:hover {
  color: #ffffff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.about_section {
  background-color: #43C0F0;
  color: #ffffff;
  border-radius: 250px 0 250px 0;
}

.about_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about_section .img-box {
  position: relative;
}

.about_section .img-box img {
  width: 90%;
  border-radius: 10%
}

.about_section .detail-box p {
  margin-top: 15px;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #F9B004;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #F9B004;
  margin-top: 15px;
}

.about_section .detail-box a:hover {
  color: #ffffff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}



/* =============================================== */
/* Estilos para el título de la sección Proyectos  */
/* =============================================== */

.case_section .heading_container {
  -webkit-box-align: center; /* Mantienes tus prefijos por si son necesarios para flexbox vertical */
  -ms-flex-align: center;
  align-items: center;
  text-align: center; /* IMPORTANTE: Para centrar el título h2 horizontalmente */
  margin-bottom: 20px; /* Espacio debajo de todo el contenedor del título. Ajusta si es necesario. */
}

.case_section .heading_container h2 {
  font-weight: 600; /* Puedes probar 700 para un poco más de énfasis */
  color: #333333; /* Color del texto del título. Puedes usar #252525 para un negro más profundo si prefieres. */
  margin-bottom: 30px; /* Espacio total debajo del texto del título (antes de los proyectos) */
  padding-bottom: 15px; /* Espacio entre el texto del título y la línea decorativa */
  position: relative; /* Necesario para el posicionamiento absoluto de la línea ::after */
  display: inline-block; /* Clave para que la línea se ajuste al ancho del texto y para el centrado correcto */
}

.case_section .heading_container h2::after {
  content: ''; /* Imprescindible para que el pseudo-elemento se genere y sea visible */
  position: absolute; /* Se posiciona en relación al h2 (que tiene position: relative) */
  bottom: 0; /* Coloca la línea justo debajo del padding-bottom del h2 */
  left: 50%; /* Inicia la línea en el centro horizontal del h2 */
  transform: translateX(-50%); /* Corrige la posición para centrar la línea perfectamente */
  width: 80px; /* Ancho de la línea decorativa. Si tu título es muy largo o corto, puedes ajustar este valor. */
  height: 3px; /* Grosor de la línea decorativa. */
  background-color: #F9B004; /* Color de acento, tomado de tus enlaces para mantener la coherencia visual. */
  border-radius: 2px; /* Suaviza los bordes de la línea. */
}

/*
  Recordatorio:
  La regla '.case_section .heading_container h2::before' que tenías antes
  estaba incompleta y no generaba ningún elemento visual.
  Con el código anterior, la línea decorativa se crea usando '::after',
  por lo que la regla '::before' original ya no es necesaria para este efecto.
*/
.case_section .box {
  margin-top: 45px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  text-align: center;
}

.case_section .box .img-box {
  position: relative;
}

.case_section .box .img-box img {
  width: 100%;
}

.case_section .box .detail-box {
  padding: 25px;
}

.case_section .box .detail-box h5 {
  font-weight: bold;
}

.case_section .box .detail-box p {
  font-size: 15px;
}

.case_section .box .detail-box a {
  color: #F9B004;
}

    /* --- ESTILOS PREMIUM FINALES PARA LA PÁGINA DE CONTACTO (CORREGIDO) --- */

/* --- CORRECCIÓN PARA IMAGEN DE ENCABEZADO GIGANTE --- 
  Esta regla soluciona el problema de la imagen de fondo en el encabezado 
  de las páginas internas, asegurando que se vea siempre bien.
*/
.sub_page .hero_area {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}


/* --- 1. ENCABEZADO Y OPCIONES DE CONTACTO --- */
.contact-premium-page .contact-header {
  padding: 4rem;
  background-color: #fff9e6; /* Fondo amarillo muy claro */
  border-radius: 1rem; /* Esquinas redondeadas */
  margin: 3rem auto; /* Margen superior/inferior y centrado horizontal */
  max-width: 1140px; /* Ancho máximo para que no ocupe toda la pantalla */
  box-shadow: 0 5px 25px rgba(0,0,0,0.07); /* Sombra sutil */
  position: relative;
}

.contact-premium-page .contact-header h1 {
  color: #212529;
  font-weight: 700;
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.contact-premium-page .contact-header h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #43C0F0, #EA619F);
    border-radius: 2px;
}

.contact-premium-page .contact-options {
    /* Nuevo fondo con patrón sutil */
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2343C0F0' fill-opacity='0.08' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    border-bottom: 1px solid #dee2e6;
}


.contact-premium-page .contact-options .contact-card {
  background-color: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: .75rem;
  padding: 2.5rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-premium-page .contact-options .contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.contact-premium-page .contact-options .contact-icon {
  font-size: 2.5rem;
  color: #43C0F0;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.contact-premium-page .contact-options .contact-card:hover .contact-icon {
    transform: scale(1.15) rotate(-8deg);
    color: #EA619F;
}

/* --- 2. SECCIÓN LOGOS DE CLIENTES --- */
.client-logos-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #dee2e6;
    background-color: #ffffff;
}

.client-logo {
    max-height: 32px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
    margin: 1rem;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* --- 3. FORMULARIO PREMIUM (CON VALIDACIÓN) --- */
.form-section {
  padding: 5rem 1rem;
  background-color: #f8f9fa;
}

.floating-label-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.floating-label-group .form-control {
    height: 60px;
    padding: 1.5rem 3.5rem 0.5rem 3.5rem;
    border: 1px solid #ced4da;
    border-radius: .5rem;
    background-color: #fff;
}

.floating-label-group textarea.form-control {
    height: auto;
    min-height: 150px;
}

.floating-label-group .input-icon {
    position: absolute;
    top: 50%;
    left: 1.25rem;
    transform: translateY(-50%);
    color: #adb5bd;
    transition: color .2s ease-in-out;
    pointer-events: none;
}

.floating-label-group .input-icon-textarea {
    top: 22px;
    transform: none;
}

.floating-label-group label {
    position: absolute;
    top: 19px;
    left: 3.5rem;
    color: #6c757d;
    pointer-events: none;
    transform-origin: 0 0;
    transition: all .2s ease-in-out;
    background-color: #fff;
    padding: 0 0.25rem;
}

.floating-label-group .form-control::placeholder {
    color: transparent;
}

.floating-label-group .form-control:focus ~ label,
.floating-label-group .form-control:not(:placeholder-shown) ~ label {
    transform: translateY(-12px) scale(.85);
    color: #495057;
}

.floating-label-group select.form-control:not([value=""]):valid ~ label {
    transform: translateY(-12px) scale(.85);
    color: #495057;
}

.floating-label-group .form-control:focus ~ .input-icon {
    color: #43C0F0;
}

/* --- Iconos de Validación --- */
.validation-icon {
    position: absolute;
    top: 50%;
    right: 1.25rem;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 1.2rem;
}

.floating-label-group.is-valid .validation-icon::before {
    content: '\f00c';
    font-family: FontAwesome;
    color: #28a745;
}

.floating-label-group.is-invalid .validation-icon::before {
    content: '\f00d';
    font-family: FontAwesome;
    color: #dc3545;
}

.floating-label-group.is-valid .validation-icon,
.floating-label-group.is-invalid .validation-icon {
    opacity: 1;
}

.floating-label-group.is-valid .form-control {
    border-color: #28a745;
}

.floating-label-group.is-invalid .form-control {
    border-color: #dc3545;
}

/* Estilos para el select */
.floating-label-group select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 1em 1em;
}

.contact-form-premium .btn-submit-premium {
  background-color: #43C0F0 !important;
  border-color: #43C0F0 !important;
  padding: 0.85rem 2.5rem;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(67, 192, 240, 0.3);
}

.contact-form-premium .btn-submit-premium:hover {
  background-color: #36a9e0 !important;
  border-color: #36a9e0 !important;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(67, 192, 240, 0.4);
}

/* --- 4. SECCIÓN TALLER Y MAPA --- */
/* --- ESTILOS PARA LA GALERÍA DE TALLER (VERSIÓN SIMPLE) --- */

.workshop-gallery-section-simple {
    background-color: #252525;
    border-top: 1px solid #ffffff;
}

.workshop-section .lead {
    color: #a9a9a9 !important; /* Texto secundario más claro */
}


.gallery-item-simple {
    position: relative;
    overflow: hidden;
    border-radius: .75rem; /* Bordes redondeados */
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    aspect-ratio: 1 / 1; /* Asegura que todos los cuadros sean cuadrados */
    transition: transform 0.3s ease;
}

.gallery-item-simple:hover {
    transform: scale(1.03); /* Efecto de zoom sutil al pasar el ratón */
}

.gallery-item-simple video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* El video cubre todo el espacio, recortándose si es necesario */
    display: block;
}

.location-section {
    border-top: 1px solid #dee2e6;
}

.map-container-printonic {
    border-radius: .75rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-container-printonic iframe {
    display: block;
}

.contact-details-printonic .detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-details-printonic .detail-item i {
    font-size: 1.5rem;
    color: #43C0F0;
    margin-right: 1rem;
    width: 30px;
    text-align: center;
}

.contact-details-printonic .detail-item p {
    margin-bottom: 0;
}

/* --- ESTILOS PREMIUM FINALES PARA LA PÁGINA DE CONTACTO final --- */
 
 
 /* --- SECCIÓN CONTACTO (PÁGINA DE INICIO) - ESTILOS RESTAURADOS --- */
.contact_section .heading_container {
  margin-bottom: 45px;
}

.contact_section .form_container .form-control {
  width: 100%;
  border: none;
  height: 50px;
  margin-bottom: 25px;
  padding-left: 15px;
  outline: none;
  color: #101010;
  border-radius: 5px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
}

.contact_section .form_container .btn_box {
  display: flex;
  justify-content: center;
}

.contact_section .form_container button {
  border: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 55px;
  background-color: #f9b004;
  color: #ffffff;
  border-radius: 5px;
  transition: all 0.3s;
  border: 1px solid #f9b004;
}

.contact_section .form_container button:hover {
  background-color: transparent;
  color: #f9b004;
}

.contact_section .map_container {
  height: 450px;
  margin-top: 45px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  padding: 0;
}

.contact_section .map_container .map {
  height: 100%;
  flex: 1;
}

.contact_section .map_container .map #googleMap {
  height: 100%;
}

 
 
.footer_container {
  background-color: #43C0F0;
  color: #ffffff;
  border-radius: 350px 0 0 0;
  padding-top: 145px;
}

/* info section */
.info_section h4 {
  font-weight: 600;
  margin-bottom: 20px;
}

.info_section .info_contact .contact_link_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.info_section .info_contact .contact_link_box a {
  margin: 5px 0;
  color: #ffffff;
}

.info_section .info_contact .contact_link_box a i {
  margin-right: 5px;
}

.info_section .info_contact .contact_link_box a:hover {
  color: #F9B004;
}

.info_section .info_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

.info_section .info_social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  border-radius: 100%;
  margin-right: 10px;
  font-size: 24px;
}

.info_section .info_social a:hover {
  color: #F9B004;
}

.info_section .info_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.info_section .info_links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
  color: #ffffff;
}

.info_section .info_links a:hover {
  color: #F9B004;
}

.info_section form input {
  border: none;
  border-bottom: 1px solid #ffffff;
  background-color: transparent;
  width: 100%;
  height: 45px;
  color: #ffffff;
  outline: none;
}

.info_section form input::-webkit-input-placeholder {
  color: #ffffff;
}

.info_section form input:-ms-input-placeholder {
  color: #ffffff;
}

.info_section form input::-ms-input-placeholder {
  color: #ffffff;
}

.info_section form input::placeholder {
  color: #ffffff;
}

.info_section form button {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 10px 55px;
  background-color: #F9B004;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #F9B004;
  margin-top: 15px;
}

.info_section form button:hover {
  color: #ffffff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

/* end info section */
/* footer section*/
.footer_section {
  position: relative;
  text-align: center;
}

.footer_section p {
  padding: 25px 0;
  margin: 0;
}

.footer_section p a {
  color: inherit;
}
/*# sourceMappingURL=style.css.map */

/* Estilos del botón flotante */
.float{
    position:fixed;
    width:60px;
    height:60px;
    bottom:40px;
    right:40px;
    background-color:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:30px;
    box-shadow: 2px 2px 3px #999;
    z-index:100;
}

.my-float{
    margin-top:16px;
}

body {
    font-family: 'Inter', sans-serif;
}

/* --- ESTILOS PERSONALIZADOS PARA LA PÁGINA DE MERCHANDISING --- */

/* --- 1. Estilos para el Banner Principal --- */
.hero-banner-printonic {
  position: relative;
  height: 90vh;
  min-height: 600px;
  overflow: hidden;
  border-radius: 15px; /* Esquinas redondeadas para el banner */
  margin: 1rem; /* Margen para que se vean los bordes redondeados */
}

.background-image-printonic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #343a40;
  background-size: cover;
  background-position: center center;
  z-index: 1;
}

.hero-banner-printonic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.35); /* Capa oscura más sutil para ver mejor la imagen */
  z-index: 2;
}

.hero-banner-printonic .container {
  position: relative;
  z-index: 3;
}

/* --- 2. Estilos para las tarjetas de producto --- */
#productos {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23EA619F' fill-opacity='0.07'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.card-hover-effect-printonic {
  border: 1px solid #e9ecef;
  border-bottom: 4px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-radius: .25rem;
  overflow: hidden;
}

.card-hover-effect-printonic:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-bottom-color: #EA619F;
}

/* Contenedor para la imagen y el overlay */
.card-img-container-printonic {
  position: relative;
}

.card-img-container-printonic .card-img-top {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* Overlay que aparece al hacer hover */
.card-img-overlay-printonic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(67, 192, 240, 0.75); /* Celeste con transparencia */
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 2.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-hover-effect-printonic:hover .card-img-overlay-printonic {
  opacity: 1;
}

/* --- 3. Estilos para la sección "Cómo Funciona" --- */
.steps-row-printonic {
  position: relative;
}

/* Línea conectora detrás de los íconos (CORREGIDA) */
@media (min-width: 768px) {
  .steps-row-printonic::before {
    content: '';
    position: absolute;
    top: 40px; /* Alinea verticalmente con los íconos */
    left: 15%;
    right: 15%;
    height: 2px;
    background-color: #dee2e6; /* Línea sólida y simple */
    /* Se elimina el z-index negativo que la ocultaba */
  }
}

.step-icon-container-printonic {
  width: 80px;
  height: 80px;
  background-color: #ffffff; /* Fondo blanco para que el ícono se vea por encima de la línea */
  position: relative; /* Necesario para que el fondo cubra la línea */
  border: 2px solid #e7f1ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #43C0F0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.step-icon-container-printonic:hover {
  background-color: #43C0F0;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(67, 192, 240, 0.4);
}


/* --- 4. Estilos para la sección de Testimonios de Google --- */
.testimonial-section-printonic {
  background-color: #fffde0;
}

.testimonial-card-printonic {
  border: 1px solid #eee;
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.07);
  transition: all 0.3s ease-in-out;
  padding-top: 2rem;
}

.testimonial-card-printonic:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Avatar del cliente */
.testimonial-avatar-printonic {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #EA619F; /* Color de marca rosado */
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -55px auto 1rem auto; /* Lo posiciona mitad dentro, mitad fuera */
  border: 4px solid #fffde0; /* Borde del color del fondo de la sección */
  position: relative;
}

.google-stars-printonic {
  color: #F9B004;
}
/* --- 5. Estilos para la Llamada a la Acción Final --- */
.cta-section-printonic {
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2343C0F0' fill-opacity='0.1' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
  color: #212529 !important;
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-top: 1px solid #dee2e6;
}

.cta-section-printonic .btn-light {
    color: #fff;
    background-color: #43C0F0;
    border-color: #43C0F0;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
}

.cta-section-printonic .btn-light:hover {
    color: #fff;
    background-color: #36a9e0;
    border-color: #36a9e0;
}
/* Ajuste para el botón dentro de la nueva sección CTA blanca */
.cta-section-printonic .btn-light {
    color: #fff;
    background-color: #43C0F0; /* Color de marca: Celeste */
    border-color: #43C0F0; /* Color de marca: Celeste */
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
}

.cta-section-printonic .btn-light:hover {
    color: #fff;
    background-color: #36a9e0; /* Tono más oscuro del celeste para hover */
    border-color: #36a9e0;
}

/* --- Estilos Generales de Botones con Colores de Marca --- */
.btn-primary {
  background-color: #43C0F0 !important; /* Color de marca: Celeste */
  border-color: #43C0F0 !important; /* Color de marca: Celeste */
}

.btn-primary:hover {
  background-color: #36a9e0 !important; /* Tono más oscuro del celeste para hover */
  border-color: #36a9e0 !important;
}


/* --- AJUSTES PARA MÓVILES (RESPONSIVE) --- */
@media (max-width: 767px) {
  .hero-banner-printonic h1 {
    font-size: 2.8rem; /* Tamaño de letra más pequeño para el título en móviles */
  }
  
  .hero-banner-printonic {
    height: 80vh; /* Un poco más de altura en móvil para compensar el ancho */
    margin: 0.5rem; /* Menos margen en móviles */
  }
}

/* Estilo para el cursor del texto animado */
.typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
}
@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

/* --- ESTILOS PREMIUM PARA LA PÁGINA "SOBRE NOSOTROS" (AISLADOS) --- */

/* --- 1. ENCABEZADO DE LA PÁGINA --- */
.about-premium-page .about-header {
  padding: 4rem;
  background-color: #fff9e6; /* Fondo amarillo muy claro */
  border-radius: 1rem; /* Esquinas redondeadas */
  margin: 3rem auto; /* Margen superior/inferior y centrado horizontal */
  max-width: 1140px; /* Ancho máximo para que no ocupe toda la pantalla */
  box-shadow: 0 5px 25px rgba(0,0,0,0.07); /* Sombra sutil */
}

.about-premium-page .about-header h1 {
  color: #212529;
  font-weight: 700;
}

/* --- 2. PILARES DE SERVICIO --- */
.about-premium-page .pillars-section {
    background-color: #ffffff;
    padding-top: 2rem; /* Añadido para dar más espacio */
    padding-bottom: 2rem;
}

.about-premium-page .pillar-card {
  padding: 2rem;
  height: 100%;
}

.about-premium-page .pillar-icon {
  font-size: 3rem;
  color: #43C0F0; /* Color de marca: Celeste */
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.about-premium-page .pillar-card:hover .pillar-icon {
    transform: scale(1.2);
    color: #EA619F; /* Color de marca: Rosado */
}

/* --- 3. NUESTRA FILOSOFÍA --- */
.about-premium-page .philosophy-section {
    padding: 4rem 0;
}

.about-premium-page .philosophy-section .img-fluid {
    transition: transform 0.4s ease;
}

.about-premium-page .philosophy-section .img-fluid:hover {
    transform: scale(1.03);
}

.about-premium-page .philosophy-section h2 {
    position: relative;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.about-premium-page .philosophy-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #43C0F0; /* Color de marca: Celeste */
}

/* --- 4. LLAMADA A LA ACCIÓN FINAL --- */
.about-premium-page .cta-section {
    background-color: #ffffff;
    border-top: 1px solid #dee2e6;
    padding: 4rem 0;
}

.about-premium-page .cta-section .btn-primary {
  background-color: #43C0F0 !important;
  border-color: #43C0F0 !important;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: bold;
}

.about-premium-page .cta-section .btn-outline-secondary {
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: bold;
}

/* Corrección para evitar el desbordamiento horizontal en móviles */
.html, body {
    overflow-x: hidden;
}

/* --- ESTILOS PREMIUM PARA EL NUEVO MENÚ DESPLEGABLE (CORREGIDO PARA MÓVIL) --- */

/* Contenedor del elemento del menú */
.custom_nav-container .navbar-nav .nav-item.dropdown {
  position: relative;
}

/* Estilo del menú desplegable */
.custom_nav-container .dropdown-menu {
  background: linear-gradient(175deg, #43C0F0, #36a9e0);
  border: none;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 0.5rem 0;
  margin-top: 0.125rem; /* Pequeño espacio para que no se pegue */
  position: absolute;
  min-width: 280px;
  overflow: hidden;
  
  /* Animación de entrada/salida controlada por la clase .show de Bootstrap */
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  display: block; /* Se deja que Bootstrap controle la visibilidad con la clase .show */
}

/* Cuando Bootstrap añade la clase .show (al hacer clic), hacemos visible el menú */
.custom_nav-container .dropdown-menu.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

/* Estilo de los enlaces dentro del menú desplegable */
.custom_nav-container .dropdown-item {
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  font-size: 0.95rem;
  text-transform: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}

/* Línea separadora sutil */
.custom_nav-container .dropdown-item + .dropdown-item {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* Iconos dentro del menú */
.custom_nav-container .dropdown-item .fa {
    margin-right: 1rem;
    width: 20px;
    text-align: center;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

/* Efecto hover avanzado con pseudo-elemento */
.custom_nav-container .dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: -1;
    transition: left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.custom_nav-container .dropdown-item:hover,
.custom_nav-container .dropdown-item:focus {
  background-color: transparent;
  color: #ffffff;
}

.custom_nav-container .dropdown-item:hover::before {
    left: 0;
}

.custom_nav-container .dropdown-item:hover .fa {
    transform: scale(1.1);
}

/* Añade una pequeña flecha al lado de "Soluciones" */
.custom_nav-container .dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}


/* --- ESTILOS PREMIUM PARA EL NUEVO FOOTER --- */

/* Contenedor principal del nuevo footer */
.footer_container_premium {
  background-color: #252525; /* Gris carbón oscuro y elegante */
  color: #a9a9a9; /* Gris claro para el texto */
}

.site-footer {
  padding: 5rem 0;
}

.footer-widget .footer-logo img {
  max-width: 160px;
  margin-bottom: 1.5rem;
  background-color: #fff; /* Fondo blanco para que el logo resalte */
  border-radius: 10px;
  padding: 10px;
}

.footer-widget .footer-text {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-widget .footer-title {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

/* Línea decorativa debajo de los títulos */
.footer-widget .footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #43C0F0, #EA619F); /* Gradiente con colores de marca */
}

.footer-widget .footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-widget .footer-links li {
  margin-bottom: 0.75rem;
}

.footer-widget .footer-links a {
  color: #a9a9a9;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block; /* CORRECCIÓN: Asegura que toda la etiqueta <a> se mueva como un bloque */
}

.footer-widget .footer-links a:hover {
  color: #43C0F0;
  transform: translateX(5px); /* CORRECCIÓN: Se usa transform para un movimiento suave y uniforme */
}

/* --- NUEVOS ESTILOS PARA LA INFO DE CONTACTO --- */
.footer-contact-info {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.footer-contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.footer-contact-info li i {
    color: #43C0F0;
    width: 20px;
    margin-right: 10px;
}

/* Formulario de suscripción */
.subscribe-form {
  position: relative;
  margin-top: 1.5rem;
}

.subscribe-form input {
  width: 100%;
  padding: 0.9rem 3.5rem 0.9rem 1rem;
  border-radius: 50px;
  border: 1px solid #444;
  background-color: #333;
  color: #fff;
  outline: none;
}

.subscribe-form input::placeholder {
  color: #888;
}

.subscribe-form button {
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #43C0F0;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.subscribe-form button:hover {
  background-color: #EA619F; /* Color rosado al pasar el ratón */
}

/* Redes Sociales */
.footer-social {
  margin-top: 2rem;
}

.footer-social a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #333;
  color: #fff;
  margin-right: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: #43C0F0;
  color: #fff;
  transform: translateY(-3px);
}

/* Barra de Copyright */
.copyright-bar {
  background-color: #1c1c1c;
  padding: 1rem 0;
  text-align: center;
  font-size: 0.85rem;
}

.copyright-bar p {
  margin: 0;
  color: #888;
}
