
/
/* ------------------------ Efecto del Logo ------------------------  */

/* Efecto Glitch para desktop (hover) */
@media (hover: hover) {
  .navbar-logo:hover {
    animation: glitch 0.3s linear infinite;
  }
}
/* Efecto Glitch para móviles (active/tap) */
@media (hover: none) {
  .navbar-logo:active {
    animation: glitch 0.3s linear 2; /* 2 ciclos al tocar */
  }
}
/* Animación Glitch (personalizada con tus colores) */
@keyframes glitch {
  0% { 
    filter: drop-shadow(-2px 0 #CD3334); 
    transform: translateX(0);
  }
  25% { 
    filter: drop-shadow(2px 0 #E28413);
    transform: translateX(-2px);
  }
  50% { 
    filter: drop-shadow(-2px 0 #CD3334);
    transform: translateX(2px);
  }
  75% { 
    filter: drop-shadow(2px 0 #E28413);
    transform: translateX(0);
  }
  100% { 
    filter: none;
  }
}
/* ------------------------ Inicio - Menú  ------------------------  */
/* Estilos generales de la barra de navegación */
.navbar {
  width: 100%;
  background-color: #F3F3F3;
  border-bottom: 5px solid black;
  padding: 0.5rem;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 0.5rem 1rem;
  margin-left: 0.5rem;
}
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  font-size: 1.5rem;
  line-height: 1;
}
/* Solución para cierre en móviles */
.navbar-collapse.show {
  transition: all 0.3s ease;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}



/* Estilos de los enlaces del menú */
/* Enlaces del menú */
.navbar-nav .nav-link {
  font-family: 'Matter SQ Regular', sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  color: black;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #E28413;
  background-color: rgba(0, 0, 0, 0.05);
  transform: scale(1.05); /* Efecto de escala */
}
/* Estilos del dropdown */
.dropdown-menu {
  background-color: #CD3334;
  border: 4px solid black !important;
  padding: 0;
  margin-top: 5px;
}
.dropdown-item {
  color: white;
  font-weight: bold;
  font-size: 1rem;
  padding: 0.8rem 1.5rem;
  border-bottom: 3px solid black;
}



.dropdown:hover .dropdown-menu {
  opacity: 1; /* Hacer visible */
  visibility: visible; /* Mostrar */
  transform: scale(1); /* Escala normal */
}
/* Items del dropdown */
/* Estilos del dropdown */
.dropdown-menu {
  background-color: #CD3334;
  border: 4px solid black !important; /* Borde más grueso */
  padding: 0;
  margin-top: 5px; /* Pequeño espacio del borde superior */
  transform: scale(0.98); /* Escala inicial ligeramente reducida */
  transform-origin: top center; /* Punto de origen de la transformación */
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1.1); /* Animación más dinámica */
  box-shadow: 6px 6px 0px rgba(0,0,0,0.3); /* Sombra brutalista */
}
.dropdown:hover .dropdown-menu {
  transform: scale(1); /* Escala normal al hacer hover */
  box-shadow: 8px 8px 0px rgba(0,0,0,0.4); /* Sombra más pronunciada */
}
/* Items del dropdown con bordes brutales */
.dropdown-item {
  color: white;
  font-weight: bold;
  font-size: 1rem;
  padding: 0.8rem 1.5rem;
  transition: all 0.3s ease;
  border-bottom: 3px solid black; /* Borde grueso entre items */
  position: relative;
}
.dropdown-item:hover,
.dropdown-item:focus {
  background-color: #060606;
  color: #ffffff;
  transform: scale(1.02); /* Efecto de escala hacia adelante */
  z-index: 1; /* Para que se superponga correctamente */
  box-shadow: 3px 3px 0px rgba(0,0,0,0.2); /* Sombra para el hover */
}
/* Efecto de "empuje" hacia adelante */
.dropdown-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

/* Mostrar dropdown al hacer hover (solo en desktop) */
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}
/* Botón WhatsApp */
/* Botón WhatsApp */
.btn-whatsapp {
  background-color: transparent;
  color: #25D366;
  font-weight: bold;
  border: 4px solid #25D366;
  padding: 0.8rem 1.2rem;
  font-size: 1.2rem;
  margin-left: auto;
  margin-right: 1rem;
  border-radius: 0;
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #25D366;
  color: white;
}
/* Estilos responsivos */
@media (max-width: 991.98px) {
  .navbar-collapse {
    position: fixed;
    top: 60px; /* Ajusta según la altura de tu navbar */
    left: 0;
    right: 0;
    background-color: #F3F3F3;
    z-index: 1000;
    padding: 15px;
    border-bottom: 5px solid black;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    transform: translateY(-150%);
    transition: transform 0.3s ease-out;
  }
  
  .navbar-collapse.show {
    transform: translateY(0);
  }

  .navbar-nav .nav-link {
    padding: 0.8rem 1rem;
  }
  
  .dropdown-menu {
    position: static !important;
    transform: none !important;
    float: none;
    width: 100%;
    margin-top: 0;
  }
  
  .btn-whatsapp {
    margin: 15px 0 0 0;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .navbar-brand, .nav-link, .btn-whatsapp {
    font-size: 1rem;
  }
  
  .navbar-brand img {
    max-height: 40px;
  }
}
/* ------------------------ FIN - Menú  ------------------------  */

/* ------------------------Inicio - Screen 1 ------------------------  */


.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #308A9E; /* Fondo negro */
  color: #fff; /* Texto blanco */
  padding: 2rem;
  position: relative;
  margin-bottom: 1rem; /* Margen inferior para separar de la siguiente sección */

}


/* Estilos para todos los títulos H2 */
h2 {
  color: #000000 !important; /* Color negro */
  font-size: 1.5rem !important; /* Tamaño más pequeño (ajusta según necesites) */
  font-family: 'Hakuna Sans', sans-serif !important;
  font-weight: bold !important;
}

.text-container {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-family: 'Hakuna Sans', sans-serif;
  font-size: 3rem;
  font-weight: bold;
  color: #000000;
  margin-bottom: 1rem;
  padding: 1rem 2rem; /* Espaciado interno para el cuadrado */
  border: 3px solid #fff; /* Borde blanco */
  background-color: #ffffff; /* Fondo negro */
  display: inline-block; /* Para que el ancho se ajuste al contenido */
  box-shadow: 0 0 10px rgba(232, 228, 228, 0.5); /* Sombra para efecto brutalista */
}

.hero-subtitle {
  font-family: 'Matter SQ Regular', sans-serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 2rem;
}

.hero-paragraph {
  font-family: 'Matter SQ Regular', sans-serif;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 2rem;
}

.hero-button {
  background-color: transparent;
  color: #fff;
  font-family: 'Arial', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border: 2px solid #fff;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.hero-button:hover {
  background-color: #fff;
  color: #000;
}

/* Estilo de la cuadrícula */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.1) 1px,
      transparent 1px,
      transparent 50px
  ),
  repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.1) 1px,
      transparent 1px,
      transparent 50px
  );
  z-index: 0;
}

