
/* ------------------------ 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: #CD3334; /* 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;
}



/* ------------------------ Fin  - Screen 1  ------------------------  */




/* ------------------------ INICIO - servicios específicos  ------------------------  */


:root {

  --brutalist-white: #ffffff;
  --brutalist-blue: #6EC1E4;
  --brutalist-border: #000;
  --text-color: #333;
}

.digital-services-section {
  background-color: var(--brutalist-white);
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  border: 3px solid var(--brutalist-border);
  box-shadow: 8px 8px 0px var(--brutalist-border);
  text-align: center; /* Centrar el contenido dentro de la sección */
  margin-bottom: 1rem; /* Margen inferior para separar de la siguiente sección */


}

.services-title {
  display: inline-block; /* Para comportarse como un botón */
  font-size: 1.5rem; /* Tamaño de fuente reducido */
  color: #040404; /* Texto blanco para contraste */
  background-color: #f9fbfb; /* Fondo azul llamativo */
  font-weight: bold;
  padding: 5px 15px; /* Espaciado interno para parecer un botón */
  text-transform: uppercase; /* Texto en mayúsculas para impacto */
  border: 3px solid #000; /* Bordes gruesos para el estilo brutalist */
  margin: 0 auto 20px; /* Centrado y con espacio debajo */
  text-align: center;
  box-shadow: 4px 4px 0px #000; /* Sombra fuerte para brutalism */
  cursor: pointer; /* Indicar que es interactivo */
  transition: transform 0.2s ease;
  font-family: "Hakuna Sans";
  margin-bottom: 4rem; /* Margen inferior para separar de la siguiente sección */

}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: #f9fafa;
  border: 3px solid var(--brutalist-black);
  padding: 25px;
  box-shadow: 6px 6px 0px var(--brutalist-black);
  transition: transform 0.3s ease;
  text-align: center;
  font-family: "Hakuna Sans"

}

.service-card:hover {
  transform: translate(-5px, -5px);
  box-shadow: 8px 8px 0px var(--brutalist-black);
}

.service-card-icon {
  font-size: 3rem;
  color: var(--brutalist-black);
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-card-title {  /* Nueva clase específica */
  font-family: "Hakuna Sans", sans-serif;
  font-weight: bold;
  color: #000;
  margin-bottom: 15px;
  font-size: 1.5rem;
  text-align: center;
  margin-top: 0; /* Asegura que no tenga margen superior extra */
  display: block; /* Para mantener el comportamiento de bloque como los h3 */
}

.service-card p {
  font-family: 'Matter SQ Regular', sans-serif; /* Cambia la fuente del texto explicativo */
  color: var(--text-color);
  line-height: 1.6;
  text-align: center;
}

.digital-strategies {
  margin-top: 40px;
  background-color: var(--brutalist-blue);
  border: 3px solid var(--brutalist-black);
  padding: 30px;
  box-shadow: 6px 6px 0px var(--brutalist-black);

}

.digital-strategies-description {
  text-align: center;
  font-family: 'Matter SQ Regular', sans-serif;
  color: var(--text-color);
  margin-bottom: 30px;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background-color: BAE1EC;
}

.sector-card {
  border: 3px solid var(--brutalist-black);
  padding: 20px;
  text-align: center;
  box-shadow: 4px 4px 0px var(--brutalist-black);
  transition: transform 0.3s ease;
}

.sector-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 6px 6px 0px var(--brutalist-black);
}