.text-container {
  position: relative;
  z-index: 1;
}


/* ------------------------ Inicio - Menú  ------------------------  */
/* Estilos generales de la barra de navegación */
.navbar {
  width: 100%;
  background-color: #F3F3F3;
  border-bottom: 5px solid black;
  padding: 0.5rem;
}

/* Estilos del logo/brand */
.navbar-brand {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 0.5rem 1rem;
  margin-left: 0.5rem;
}

/* Estilos del botón hamburguesa */
.navbar-toggler {
  border: 3px solid #CD3334;
  padding: 0.5rem;
  margin-right: 1rem;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}

/* Estilos de los enlaces del menú */
.navbar-nav .nav-link {
  font-family: 'Matter SQ Regular', sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  color: black;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #E28413; /* Color al pasar el mouse */
  background-color: rgba(0, 0, 0, 0.05);
}

/* Estilos del dropdown */
.dropdown-menu {
  background-color: #6EC1E4;
  border: 3px solid #000; /* Borde grueso negro */
  padding: 0;
  margin-top: 0; /* Elimina espacio entre botón y menú */
  border-radius: 0 !important; /* Esquinas cuadradas */
  box-shadow: 5px 5px 0px rgba(0,0,0,0.2); /* Sombra brutalista */
}

.dropdown-item {
  color: white;
  font-weight: bold;
  font-size: 1rem;
  padding: 0.8rem 1.5rem;
  border-bottom: 3px solid #000; /* Línea divisoria gruesa */
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: #060606;
  color: #ffffff;
}