.sector-card-icon {
  font-size: 3rem;
  color: var(--brutalist-black);
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sector-card h4 {
  font-family: 'Matter SQ Regular', sans-serif;
  color: var(--brutalist-black);
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.brutal-btn {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  background-color: #CD3334; /* Rojo principal */
  color: white;
  border: 3px solid #000000;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: clamp(0.9rem, 3vw, 1.1rem); /* Tamaño responsive */
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center;
  text-decoration: none;
  font-family: 'Hakuna Sans', sans-serif;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 5px 5px 0px #000000;
  margin: 1.5rem auto;
  max-width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.brutal-btn:hover {
  background-color: #E28413; /* Naranja al hover */
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0px #000000;
  color: #000000;
}

.brutal-btn:active {
  transform: translate(4px, 4px);
  box-shadow: 1px 1px 0px #000000;
}

/* Efecto de borde interno */
.brutal-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid rgba(255, 255, 255, 0.3);
  pointer-events: none;
}







/* Media query para móviles */
@media (max-width: 768px) {
  .brutal-btn {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    white-space: normal;
    display: block;
    width: 90%;
    margin: 1.5rem auto;
  }
}

@media (max-width: 768px) {
  .services-grid,
  .sector-grid {
      grid-template-columns: 1fr;
  }

  .services-title {
      font-size: 2rem;
  }
}

/* ------------------------ FIN - servicios específicos  ------------------------  */


/* ------------------------ FIN - Cómo Trabajamos  ------------------------  */

:root {
  --brutalist-black: #000;
  --brutalist-white: #6EC1E4;
  --brutalist-border: #000; /* Añadido para consistencia */
  --process-line-color: #e0e0e0;
}

.brutalist-process-container {
  background-color: var(--brutalist-white);
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  border: 3px solid var(--brutalist-border);
  box-shadow: 8px 8px 0px var(--brutalist-border);
  text-align: center; /* Centrar el contenido dentro de la sección */
  margin-bottom: 1rem; /* Margen inferior para separar de la siguiente sección */
}

.ComoTrabajamos-titulo {
  display: inline-block; /* Para comportarse como un botón */
  font-size: 1.5rem; /* Tamaño de fuente ajustado */
  color: #040404; /* Texto blanco para contraste */
  background-color: #f9fbfb; /* Fondo azul llamativo */
  font-weight: bold;
  padding: 10px 20px; /* Espaciado interno para parecer un botón */
  text-transform: uppercase; /* Texto en mayúsculas para impacto */
  border: 3px solid #000; /* Bordes gruesos para el estilo brutalist */
  margin-top: -40px; /* Ajusta el margen superior a -40px para subir el título */
  margin-bottom: 20px; /* Mantén el margen inferior */
  box-shadow: 4px 4px 0px #000; /* Sombra fuerte para brutalism */
  font-family: "Hakuna Sans";
}




.process-description {
  text-align: left; /* Alinear el texto a la izquierda */
  font-family: 'Matter SQ Regular', sans-serif;

}

.process-highlights {
  list-style-type: none; /* Eliminar los puntos de la lista */
  padding-left: 0; /* Eliminar el espacio de la lista */
  margin-top: 20px;
  font-family: 'Matter SQ Regular', sans-serif;
}

.process-highlights li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-family: 'Matter SQ Regular', sans-serif;
}

.process-highlights li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--brutalist-black);
  font-weight: bold;
}

.process-workflow {
  position: relative;
  margin-top: 40px;
}

.process-line {
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: var(--process-line-color);
  z-index: 1;
}

.process-steps {
  position: relative;
  z-index: 2;
  font-family: 'Matter SQ Regular', sans-serif;

}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
  font-family: 'Matter SQ Regular', sans-serif;

}

.step-circle {
  width: 60px;
  height: 60px;
  background-color: var(--brutalist-white);
  border: 2px solid var(--brutalist-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-right: 20px;
  position: relative;
  z-index: 3;
}

.step-content {
  flex-grow: 1;
  padding: 15px;
  border: 2px solid var(--brutalist-black);
  background-color: var(--brutalist-white);
  box-shadow: 5px 5px 0 var(--brutalist-black);
  font-family: 'Matter SQ Regular', sans-serif;
}

.step-content h4 {
  font-family: 'Matter SQ Regular', sans-serif;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.step-content p {
  font-family: 'Matter SQ Regular', sans-serif;

  font-size: 0.9rem;
  color: #333;
}

.brief-cta-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  font-family: 'Matter SQ Regular', sans-serif;

}

.brief-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background-color: var(--brutalist-black);
  color: var(--brutalist-white);
  text-decoration: none;
  border: 2px solid var(--brutalist-black);
  transition: all 0.3s ease;
}

.brief-cta:hover {
  background-color: var(--brutalist-white);
  color: var(--brutalist-black);
}

.brief-cta svg {
  stroke: currentColor;
}