/* Mostrar dropdown al hacer hover (solo en desktop) */
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* Botón WhatsApp */
.btn-whatsapp {
  background-color: transparent;
  color: #25D366;
  font-weight: bold;
  border: 4px solid #25D366;
  padding: 0.8rem 1.2rem;
  font-size: 1.2rem;
  margin-left: auto;
  margin-right: 1rem;
  border-radius: 0;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Matter SQ Regular', sans-serif;
}

.btn-whatsapp:hover {
  background-color: #25D366;
  color: white;
}

/* Estilos responsivos */
@media (max-width: 991.98px) {
  .navbar-nav {
    padding-top: 1rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.8rem 1rem;
  }
  
  .dropdown-menu {
    background-color: #6EC1E4;
    margin-left: 1rem;
    width: calc(100% - 2rem);
  }
  
  .btn-whatsapp {
    margin: 1rem auto;
    display: block;
    width: calc(100% - 2rem);
  }
}

@media (max-width: 768px) {
  .navbar-brand, .nav-link, .btn-whatsapp {
    font-size: 1rem;
  }
  
  .navbar-brand img {
    max-height: 40px;
  }
}

/* ------------------------ FIN - Menú  ------------------------  */




        /* Estilos adicionales para el brief */
        .brief-hero {
          background-color: #6EC1E4;
          padding: 100px 0;
          border-bottom: 5px solid #000;
      }
      
      .brief-container {
          background-color: white;
          border: 3px solid #000;
          box-shadow: 8px 8px 0 #000;
          padding: 40px;
          margin: 40px auto;
          max-width: 900px;
      }
      
      .brief-section {
          margin-bottom: 40px;
          padding-bottom: 20px;
          border-bottom: 2px dashed #000;
      }
      
      .brief-section:last-child {
          border-bottom: none;
      }
      
      .brief-title {
          font-family: 'Hakuna Sans', sans-serif;
          font-size: 1.8rem;
          margin-bottom: 30px;
          color: #000;
          text-transform: uppercase;
          font-weight: bold;
      }
      
      .form-label {
          font-weight: bold;
          margin-bottom: 8px;
          display: block;
          font-family: 'Matter SQ Regular', sans-serif;
      }
      
      .form-control, .form-select {
          border: 2px solid #000;
          border-radius: 0;
          padding: 12px;
          margin-bottom: 20px;
      }
      
      .form-control:focus, .form-select:focus {
          border-color: #E28413;
          box-shadow: 0 0 0 0.25rem rgba(226, 132, 19, 0.25);
      }
      
      textarea.form-control {
          min-height: 100px;
      }
      
      .checkbox-group {
          margin-bottom: 20px;
      }
      
      .form-check {
          margin-bottom: 10px;
      }
      
      .form-check-input {
          border: 2px solid #000;
          border-radius: 0;
          width: 1.2em;
          height: 1.2em;
          margin-top: 0.2em;
      }
      
      .form-check-label {
          margin-left: 8px;
          font-family: 'Matter SQ Regular', sans-serif;
      }
      
      .btn-submit-brief {
          background-color: #CD3334;
          color: white;
          border: 3px solid #000;
          padding: 12px 30px;
          font-weight: bold;
          text-transform: uppercase;
          font-family: 'Hakuna Sans', sans-serif;
          transition: all 0.3s;
          box-shadow: 5px 5px 0 #000;
      }
      
      .btn-submit-brief:hover {
          background-color: #E28413;
          transform: translate(-2px, -2px);
          box-shadow: 7px 7px 0 #000;
      }
      
      .required-field::after {
          content: " *";
          color: #CD3334;
      }
      
      .time-estimate {
          font-size: 0.9rem;
          color: #666;
          font-style: italic;
          margin-bottom: 30px;
          text-align: center;
      }
      
      @media (max-width: 768px) {
          .brief-container {
              padding: 20px;
              margin: 20px auto;
          }
          
          .brief-title {
              font-size: 1.5rem;
          }
      }

      .option-block {
        cursor: pointer;
        transition: all 0.2s;
    }
    .option-block input:checked + .option-content {
        background-color: #f8f9fa;
        box-shadow: 4px 4px 0 #000;
    }
    .option-block:hover .option-content {
        background-color: #f8f9fa;
    }
    .option-block:hover .text-muted {
        color: #6c757d !important;
    }