@media (max-width: 768px) {
  .process-line {
    left: 15px;
  }

  .step-circle {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .process-description,
  .process-workflow {
    margin-bottom: 20px;
  }
}


/* ------------------------ FIN -Cómo trabajamos------------------------ */

/* ------------------------ INICIO - Precios------------------------ */

/* Título */
.precios-titulo {
  display: inline-block; /* Para comportarse como un botón */
  font-size: 1.5rem; /* Tamaño de fuente reducido */
  color: #fff; /* Texto blanco para contraste */
  background-color: #f9fbfb; /* Fondo azul llamativo */
  font-weight: bold;
  padding: 5px 15px; /* Espaciado interno para parecer un botón */
  text-transform: uppercase; /* Texto en mayúsculas para impacto */
  border: 3px solid #000; /* Bordes gruesos para el estilo brutalist */
  margin: 0 auto 20px; /* Centrado y con espacio debajo */
  text-align: center;
  box-shadow: 4px 4px 0px #000; /* Sombra fuerte para brutalism */
  cursor: pointer; /* Indicar que es interactivo */
  transition: transform 0.2s ease;
  font-family: "Hakuna Sans";
}

/* Subtítulo */
/* Estilo específico para .precios-subtitulo */
.pricing-section h2.precios-subtitulo {
  font-size: 1.5rem;
  color: #faf7f7;
  font-weight: normal;
  margin-bottom: 60px; /* Espacio adicional debajo del subtítulo */
  text-align: center; /* Centrar el texto */
  font-family: 'Matter SQ Regular', sans-serif;
}

/* Centrar el título dentro del contenedor */
.pricing-section {
  text-align: center; /* Centrar el contenido dentro del contenedor */
  
}

/* Contenedor donde está todo */
.pricing-section {
  background-color: #6EC1E4;
  padding: 20px; /* Reduce el padding */
  margin: 0; /* Elimina el margen */
  width: 100%; /* Asegura que ocupe todo el ancho */
  border: 5px solid #272727; /* Añade un borde grueso para el estilo brutalista */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Añade una sombra más pronunciada */
  box-sizing: border-box; /* Asegura que el padding y el border estén incluidos en el width */
}

.pricing-section h1 {
  font-size: px; /* Aumenta el tamaño de la fuente */
  margin-bottom: 10px;
  text-align: center;
  color: #272727;
}

.pricing-section h2 {
  font-size: 30px; /* Aumenta el tamaño de la fuente */
  margin-bottom: 60px; /* Añade más espacio debajo del <h2> */
  text-align: center;
  color: #272727;
  font-family: 'helvetica-neue-55', sans-serif;
}

.pricing-card {
  background-color: #FFFFFF;
  color: #272727;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Añade una sombra más pronunciada */
  border: 3px solid #272727; /* Añade un borde grueso para el estilo brutalista */
  transition: transform 0.3s ease; /* Añade una transición suave */

}

.pricing-card:hover {
  transform: scale(1.05); /* Aumenta el tamaño al pasar el mouse por encima */
}
/* Nombre del servicio */
.pricing-card h3 {
  font-size: 30px; /* Aumenta el tamaño de la fuente */
  margin-bottom: 10px;
  font-family: 'Hakuna Sans', sans-serif;
  font-weight: bold; /* Poner en negrilla */
}

/* Precio  */
.pricing-card .price {
  font-size: 40px; /* Aumenta el tamaño de la fuente */
  color: #CD3334;
  margin-bottom: 10px;
  font-family: "Hakuna Sans"
}

/* Contenedor de Badges */
.pricing-card .badge-container {
  text-align: center; /* Centra el contenido */
  margin-bottom: 20px;
}

/* Badges */
.pricing-card .badge {
  display: block;
  background-color: #E28413;
  color: #FFFFFF;
  font-size: 18px; /* Aumenta el tamaño de la fuente */
  margin-bottom: 5px; /* Reduce el espacio entre badges */
  padding: 10px 15px;
  border-radius: 5px;
}

/* Badges específicos */
.pricing-card .badge-container .badge:nth-child(1) {
  background-color: #272727; /* Color diferente para Mes 2 */
}

.pricing-card .badge-container .badge:nth-child(2) {
  background-color: #272727; /* Color diferente para Mes 3 */
}


/* Etiqueta de IVA  */
.pricing-card .badge {
  background-color: #E28413;
  color: #FFFFFF;
  font-size: 18px; /* Aumenta el tamaño de la fuente */
  margin-bottom: 20px;
  padding: 10px 15px;
  border-radius: 5px;

}
/* Qué incluye  */
.pricing-card .subtitle {
  font-size: 24px; /* Aumenta el tamaño de la fuente */
  margin-bottom: 20px;
  text-align: left; /* Alinear a la izquierda */
  font-family: 'Matter SQ Regular', sans-serif;

}

.pricing-card .feature-list {
  list-style: none; /* Eliminar viñetas */
  padding: 0; /* Eliminar padding */
}

/* Qué incluye - exlicaciones - Lista de items que incluye */
.pricing-card .feature-list li {
  font-size: 17px;
  margin-bottom: 16px;
  cursor: pointer;
  font-family: 'Matter SQ Regular', sans-serif;
  border-bottom: 1px solid #eee3e3; /* Línea tenue */
}


.pricing-card .feature-list li:last-child {
  margin-bottom: 45px; /* Espacio prudente después del último elemento de la lista */
}



.pricing-card .benefits {
  text-align: left; /* Alinear a la izquierda */
  font-family: 'Matter SQ Regular', sans-serif;
 
}

.pricing-card .benefits ul {
  list-style: none; /* Eliminar viñetas */
  padding: 0; /* Eliminar padding */
}

.pricing-card .benefits ul li {
  font-size: 18px; /* Aumenta el tamaño de la fuente */
  margin-bottom: 5px;
  margin-top: 20px;
  border-bottom: 1px solid #ddd; /* Línea tenue */
}

.pricing-card .btn-whatsapp {
  background-color: #E28413;
  color: #F3F3F3;
  border: none;
  padding: 10px 20px; /* Reduce el padding */
  font-size: 16px; /* Reduce el tamaño de la fuente */
  border-radius: 5px;
  margin-top: 20px;
  font-family: 'Helvetica', sans-serif;
}

.pricing-card .btn-whatsapp:hover {
  background-color: #CD3334;
}

.modal-content {
  background-color: #308A9E;
  color: #F3F3F3;
  border-radius: 10px;
  border: 5px solid #272727; /* Añade un borde grueso para el estilo brutalista */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Añade una sombra más pronunciada */
  font-family: 'Helvetica', sans-serif;
}

.modal-title {
  font-size: 18px; /* Aumenta el tamaño de la fuente */
  font-family: "Hakuna Sans"

}

.modal-body {
  font-size: 16px; /* Aumenta el tamaño de la fuente */
  font-family: 'Matter SQ Regular', sans-serif;
}

/* Estilos minimalistas para la lista */
.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 45px;
}