/
/* --------------------- FOOTER MEJORADO --------------------- */
#footer {
  background-color: #ffffff;
  color: #333333;
  font-family: 'Nunito', sans-serif;
  padding: 50px 0 20px;
  border-top: 4px solid #000000;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-col {
  padding: 15px;
  transition: all 0.3s ease;
}
.footer-box {
  border: 3px solid #060606;
  padding: 20px;
  height: 100%;
  box-shadow: 4px 4px #000000;
  background: white;
  transition: all 0.3s ease;
}
/* Efectos hover con los colores específicos */
.footer-col[data-hover-color="#32ACC5"]:hover .footer-box {
  background-color: #32ACC5;
}
.footer-col[data-hover-color="#6EC1E4"]:hover .footer-box {
  background-color: #6EC1E4;
}
.footer-col[data-hover-color="#E28413"]:hover .footer-box {
  background-color: #E28413;
}
.footer-col[data-hover-color="#CD3334"]:hover .footer-box {
  background-color: #CD3334;
}
.footer-col:hover .footer-box {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px #000000;
}
.footer-title {
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: #000;
}
.footer-text {
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 0.95rem;
}
/* Mapa del sitio mejor organizado */
.sitemap-section {
  margin-bottom: 1rem;
}
.sitemap-header {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #000;
}
.sitemap-links {
  list-style: none;
  padding-left: 0;
}
.sitemap-links li {
  margin-bottom: 0.3rem;
}
.sitemap-links a {
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
  position: relative;
  padding-left: 0;
  transition: all 0.2s ease;
}
.sitemap-links a:hover {
  color: #000;
  font-weight: bold;
  padding-left: 5px;
}
.sitemap-links a:before {
  content: "•";
  margin-right: 5px;
  color: #E28413;
}
/* Contacto */
.contact-list {
  list-style: none;
  
  padding-left: 0;
}
.contact-list li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
}
.contact-list i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
  color: #000;
}
.contact-list a {
  color: #333333; /* Mismo color que el texto normal del footer */
  text-decoration: none; /* Quita el subrayado */
  transition: all 0.3s ease; /* Transición suave para efectos hover */
}
/* Social icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.social-icon {
  color: #000;
  background: #fff;
  border: 2px solid #000;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  transition: all 0.3s ease;
}
.social-icon:hover {
  background: #000;
  color: #fff;
  transform: translateY(-3px);
}
/* Copyright */
.copyright {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid #000;
}
.copyright p {
  font-size: 0.85rem;
  margin-bottom: 0;
}
.legal-links {
  font-size: 0.8rem;  /* Tamaño más pequeño */
}
.legal-link {
  color: #000000 !important;  /* Negro puro */
  text-decoration: none;      /* Sin subrayado */
  margin: 0 10px;            /* Espaciado entre enlaces */
  transition: all 0.3s ease; /* Transición suave (opcional) */
}
.legal-link:hover {
  color: #000000 !important;  /* Mantiene negro al pasar el mouse */
  text-decoration: underline; /* Subrayado al hover (opcional) */
}

/* Responsive */
@media (max-width: 991.98px) {
  .footer-col {
    margin-bottom: 20px;
  }
  
  .footer-box {
    padding: 15px;
  }
}
@media (max-width: 767.98px) {
  .footer-title {
    font-size: 1.1rem;
  }
  
  .footer-text, .contact-list li, .sitemap-links a {
    font-size: 0.85rem;
  }
}

/* 
Efecto Smooth sobre el mouse haciendo scrool  */
html {
  scroll-behavior: smooth;
}




  
  /* Establece el color de fondo deseado para los botones del menú desplegable */
  .dropdown-menu .dropdown-item:focus, .dropdown-menu .dropdown-item:hover {
    background-color: #66CCE3; /* Cambia 'red' por el color deseado */
  }


/*Texto superior página inicial - Negrilla grande - Identificador
*/
#titulo1 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 6vw;
}


/*Intertítulos
*/
.titulo2 {
  font-family: 'Oxygen', sans-serif;
  text-decoration: underline;
  font-weight: 800;
}

/*Separador con fondo de color */
.separadortitulo{
  background-color: #f8f9fa;
  padding: 50px;
  font-family: 'Noto Sans', sans-serif;
}


body {
  background:white;
  font-family: "Nunito", sans-serif;
}
h1{
  font-size: 85px;
}
h2{
  color: #66CCE3;
  font-weight: bold;
}
span {
  color background: #66CCE3;
}
#footer{
  background-color: #ffffff;
  padding-top: 40px;
  padding-bottom: 20px;
}



/* fin ----------------  Footer Styles */