.feature-list li {
  margin-bottom: 12px;
  border-bottom: 1px solid #eee3e3;
  transition: all 0.2s ease;
}

.feature-link {
  display: block;
  padding: 8px 0;
  text-decoration: none;
  color: #272727;
  font-family: 'Matter SQ Regular', sans-serif;
  font-size: 17px;
  position: relative;
  transition: all 0.2s ease;
}

.feature-link:hover {
  color: #E28413;
  padding-left: 5px;
}

.feature-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -1px;
  left: 0;
  background-color: #E28413;
  transition: width 0.3s ease;
}

.feature-link:hover::after {
  width: 100%;
}

/* Asegurar que los textos no se rompan en dos líneas */
@media (max-width: 768px) {
  .feature-link {
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}


/* ------------------------ Inicio  - Por qué  ------------------------  */
/* Variables globales */
:root {
  --brutalist-black: #000;
  --brutalist-white: #6EC1E4;
  --brutalist-border: #000;
  --text-color: #333;
}

/* Sección principal */
.digital-agency-section {
  background-color: var(--brutalist-white);
  padding: 20px; /* Ajusta el padding según sea necesario */
  max-width: 1200px;
  margin: 60px auto 0 auto; /* Añade un margen superior de 60px */
  border: 3px solid var(--brutalist-border);
  box-shadow: 8px 8px 0px var(--brutalist-border);
  text-align: center; /* Centrar el contenido dentro de la sección */
  position: relative; /* Para posicionar el título de manera absoluta si es necesario */
}

/* Título centrado en la parte superior */
.Titulo-Porque {
  font-size: 1.5rem; /* Tamaño de fuente ajustado */
  color: #040404; /* Color del texto */
  background-color: #f9fbfb; /* Fondo del título */
  font-weight: bold;
  padding: 10px 20px; /* Espaciado interno para parecer un botón */
  text-transform: uppercase; /* Texto en mayúsculas para impacto */
  border: 3px solid #000; /* Bordes gruesos para el estilo brutalist */
  margin: 0 auto; /* Centrado horizontalmente */
  box-shadow: 4px 4px 0px #000; /* Sombra fuerte para brutalism */
  font-family: "Hakuna Sans";
  position: absolute; /* Posición absoluta para pegarlo al borde superior */
  top: 30px; /* Ajusta este valor para mover el título hacia arriba */
  left: 50%;
  transform: translateX(-50%); /* Centrar horizontalmente */
  width: max-content; /* Ajustar el ancho según el contenido */
  
}

/* Estilos para las tarjetas de razones */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 90px; /* Ajusta este valor para dar espacio debajo del título */
}

.reason-card {
  background-color: #f9fafa;
  border: 3px solid var(--brutalist-black);
  padding: 20px;
  box-shadow: 6px 6px 0px var(--brutalist-black);
  text-align: center;
  
}

.reason-card i {
  font-size: 2rem;
  margin-bottom: 10px;
}

.reason-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-family: "Hakuna Sans";
}

.reason-card p {
  font-size: 1rem;
  color: var(--text-color);
  font-family: 'Matter SQ Regular', sans-serif;

}

/* Estilos para el botón de llamada a la acción */
.cta-button {
  display: inline-block;
  margin-top: 40px;
  padding: 15px 30px;
  background-color: var(--brutalist-black);
  color: var(--brutalist-white);
  border: none;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
  background-color: var(--brutalist-white);
  color: var(--brutalist-black);
}



/* ------------------------ FIN  - Por qué  ------------------------  */


/* ------------------------ INICIO - FAQ------------------------ */
:root {
  --primary-color: #308A9E;
  --secondary-color: #32ACC5;
  --highlight-color: #6EC1E4;
  --accent-color: #CD3334;
  --text-color: #000000;
}



.faq-container {
  background-color: var(--background-color);
  border: 4px solid var(--text-color);
  margin: 20px auto; /* Centrado horizontal con margen automático */
  padding: 20px;
  max-width: 1200px; /* Ancho máximo para el contenedor */
  width: 90%; /* Ancho relativo pero con límite */
  box-sizing: border-box;
}



.faq-header {
  text-align: center;
  margin-bottom: 40px;
  
}

.faq-header h2 {
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--text-color);
  margin-bottom: 10px;
  font-family: "Hakuna Sans";
  background-color: #6EC1E4; /* Fondo del título */
  display: inline-block; /* Ajusta el display a inline-block */
  padding: 10px 20px; /* Ajusta el padding según sea necesario */
  border-radius: 5px; /* Opcional: añade bordes redondeados */
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* Opcional: añade una sombra para efecto */
  font-family: "Hakuna Sans";

}


.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.faq-card {
  background-color: white;
  border: 3px solid var(--text-color);
  box-shadow: 8px 8px 0 var(--text-color);
  transition: all 0.3s ease;
  width: 100%; /* Cambiar a 100% del contenedor */
  margin-bottom: 20px; /* Solo margen inferior */
}

.faq-question {
  background-color: var(--highlight-color);
  color: white;
  padding: 20px;
  border-bottom: 3px solid var(--text-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
  flex-grow: 1;
}

.faq-toggle {
  margin-left: 10px;
  font-weight: bold;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-toggle.active {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 20px;
}

.faq-answer.active {
  max-height: 1000px;
  padding: 20px;
}

.faq-answer p {
  margin-bottom: 15px;
}

.faq-answer ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 15px;
}

.faq-answer li {
  padding: 5px 0;
  border-bottom: none;
}


#resultados-y-metricas h2 {
  font-size: 1.5rem; /* Tamaño de fuente más pequeño */
  color: #000000; /* Color de texto negro */
  text-align: center;
  margin: 40px 0; /* Espacio prominente arriba y abajo */
  background-color: #FFFFFF; /* Fondo blanco */
  padding: 10px; /* Padding ajustado para un tamaño más pequeño */
  border: 2px solid #000000; /* Borde negro */
  box-shadow: 4px 4px 0 #000000; /* Sombra ajustada para un tamaño más pequeño */
  position: relative;
  display: inline-block;
  margin-left: 50%;
  transform: translateX(-50%);
  
}

@media (max-width: 768px) { /* Cambiar a breakpoint más estándar para móviles */
  .faq-container {
    margin: 10px 0;
    padding: 15px;
    border-left: none;
    border-right: none;
  }
  
  .faq-card {
    box-shadow: 4px 4px 0 var(--text-color); /* Sombra más pequeña */
  }
  
  .faq-question {
    padding: 15px;
  }
  
  .faq-question h3 {
    font-size: 1rem; /* Tamaño de fuente más pequeño */
  }
}
/* ------------------------ FIN - FAQ------------------------ */








/* --------------------- 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 */