/* Reset de márgenes y paddings innecesarios */
body, h1, h2, h3, h4, h5, h6, p, ul {
  margin: 0;
  padding: 0;
}

/* =================== GENERAL =================== */

body {
  font-family: "obviously", sans-serif;
  font-weight: 400;
  background-color: #fdfdfd;
  color: #333;
}
/* Fuente para H2 (peso 700) */
h2 {
  font-family: "obviously", sans-serif;
  font-weight: 700;
}

/* Fuente para H3 (peso 500) */
h3 {
  font-family: "obviously", sans-serif;
  font-weight: 500;
}

/* Fuente para H4 (peso 400) */
h4 {
  font-family: "obviously", sans-serif;
  font-weight: 400;
}

/* Fuente para párrafos (peso 200) */
p {
  font-family: "obviously", sans-serif;
  font-weight: 200;
}
a {
  font-family: "obviously", sans-serif;
  font-weight: 200;
  transition: font-weight 0.3s ease;
  text-decoration: none; /* opcional para quitar el subrayado */
  color: inherit; /* opcional, para que use el color heredado del contenedor */
}

a:hover {
  font-weight: 500;
}

/*---------------------------------------- NAVBAR ------------------------------------*/

/* Reset y estilos básicos */
.navbar {
  padding: 1rem 0;
  background-color: #F4F4F4;
}

.navbar-brand img {
  max-height: 50px;
}

.navbar-brand h1 {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: #333;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .dropdown-menu a:hover {
  color: #FF6600;
}

/* Dropdown menú oculto por defecto */
.dropdown-menu {
  display: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  background-color: #B8AFA0;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  min-width: 10rem;
  padding: 0.5rem 0;
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 0.15);
  transition: opacity 0.3s ease;
}

/* Items dropdown */
.dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  color: #212529;
  white-space: nowrap;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
  color: #fff;
  background-color: #B8AFA0;
  text-decoration: none;
}

/* Desktop: mostrar dropdown con hover */
@media (min-width: 992px) {
  .navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    margin-top: 0; /* quitar margen superior si quieres */
  }
}

/* Móvil: menú vertical, deja que Bootstrap maneje el dropdown con .show */
@media (max-width: 991.98px) {
  /* Navbar vertical */
  .navbar-nav {
    flex-direction: column !important;
  }

  /* Quitar margen automático que empuja a la derecha */
  .navbar-nav.ms-auto {
    margin-left: 0 !important;
  }

  /* Dropdown menú estilo mobile */
  .dropdown-menu {
    position: static !important;
    float: none !important;
    box-shadow: none !important;
    background-color: transparent !important;
    border: none !important;
    padding-left: 0;
    margin: 0;
  }

  /* Mostrar dropdown solo cuando tenga la clase .show */
  .dropdown-menu.show {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  /* Indentar items dropdown */
  .dropdown-menu .dropdown-item {
    padding-left: 2rem;
  }

  /* Espaciado entre items */
  .navbar-nav .nav-item {
    margin-bottom: 0.5rem;
  }
}



/* ---------------------------------- BANNER PRINCIPAL ---------------------------------- */
.banner {
  position: relative;
  background-image: url("img/../imagenes/banners/bannerinicio.jpg");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.554);
  z-index: 1;
}

.contenido-banner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
}

.logo-img {
  width: 350px;
  max-width: 90%;
  margin-bottom: 10px;
  margin-top: -20px;
}

.titulo-banner {
  font-size: 40px;
  font-weight: bold;
}

.btn-cta {
  display: inline-block;
  padding: 12px 24px;
  background-color: rgba(235, 94, 40, 0.85);
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-cta:hover {
  background-color: #e69500;
  transform: scale(1.05);
}

/* -------------Marquesina------------ */
.marquesina {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%; 
  background-color: rgba(235, 94, 40, 0.85);
  padding: 12px 20px;
  text-align: center;
  overflow: hidden;
  z-index: 3;
}

.marquesina p {
  display: inline-block;
  color: white;
  font-style: italic;
  animation: moverTexto 10s linear infinite;
  white-space: nowrap;
}

@keyframes moverTexto {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}



/* =================== TRABAJEMOS JUNTOS =================== */
  
.seccion-dinamica {
  display: flex;
  justify-content: center;
  padding: 4rem 1rem;
  background-color: #f8f5f2;
}

.contenido-dinamico {
  display: flex;
  flex-direction: row;
  max-width: 1100px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  background: white;
  width: 100%;
}

.imagen-lateral {
  flex: 1;
  min-width: 300px;
}

.imagen-lateral img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.texto-dinamico {
  flex: 1;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.texto-dinamico h3 {
  font-size: 1.4rem;
  color: #EB5E28;
  margin-bottom: 1rem;
}

.texto-dinamico p {
  font-size: 2rem;
  color: #252422;
  font-weight: 600;
  line-height: 1.4;
}

.maquina-naranja {
  color: #EB5E28;
  font-family: monospace;
  border-right: 2px solid #EB5E28;
  white-space: nowrap;
  overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
  .contenido-dinamico {
    flex-direction: column;
  }

  .imagen-lateral {
    height: 250px;
  }
}

/* ADVANTAGES */

.advantages-section {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  display: flex;
  align-items: stretch; /* para que ambos lados tengan la misma altura */
  gap: 20px; /* espacio entre columnas */
  padding: 15px;}

.content-left {
  flex: 1; /* ocupa espacio proporcional */
}

.content-right {
  flex: 1.2; /* un poco más ancho que el izquierdo */
  display: flex;
  align-items: stretch;
}

.content-right img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* la imagen cubre sin deformarse */
  display: block;
  border-radius: 15px;
}

/* Título */
.title {
  font-size: 2rem;
  margin-bottom: 25px;
  line-height: 1.3;
}

.title strong {
  font-weight: 700;
}

.title em {
  font-style: italic;
}

.title .highlight {
  color: orange;
  font-weight: 700;
}

/* Lista acordeón */
.accordion-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.accordion-list li {
  border-bottom: 1px solid #ddd;
}

/* Botón acordeón */
.accordion-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 15px 0;
  font-size: 1.1rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #555;
  font-weight: 600;
  outline-offset: 2px;
  transition: color 0.3s ease;
}

.accordion-btn:hover {
  color: orange;
}

.accordion-btn:focus {
  outline: 2px solid orange;
  outline-offset: 3px;
}

/* Signo + / - */
.sign {
  display: inline-block;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  color: gray;
  user-select: none;
  transition: color 0.3s ease;
}

/* Cuando está expandido, signo y texto cambian */
.accordion-btn[aria-expanded="true"] .sign {
  color: orange;
}

.accordion-btn[aria-expanded="true"] {
  color: orange;
}

/* Texto del contenido oculto */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #666;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 0;
  margin-bottom: 15px;
}

/* Cuando se activa, max-height grande para mostrar */
.accordion-content.active {
  max-height: 500px; /* lo suficientemente grande para el texto */
  padding: 8px 0 15px 32px;
}



/* --------------------Servicios------------------- */

.servicios .card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.servicios .card img {
  border-bottom: 1px solid #ddd;
}

.servicios .card-body {
  padding: 20px;
  text-align: center;
}

.servicios .card-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.servicios .card-text {
  font-size: 1rem;
  color: #555;
}

.card-img-top {
  width: 100%;
  height: 250px; /* o el tamaño cuadrado que prefieras */
  object-fit: cover;
  object-position: center center; /* centra la imagen dentro del recorte */
  border-radius: 0.25rem 0.25rem 0 0; /* opcional, para que coincida con el borde redondeado de la card */
}

/* Testimonios */
.testimonios .testimonial {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.testimonios .testimonial p {
  font-style: italic;
  color: #555;
}

.testimonios .testimonial strong {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}


/* -----------------------------------contacto-------------------------- */

.seccion-contacto {
  background: linear-gradient(135deg, #403D39, #252422);
  color: #F4F4F4;
  min-height: 100vh;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contenedor-contacto {
  width: 100%;
  max-width: 700px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  padding: 50px 40px;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
}

/* Títulos */
.titulo-contacto {
  font-size: 36px;
  text-align: center;
  margin-bottom: 16px;
  color: #EB5E28;
  font-weight: 700;
  font-family: "obviously", sans-serif;
}

.subtitulo-contacto {
  font-size: 17px;
  text-align: center;
  margin-bottom: 32px;
  color: #F4F4F4;
  line-height: 1.6;
  font-family: "obviously", sans-serif;
  font-weight: 200;
}

/* Formulario */
.formulario-contacto .mb-3 {
  margin-bottom: 20px;
}

.formulario-contacto label.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #F4F4F4;
  font-family: "obviously", sans-serif;
}

/* Inputs y textarea */
.formulario-contacto input.form-control,
.formulario-contacto textarea.form-control {
  background-color: #F4F4F4 !important;
  color: #252422 !important;
  border-radius: 12px !important;
  padding: 14px !important;
  border: none !important;
  font-size: 16px !important;
  transition: border 0.3s ease !important;
}

.formulario-contacto input.form-control:focus,
.formulario-contacto textarea.form-control:focus {
  outline: none !important;
  border: 2px solid #EB5E28 !important;
}

/* Botón */
.boton-enviar {
  background-color: #EB5E28;
  color: #fff;
  padding: 14px 24px;
  border: none;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 700;
  font-family: "obviously", sans-serif;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  display: block;
  box-shadow: 0 5px 15px rgba(235, 94, 40, 0.5);
}

.boton-enviar:hover {
  background-color: #d44d1e;
  transform: scale(1.05);
  box-shadow: 0 7px 20px rgba(212, 77, 30, 0.7);
}

/* Reorganización del formulario con imagen */
.contenedor-contacto {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 30px;
  padding: 50px;
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
}

.contacto-imagen {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
}

.contacto-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.contacto-formulario {
  flex: 1.2;
  color: #F4F4F4;
}

/* -----------------------BRANDING PAGE----------------------- */

.hero-banner-secundario {
  height: 100vh;
  background: #000;
  text-align: center;
  padding: 0 20px;
  animation: fadeIn 1.5s ease-in;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
}

.resalta {
  color: #EB5E28;
}

.btn {
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #EB5E28;
  color: #000;
}

.info-section,
.manual-section {
  padding: 60px 20px;
}

/* COMO TRABAJAMOS */

#proceso {
  padding-top: 80px; /* ajustá según la altura real de tu navbar */
  margin-top: -80px;
}
.como-trabajamos-section {
  background-color: #fff;
  padding: 60px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeIn 1s ease forwards;
}

.como-trabajamos-texto {
  flex: 1 1 55%;
  font-family: 'Montserrat', sans-serif;
  color: #222;
}

.como-trabajamos-texto h2 {
  font-size: 2.8rem;
  margin-bottom: 25px;
  font-weight: 700;
  color: #EB5E28; 
}

.como-trabajamos-texto p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.lista-pasos {
  list-style: none;
  padding-left: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

.lista-pasos li {
  margin-bottom: 15px;
  font-weight: 500;
}

.lista-pasos li strong {
  color: #EB5E28;
}

.como-trabajamos-img {
  flex: 1 1 40%;
  text-align: center;
}

.como-trabajamos-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  cursor: default;
}


/* Animación fadeIn */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .como-trabajamos-section {
    flex-direction: column;
    padding: 40px 15px;
  }
  .como-trabajamos-texto, .como-trabajamos-img {
    flex: 1 1 100%;
  }
  .como-trabajamos-img img {
    max-width: 100%;
  }
}

/* PROYECTOS */

.proyectos-section {
  padding: 60px 20px;
}

.proyecto-card {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.proyecto-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.proyecto-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  font-weight: 600;
  font-size: 1.2rem;
}

.proyecto-card:hover img {
  transform: scale(1.1);
}

.proyecto-card:hover .overlay {
  opacity: 1;
}


@keyframes fadeIn {
  0% {opacity: 0; transform: translateY(40px);}
  100% {opacity: 1; transform: translateY(0);}
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }
  .btn {
    width: 100%;
  }
}

/* MANUAL DE MARCA */

.manual-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.manual-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.manual-text {
  flex: 1 1 400px;
  font-family: 'Montserrat', sans-serif;
  color: #222;
}

.manual-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #333;
}

.manual-text p {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.manual-image {
  flex: 1 1 400px;
  text-align: center;
}

.manual-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  object-fit: contain;
}

.cta-branding-btn {
  background-color: #444;
  border: none;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta-branding-btn:hover {
  background-color: #fd7e14;
  color: #fff;
  text-decoration: none;
}


/* Responsive */
@media (max-width: 768px) {
  .manual-content {
    flex-direction: column;
  }
  .manual-image {
    margin-top: 30px;
  }
}


/* --------------------------REDES PAGE--------------------------- */


/* Hero Banner */
.hero-banner {
  position: relative;
  background: url('imagenes/aredes/redes.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero-banner .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* opacidad más fuerte */
  z-index: 0;
}

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

.hero-banner .hero-title {
  font-size: 3rem;
  font-weight: 700;
}

.hero-banner .lead {
  font-size: 1.25rem;
}

.hero-banner .btn-servicios {
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 25px;
  background-color: #EB5E28;
  color: #ffffff;
  border: none;
  transition: all 0.3s ease;
}

.hero-banner .btn-servicios:hover {
  background-color: #EB5E28;
  color: #fff;
}

/* Responsive para pantallas chicas */
@media (max-width: 768px) {
  .hero-banner .hero-title {
    font-size: 2rem;
  }

  .hero-banner .lead {
    font-size: 1rem;
  }
}


/* Secciones generales */


.bg-orange {
  background-color: #fd7e14 !important;
}

.info-section {
  padding: 80px 20px;
  text-align: center;
}

.info-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.info-section p {
  max-width: 750px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

/* Botones de servicios */
.info-section .btn-outline-dark {
  border-radius: 30px;
  padding: 10px 20px;
  font-weight: 500;
  transition: 0.3s ease;
}

.info-section .btn-outline-dark:hover {
  background-color: #111;
  color: #fff;
}

/* Descripción dinámica */
#descripcion-servicio {
  font-size: 1.05rem;
  font-weight: 500;
}

.cliente-img {
  max-height: 600px;        /* Ajusta el alto máximo como prefieras */
  width: auto;              /* Se adapta proporcionalmente */
  object-fit: contain;      /* ¡Evita que se corte! */
}

.carousel-item {
  min-height: 550px;        /* Aumenta el alto del contenedor si es necesario */
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.carousel-control-prev,
.carousel-control-next {
  z-index: 2;
}

.carousel p {
  margin-top: 10px;
  font-weight: 500;
  font-size: 1rem;
}


/* SERVICIOS */

/* Estilo para los botones */

#servicios-secundario {
  position: relative;
  min-height: 400px; /* o el tamaño que quieras */
  color: white;
  overflow: hidden;
  padding: 100px;
}

#servicios-secundario::before {
  content: "";
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0; */
  background: 
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('imagenes/aredes/redes_cuentas/bannerfondo.jpg') center/cover no-repeat;
  z-index: 0;
}

/* Que el contenido quede sobre el overlay */
#servicios-secundario > * {
  position: relative;
  z-index: 1;
}



.info-section .btn-outline-dark {
  background-color: white; /* Fondo blanco en estado normal */
  color: #212529; /* Color texto oscuro por defecto */
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 180px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.info-section .btn-outline-dark:hover,
.info-section .btn-outline-dark.active {
  background-color: #fd7e14;
  border-color: #fd7e14;
  color: white;
  box-shadow: 0 4px 12px rgba(253, 126, 20, 0.6);
}

/* Contenedor descripción */
#descripcion-servicio {
  position: relative;
  font-size: 2.5rem;
  font-weight: 900; /* Peso máximo */
  color: #333;
  max-width: 700px;
  margin: 0 auto;
  padding: 25px 30px;
  border-radius: 10px;
  background-color: #fff8f0;
  border: 2px solid #fd7e14;
  box-shadow: 0 6px 15px rgba(253, 126, 20, 0.2);
  transition: opacity 0.4s ease;
  min-height: 110px;
}

/* PLANES */

/* Contenedor general */
.planes-redes {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: 'Arial', sans-serif;
}

.titulo-seccion {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: #424242; 
  margin-bottom: 40px;
}

/* Flex contenedor para los planes */
.planes-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Cada tarjeta de plan */
.plan-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  flex: 1 1 320px;
  max-width: 350px;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;

  /* CAMBIO CLAVE: quitamos overflow hidden */
  overflow: visible;
}


.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgba(255, 102, 0, 0.4);
}

/* Título del plan */
.plan-titulo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #403D39; 
  margin-bottom: 18px;
}

/* Descripción */
.plan-descripcion {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
  flex-grow: 0;
}

/* Lista de características */
.plan-lista {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
  flex-grow: 1;
}

.plan-lista li {
  font-size: 0.95rem;
  color: #555;
  padding-left: 20px;
  margin-bottom: 12px;
  position: relative;
}

.plan-lista li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #fd7e14; 
  font-weight: 700;
}

/* Botón CTA */
.btn-cta-plan {
  display: inline-block;
  background-color: transparent;
  border: 2px solid #fd7e14;
  color: #fd7e14;
  text-align: center;
  padding: 12px 0;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  user-select: none;
}

.btn-cta-plan:hover {
  background-color: #fd7e14;
  color: white;
}

/* Responsive */
@media (max-width: 1000px) {
  .planes-container {
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .planes-container {
    flex-direction: column;
    align-items: center;
  }
  .plan-card {
    max-width: 90%;
  }
}

/* Logos de clientes */
.info-section-terciaria {
  background-color: #ffffff;
  padding: 90px 40px;  
  text-align: center;
  overflow: visible;
}

.info-section-terciaria h2 {
  margin-bottom: 6 0px;
}


.info-section-terciaria img.img-fluid {
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
  height: 100px;
  max-height: 160px;
  object-fit: contain;
  display: inline-block;
}

.info-section-terciaria img.img-fluid:hover {
  filter: grayscale(0%);
  transform: scale(1.8); /* Aumentá más si querés más efecto */
}




/* -------------------------BRANDING KENYA----------------- */

.btn-float-volver {
  position: fixed;
  top: 100px;
  left: 30px;
  background-color: #fd7e14;
  color: white;
  padding: 12px 20px;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.btn-float-volver:hover {
  background-color: #e0650e;
  color: white;
}


.hero-kenya {
  position: relative;
  height: 100vh;
  background: url('imagenes/clientes-branding/kenyabranding/banner kenya 4.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-kenya::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-kenya .content {
  z-index: 2;
  max-width: 800px;
}

.hero-kenya h1 {
  font-size: 4rem;
  font-weight: bold;
  text-transform: uppercase;
}

.hero-kenya img {
  max-height: 100px;
  margin-bottom: 20px;
}

/* Secciones generales */
section {
  padding: 80px 20px;
}


FIJARSE ACA ARRIBA QUE ONDA 

.sobre-proyecto {
  background-image: url('imagenes/clientes-branding/kenyabranding/pattern2.png');
  background-repeat: repeat;
  background-size: contain;
  padding: 80px 20px;
  color: #222;
  text-align: center;
  position: relative;
  z-index: 1;
}

.sobre-proyecto::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(255, 255, 255, 0.9); /* capa blanca suave para leer bien el texto */
  z-index: -1;
}

.sobre-proyecto .contenido {
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
}


/* Paleta */
.color-palette {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.color-swatch {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
}

.color-swatch-secundario{
  width: 100px;
  height: 100px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #414141;
  font-weight: bold;
}


.logos-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px; /* Ajustá este valor para más o menos espacio */
  padding-top: 40px; /* Si querés también espacio desde el título */
}


/* Estilo común para separación vertical */
#logo-principal,
#logo-secundario,
#logo-icono {
  margin-top: 20px;
}

/* Individuales */
#logo-principal {
  max-width: 200px;
  height: auto;
}

#logo-secundario {
  max-width: 200px;
  height: 60px;
  transform: translateY(50px); /* Baja para alinearse con los otros */
}

#logo-icono {
  max-width: 120px;
  height: auto;
}

/* Si querés más separación entre ellos */
.d-flex.justify-content-center.gap-5 {
  gap: 60px; /* O más si querés mayor separación entre logos */
}


/* Productos */
.product-showcase img {
  max-height: 300px;
  transition: transform 0.4s ease;
}

.product-showcase img:hover {
  transform: scale(1.05);
}

/* Mockups */
.mockup-gallery img {
  height: 400px;  /* Ajustá según lo que necesites */
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}

/* MOCKUP GALLERY */

.producto-hover {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.producto-hover img {
  max-width: 250px; /* Ajustalo a lo que necesites */
  transition: transform 0.3s ease;
}

.producto-hover:hover img {
  transform: scale(1.05);
}

.descripcion-hover {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #111;
  font-size: 0.9rem;
  transition: bottom 0.4s ease;
  font-family: "tu-tipografía", sans-serif; /* opcional */
}

.producto-hover:hover .descripcion-hover {
  bottom: 0;
}

/* HISTORIA */

.bloque-historia {
  background-color: #fff;
  padding: 25px;
  border-radius: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  color: #444;
}

.bloque-historia:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background-color: #f8f9fa;
}

.icono-historia {
  font-size: 2.5rem;
  color: #444; /* tono cálido elegante */
  margin-bottom: 15px;
  display: block;
  transition: color 0.3s ease;
}

.bloque-historia:hover .icono-historia {
  color: #444; /* tono más oscuro al pasar */
}

.bloque-historia h4 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #444;
}

.bloque-historia p {
  font-size: 0.95rem;
  color: #666;
}

.texto-final {
  font-style: italic;
  color: #444;
  font-size: 1.1rem;
}


/* Historia y visión */
.texto-kenya .row {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px; /* separación entre columnas */
}

.texto-kenya .col-md-6 {
  flex: 0 0 48% !important;
  max-width: 48% !important;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
  padding: 32px 40px;
  margin-bottom: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.texto-kenya .col-md-6:hover {
  box-shadow: 0 12px 28px rgba(243, 139, 48, 0.4);
  transform: translateY(-6px);
  color: #2a2a2a;
}

@media (max-width: 767px) {
  .texto-kenya .col-md-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-bottom: 32px;
  }
}

/* BEHANCE SECCIÓN */

.behance-invite {
  background: #171717;
  color: #f7f7f7;
  border-radius: 16px;
  margin: 80px auto;
  padding-top: 5px;
  max-width: 900px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.7);
  transition: background 0.3s ease;
}

.behance-invite h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.behance-invite p.lead {
  font-size: 20px;
  color: #d1d1d1;
  margin-bottom: 32px;
}

.btn-behance {
  font-size: 18px;
  padding: 14px 28px;
  border: 2px solid #e0650e;
  border-radius: 50px;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-behance i {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.btn-behance:hover, .btn-behance:focus {
  background-color: #fd7e14;
  color: #fff;
  text-decoration: none;
}

.btn-behance:hover i, .btn-behance:focus i {
  transform: scale(1.2) rotate(15deg);
}



/* ------------------------LERUM BRANDING PAGE-------------------- */


/* ---------- BANNER ---------- */


.logo-banner {
  width: 180px; 
  margin-bottom: 20px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.4));
}

.banner-lerum {
  position: relative;
  height: 600px;
  background-image: url('imagenes/clientes-branding/lerumbranding/tragobanner.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-lerum .overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px;
  text-align: center;
  border-radius: 12px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100%;
}

.banner-lerum h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.banner-lerum p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.banner-lerum h1,
.banner-lerum p {
  color: white;
}

/* ---------- EXPERIENCIA ---------- */

.experiencia-lerum {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 80px 60px;
  flex-wrap: wrap;
  background: linear-gradient(180deg, #1a1a1a 0%, #0e0e0e 100%);
}
.contenedor-texto {
  flex: 1;
  max-width: 600px;
}
.experiencia-lerum h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #fd7e14;;
}
.experiencia-lerum p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #f7f7f7;
}
.puntos-experiencia {
  list-style: none;
  color: #f7f7f7;
}
.puntos-experiencia li {
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}
.puntos-experiencia i {
  color: #fd7e14;
  font-size: 22px;
  margin-right: 10px;
  transition: transform 0.3s;
}
.puntos-experiencia li:hover i {
  transform: scale(1.2);
}
.mockup-img {
  flex: 1;
  text-align: center;
}
.mockup-img img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0px 0px 30px rgba(255, 46, 99, 0.3);
}

/* ---------- IDENTIDAD ---------- */

.imagen-identidad {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto; /* centra la imagen si sobra espacio */
}

.identidad-lerum {
  background-color: #121212;
  padding: 80px 60px;
  text-align: center;
}
.identidad-lerum h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #fd7e14;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.tags span {
  background-color: #fd7e14;
  padding: 12px 20px;
  border-radius: 30px;
  color: white;
  font-size: 16px;
  transition: transform 0.2s, background-color 0.3s;
}
.tags span:hover {
  transform: scale(1.05);
  background-color: #d44d1e;
}

#identidad-lerum p {
  cursor: pointer;
}

/* LOGOS */

#lerum-logo-principal,
#lerum-logo-secundario,
#lerum-logo-icono {
  margin-top: 20px;
  padding: 0 30px;
}

/* Individuales */
#lerum-logo-principal {
  max-width: 300px;
  height: auto;
}

#lerum-logo-secundario {
  width: 400px;
  height: auto;
  transform: translateY(40px); /* Baja para alinearse con los otros */
}

#lerum-logo-icono {
  max-width: 300px;
  height: auto;
}

/* Si querés más separación entre ellos */
.d-flex.justify-content-center.gap-5 {
  gap: 60px; /* O más si querés mayor separación entre logos */
}


/* MOCKUP GALLERY LERUM */

.lerum-mockup-gallery .row {
  padding-top: 30px; /* separa las imágenes del título */
  row-gap: 10px; /* menos espacio entre las filas en mobile */
}

.lerum-mockup-gallery .col-md-6 {
  margin-bottom: 5px; /* menos espacio vertical entre columnas en pantallas grandes */
}

.lerum-producto-hover img {
  max-width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 10px;
}


.lerum-producto-hover {
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: 100%;
  text-align: center;
}

.lerum-producto-hover img {
  max-width: 100%;
  height: 320px; /* Tamaño unificado */
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 10px;
}

.lerum-producto-hover:hover img {
  transform: scale(1.05);
}

.lerum-descripcion-hover {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #111;
  font-size: 0.9rem;
  transition: bottom 0.4s ease;
  font-family: "Arial", sans-serif;
}

.lerum-producto-hover:hover .lerum-descripcion-hover {
  bottom: 0;
}


/* ---------- SECCIÓN PALETA DE COLORES ---------- */
.paleta-lerum {
  background: #0e0e0e;
  padding: 80px 60px;
  text-align: center;
}
.paleta-lerum h2 {
  font-size: 32px;
  color: #ff2e63;
  margin-bottom: 30px;
}
.colores-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.color-box {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 10px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0px 0px 12px rgba(255, 255, 255, 0.05);
}
.color-1 { background-color: #ff2e63; }
.color-2 { background-color: #1a1a1a; }
.color-3 { background-color: #0e0e0e; }
.color-4 { background-color: #ff5277; }
.color-5 { background-color: #ffffff; color: #0e0e0e; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .experiencia-lerum {
    flex-direction: column;
    padding: 60px 30px;
  }
  .mockup-img {
    margin-top: 40px;
  }
  .banner-lerum h1 {
    font-size: 36px;
  }
  .banner-lerum p {
    font-size: 16px;
  }
}



/* ------------------------AFLORAR BRANDING PAGE------------------ */

/* SECCIÓN INTRO AFLORAR */
#intro-aflorar {
  position: relative;
  background-image: url("imagenes/clientes-branding/aflorarbranding/resina.jpeg"); /* Cambiar por la imagen de fondo deseada */
  background-size: cover;
  background-position: center;
  color: #fd7e14;
  min-height: 100vh;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  overflow: hidden;
}

#intro-aflorar .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Opacidad negra */
  z-index: 1;
}

#intro-aflorar .content {
  position: relative;
  z-index: 2;
}

.logo-aflorar {
  max-width: 200px;
  height: auto;
}

#intro-aflorar h1 {
  font-size: 2.5rem;
}

#intro-aflorar .lead {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
}

#intro-aflorar .btn {
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

#intro-aflorar .btn:hover {
  background-color: #222;
  color: #fff;
}


/* LOGOS VARIABLES */

#aflorar-logo-principal,
#aflorar-logo-secundario,
#-aflorar-logo-icono {
  margin-top: 20px;
  padding: 0 30px;
}

#aflorar-logo-principal {
  max-width: 300px;
  height: 200px;
}

#aflorar-logo-secundario {
  max-width: 450px;
  height: 150px;
  transform: translateY(10px); /* Baja para alinearse con los otros */
}

#aflorar-logo-icono {
  max-width: 300px;
  height: 200px;
}


/* COLOR PALETTE */

.color-palette {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.color-box {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.color-box p {
  margin: 0;
  color: white;
  font-weight: bold;
  font-family: inherit;
  text-align: center;
  font-size: 0.9rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.color-palette .color-box:nth-child(6) p {
  color: #454547;
  text-shadow: none; /* opcional para que no haya sombra */
}


/* MOCKUP CARRUSEL */

.mockup-carousel {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  scroll-snap-type: x mandatory;
  padding: 10px 0;
}

.mockup-carousel img {
  scroll-snap-align: center;
  width: 300px;
  height: 300px;        /* Cambiar height a fijo igual que width para cuadrado */
  border-radius: 12px;
  transition: transform 0.3s;
  object-fit: cover;    /* Para recortar y que la imagen no se deforme */
}

.mockup-img {
  width: 100%;
  height: 250px; /* O ajustá el alto que prefieras */
  object-fit: cover;
  border-radius: 12px; /* Borde redondeado */
}


.mockup-carousel img:hover {
  transform: scale(1.05);
}


/* VISIÓN Y MISIÓN */

.vision-mision-section {
  background: #faf6f2; /* fondo claro, suave */
  position: relative;
}

.imagen-flor {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 5%;
}

.card-vision-mision {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.card-vision-mision:hover {
  transform: translateY(-5px);
}

.titulo-vision,
.titulo-mision {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #212529; 
}

.card-vision-mision p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.card-vision-mision i {
  color: #e0650e;
  font-size: 1.3rem;
  vertical-align: middle;
}



/* BEHANCE AFLORAR */
#behance-aflorar {
  background-color: #111; /* o el color de fondo que combine con tu marca */
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.behance-invite-aflorar h3 {
  font-family: 'NombreDeTuFuente', sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.behance-invite-aflorar p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  font-family: 'NombreDeTuFuenteSecundaria', sans-serif;
}

.btn-behance-aflorar {
  border: 2px solid #fff;
  color: #fff;
  transition: all 0.3s ease;
}

.btn-behance-aflorar:hover {
  background-color: #fff;
  color: #111;
}



/* -------------------------PORTFOLIO PAGE----------------------- */

/* HEADER */
.pf-header {
  height: 90vh;
  background: linear-gradient( #5d5d5d84, #222222cc), url('imagenes/portfolio/ignatusbanner.jpg') no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.pf-header-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 0 15px #404040cc;
}

.pf-header-content p {
  font-size: 1.5rem;
  color: #fff;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 0 10px #404040cc;
}

/* CONTENEDOR GENERAL */
.pf-containers {
  margin: 0 auto;
  padding: 60px 15px; /* solo padding horizontal */
  background: none;
}

/* SERVICIOS */
.pf-servicios h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
  color: #ff6600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.pf-servicios-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.pf-servicio-card {
  background-color: #262626;
  color: #fff;
  border-radius: 15px;
  padding: 2rem;
  width: 300px;
  height: 100%; /* necesario para usar flex correctamente */
  box-shadow: 0 0 15px #ff6600aa;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pf-servicio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px #ff6600ff;
}

.pf-servicio-card h3 {
  margin-top: 1rem;
  color: #ff6600;
  font-size: 1.2rem;
}

.pf-servicio-card p {
  margin-top: 0.8rem;
  font-size: 0.95rem;
  flex-grow: 1;
}

.pf-icon {
  font-size: 3rem;
  color: #ff6600;
}

/* PROYECTOS */

.pf-proyectos h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #ff6600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.pf-proyectos-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.pf-proyecto-card {
  background: #262626;
  width: 300px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 15px #ff6600aa;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.pf-proyecto-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px #ff6600ff;
}

.pf-proyecto-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.pf-proyecto-card h4 {
  margin: 1rem;
  color: #ff6600;
}

.pf-proyecto-card p {
  margin: 0 1rem 1.5rem;
  font-size: 0.95rem;
  flex-grow: 1;
}


/* TESTIMONIOS */
.testimonios-seccion {
  background: #262626;
  padding: 150px 15px;
  text-align: center;
}

.testimonios-seccion h2 {
  font-size: 2.5rem;
  margin-top: 0;
  margin-bottom: 24px;
  color: #ff6600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.testimonios-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.testimonio-box {
  background: #262626;
  max-width: 320px;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 0 15px #ff6600aa;
  font-style: italic;
  color: #fff;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonio-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px #ff6600ff;
}

.testimonio-box span {
  display: block;
  margin-top: 1rem;
  font-weight: 700;
  color: #ff6600;
}

/* PROCESO TIMELINE */
.proceso-seccion {
  height: 100vh; 
  padding: 60px 15px;
  background: linear-gradient(to bottom, #1b1b1b, #000); 
  color: #ffffff;
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.proceso-seccion h2 {
  font-size: 2.5rem;
  margin-top: 0;
  margin-bottom: 24px;
  color: #ff6600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.timeline-proceso {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  padding-left: 30px;
}

.timeline-proceso::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #ff6600;
  border-radius: 2px;
}

.timeline-item {
  background: #262626;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 0 15px #ff6600aa;
  position: relative;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 20px;
  width: 25px;
  height: 25px;
  background: #ff6600;
  border-radius: 50%;
  box-shadow: 0 0 15px #ff6600cc;
}

.timeline-item:hover {
  transform: translateX(15px);
  box-shadow: 0 0 25px #ff6600ff;
}

.timeline-item h3 {
  margin-bottom: 10px;
  color: #ff6600;
}


/* CTA FINAL */
.pf-contacto-moderno {
  background: linear-gradient(to right, #1e1e1e, #2c2c2c);
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.pf-contacto-caja {
  background-color: rgba(255, 255, 255, 0.08); /* fondo del contenedor, no blanco */
  padding: 60px 40px;
  border-radius: 16px;
  max-width: 700px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.pf-contacto-caja h2 {
  font-size: 2.5rem;
  margin-top: 0;
  margin-bottom: 24px;
  font-weight: 700;
}

.pf-contacto-caja p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.pf-btn-naranja {
  background-color: #fd7e14;
  color: #fff;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.pf-btn-naranja:hover {
  background-color: #EB5E28;
  transform: scale(1.05);
}


/* Responsividad */
@media (max-width: 991px) {
  .pf-servicios-grid,
  .pf-proyectos-grid,
  .pf-testimonios-container {
    flex-direction: column;
    align-items: center;
  }

  .pf-timeline {
    padding-left: 15px;
  }
}


/* ----------------------BLOG PAGE------------------ */
.pf-blog-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.pf-video-fondo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Recorta el video para cubrir todo el contenedor */
  z-index: 1;
  max-height: none;
}

.pf-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Capa oscura */
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.pf-blog-hero-content {
  color: #fff;
  max-width: 800px;
}

.pf-blog-titulo {
  font-size: 3rem;
  margin-bottom: 1rem;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #fff;
  animation: escribir 3s steps(30, end) forwards, parpadeo 0.7s step-end infinite;
}

.pf-blog-subtitulo {
  font-size: 1.2rem;
  margin-top: 1rem;
  opacity: 0;
  animation: aparecer 2s ease 3.5s forwards;
}

/* Animación máquina de escribir */
@keyframes escribir {
  from { width: 0 }
  to { width: 100% }
}

@keyframes parpadeo {
  0%, 100% { border-color: transparent }
  50% { border-color: #fff }
}

@keyframes aparecer {
  to { opacity: 1 }
}

/* Segunda sección */
.pf-bitacora {
  position: relative;
  background-color: #2c2c2c; 
  padding: 60px 20px;
  box-shadow: 0 -30px 60px -20px rgba(0, 0, 0, 0.3);
  background: radial-gradient(circle, transparent 20%, #292929 20%, #292929 80%, transparent 80%, transparent) 0% 0% / 122px 122px, radial-gradient(circle, transparent 20%, #292929 20%, #292929 80%, transparent 80%, transparent) 61px 61px / 122px 122px, linear-gradient(#fa9000 2.5px, transparent 2.5px) 0px -1.25px / 61px 61px, linear-gradient(90deg, #fa9000 2.5px, #292929 2.5px) -1.25px 0px / 61px 61px #292929;
  background-size: 122px 122px, 122px 122px, 61px 61px, 61px 61px;
  background-color: #292929;
  z-index: 2;
}

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

.pf-bitacora-titulo {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.pf-bitacora-subtitulo {
  font-size: 1.2rem;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.pf-bitacora-header {
  background-color: rgba(87, 87, 87, 0.441); /* caja oscura semitransparente */
  backdrop-filter: blur(4px); /* difumina el fondo */
  -webkit-backdrop-filter: blur(4px);
  padding: 30px 20px;
  border-radius: 12px;
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
}

/* ARTÍCULOS BLOG */
.blog-articulos {
  max-width: 900px;
  margin: 3rem auto 6rem;
  padding: 0 20px;
}

.blog-post {
  background: #fff;
  border-radius: 15px;
  padding: 2rem 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
}

.blog-post:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.blog-post h2 {
  font-size: 1.8rem;
  margin-bottom: 0.3rem;
  color: #222;
}

.blog-fecha {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 1.3rem;
  font-style: italic;
}

.blog-post p {
  color: #444;
  line-height: 1.6;
}

.blog-btn {
  margin: 1.5rem 0;
  padding: 10px 24px;
  background-color: #fd7e14;
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.blog-btn:hover {
  background-color: #eb5e28;
}

/* Contenedor oculto con animación */
.blog-nota-completa {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  margin-top: 0;
  color: #555;
  line-height: 1.65;
}

/* Cuando está activo, max-height grande para expandir */
.blog-nota-completa.show {
  max-height: 1000px; /* suficientemente grande para el contenido */
  opacity: 1;
  margin-top: 1rem;
}


/* ---------------------PROYECTOS PAGE---------------- */

/* ============================
   CARRUSEL HERO PERSONALIZADO
=============================== */

/* Eliminar márgenes y padding laterales */
#hero-carousel,
.carousel-inner,
.carousel-item,
.carousel-item img {
  margin: 0;
  padding: 0;
}

/* Asegura que las slides ocupen todo el alto de la ventana */
#hero-carousel .carousel-item {
  height: 100vh;
  position: relative;
}

#hero-carousel .carousel-item img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

/* Texto siempre visible con fondo transparente */
.carousel-caption {
  background-color: rgba(0, 0, 0, 0.4); /* Fondo oscuro semitransparente */
  padding: 1.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  max-width: 90%;
  margin: 0 auto;
  color: #fff;
}

.carousel-caption h3 {
  font-size: 2.5rem;
  font-weight: bold;
}

.carousel-caption p {
  font-size: 1.2rem;
}

/* FLECHAS DE NAVEGACIÓN PERSONALIZADAS */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: white;
  border-radius: 50%;
  width: 3.5rem;
  height: 3.5rem;
  background-size: 60%;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.5));
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  background-color: orange;
  filter: drop-shadow(0 0 8px orange);
}

/* Ajustes para indicadores (opcionalmente visibles en móviles) */
.carousel-indicators button {
  background-color: #fff;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: orange;
}

/* ============================
   RESPONSIVE - MÓVILES
=============================== */
@media (max-width: 768px) {
  .carousel-caption {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }

  .carousel-caption h3 {
    font-size: 1.6rem;
  }

  .carousel-caption p {
    font-size: 1rem;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-size: 50%;
  }
}




/* PROYECTOS */

.proyectos-header {
  background-color: #EB5E28;
  color: #fff;
  margin-top: -5px;
}

.proyectos-titulo {
  font-size: 3rem;
  font-weight: 700;
}

.proyectos-subtitulo {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  padding-top: 25px;
}

.proyectos-titulo-secundario {
  color: #EB5E28;
  font-size: 2rem;
  font-weight: 600;
}

.proyectos-card {
  background: #f8f8f8;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.proyectos-card:hover {
  transform: translateY(-5px);
}

.proyectos-nombre {
  color: #EB5E28;
  font-size: 1.25rem;
  font-weight: 600;
}

.proyectos-descripcion {
  font-size: 1rem;
  color: #403D39;
  font-weight: 400;
  padding: 15px;
}

.proyectos-faq .accordion-button {
  font-weight: 600;
}




/* -------------------------WEB PAGE----------------- */

.pf-hero-web {
  position: relative;
  background: url('imagenes/web/bannersweb/6.png') center center/cover no-repeat;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  z-index: 1;
  overflow: hidden;
  margin-top: 90px;
}

.pf-hero-web::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.685); /* Ajusta opacidad aquí */
  z-index: -1;
}


.pf-hero-web h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.pf-hero-web p {
  font-size: 1.2rem;
  max-width: 900px;
  margin: 0 auto;
}

.pf-seccion-destacada {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 60px 20px;
  gap: 2rem;
  margin-bottom: 80px;
}

.pf-seccion-img {
  flex: 1 1 400px;
}

.pf-seccion-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 20px #00000030;
}

.pf-seccion-texto {
  flex: 1 1 400px;
}

.pf-seccion-texto h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.pf-seccion-texto p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.pf-btn {
  display: inline-block;
  background: #ff6600;
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.pf-btn:hover {
  background: #e25600;
}

.pf-proceso {
  background: #f9f9f9;
  padding: 80px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.pf-proceso h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #111;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.pf-proceso-lista {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.9;
  color: #444;
  font-size: 1.15rem;
  list-style: none;
  padding-left: 0;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
  padding: 40px 30px;
}

.pf-proceso-lista li {
  position: relative;
  padding-left: 50px;
  margin-bottom: 1.8rem;
}

/* Numeración personalizada */
.pf-proceso-lista li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  background: #ff6600;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(255, 102, 0, 0.5);
  user-select: none;
}

/* Reset contador para la lista */
.pf-proceso-lista {
  counter-reset: step-counter;
}

/* Responsive */
@media (max-width: 600px) {
  .pf-proceso {
    padding: 60px 15px;
  }

  .pf-proceso h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }

  .pf-proceso-lista {
    padding: 30px 20px;
    font-size: 1rem;
  }

  .pf-proceso-lista li {
    padding-left: 45px;
    margin-bottom: 1.5rem;
  }

  .pf-proceso-lista li::before {
    width: 30px;
    height: 30px;
    font-size: 1rem;
    top: 3px;
  }
}


.pf-galeria-web {
  padding: 60px 20px;
  background: #fff;
  border-radius: 5%;
}

.pf-galeria-web h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.pf-galeria-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  
}

.pf-galeria-grid img {
  width: 300px;
  border-radius: 5%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* sombra leve */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pf-galeria-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15); /* sombra un poco más fuerte al pasar el mouse */
}



/* ---------------------------DISEÑO GRÁFICO PAGE------------------------------ */


/* Reset básico */
* {
  box-sizing: border-box;
}

.main-content {
  max-width: 1200px;     /* limita el ancho máximo */
  margin: 100px auto 60px; /* arriba 100px (como tenías en main), horizontal auto para centrar, abajo 60px */
  padding: 0 20px;       /* espacio interno lateral para que no toque los bordes */
  flex-grow: 1;          /* si estás usando flexbox y querés que crezca */
}


/* Título animado */
.animated-title {
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
  margin: 50px auto 20px auto;
  padding: 0 1rem;
}



.animated-subtitle {
  font-weight: 600;            
  font-size: 1.4rem;              
  color: #222222;                 
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto; 
  line-height: 1.6;
  letter-spacing: 0.3px;
  padding: 0 1.5rem; 
}


/* Grid de trabajos */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* Cada card */
.gallery-item {
  background: #cfcfcf;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: 0 5px 20px rgba(255, 102, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(255, 102, 0, 0.8);
}

/* Imagen, tamaño fijo */
.gallery-item img {
  width: 100%;      /* ancho completo del card */
  height: 220px;    /* alto fijo igual para todas las cards */
  object-fit: cover; /* cubre todo el espacio sin franjas blancas */
  display: block;
  transition: filter 0.3s ease;
}


.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 20px 60px; /* arriba: 120px para que no quede tapado por navbar */
  flex-grow: 1;
}


/* Fondo modal */
.modal {
  display: none; /* oculto por defecto */
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.9);
  cursor: pointer;
  overflow: hidden; /* evita scroll y franjas */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Imagen modal: ocupa todo el modal sin franjas */
.modal-content {
  width: 100%;
  height: 100%;
  object-fit: cover; /* cubre todo sin dejar franjas */
  user-select: none;
}




/* Contenedor texto hover */
.hover-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -80px; /* escondido inicialmente */
  background: rgba(228, 227, 227, 0.8);
  color: #1c1c1c;
  padding: 12px 15px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  border-top: 2px solid #ff6600;
  border-radius: 0 0 15px 15px;
  transition: bottom 0.35s ease;
  pointer-events: none;
  user-select: none;
}

/* Mostrar texto al hover */
.gallery-item:hover .hover-info,
.gallery-item:focus .hover-info {
  bottom: 0;
  pointer-events: auto;
}

/* Para que la imagen se oscurezca un poco al hover */
.gallery-item:hover img,
.gallery-item:focus img {
  filter: brightness(0.75);
}

/* Responsive */
@media (max-width: 600px) {
  .gallery-item img {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .animated-title {
    font-size: 2.2rem;
    margin-top: 30px;
    margin-bottom: 16px;
  }
  
    .animated-subtitle {
      font-size: 1.1rem;
      margin-bottom: 30px;
    }
  }


.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.modal img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  z-index: 10000;
}


@keyframes zoomIn {
  from {transform: scale(0.7);}
  to {transform: scale(1);}
}

#caption {
  margin: 15px auto;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  max-width: 90%;
}

/* Botón cerrar */
.close {
  position: fixed;
  top: 25px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
  user-select: none;
  z-index: 1001;
}

.close:hover {
  color: #ff6600;
}



/* ----------------------------------EDICIÓN DE VIDEOS PAGE---------------------------- */


/* Banner de video */
.video-banner-edicion {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-banner-edicion video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(0.4);
}

.overlay-texto-edicion {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  padding: 1rem;
}

.overlay-texto-edicion h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.overlay-texto-edicion p {
  font-size: 1.2rem;
}

/* Explicación del servicio */
.servicios-video {
  background: #0f0f0f;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.titulo-seccion {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: #f5f5f5;
}

.descripcion-seccion {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 50px auto;
  color: #ccc;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

.servicio-box {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servicio-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
}

.servicio-box img {
  width: 60px;
  margin-bottom: 20px;
}

.servicio-box h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.servicio-box p {
  font-size: 1rem;
  color: #bbb;
}

.servicio-icono {
  font-size: 3rem;
  color: #ff6f00;
  margin-bottom: 20px;
}


/* Portfolio */
.portfolio-videos {
  background-color: #d87435;
}

.video-card {
  cursor: pointer;
  transition: transform 0.3s ease;
  border: none;
  overflow: hidden;
  border-radius: 10px;
}
.video-card:hover {
  transform: scale(1.02);
}

.video-titulo {
  font-size: 1rem;
  margin-top: 0.5rem;
  color: #fff;
}

.modal-content {
  background-color: black;
}

.modal-body video {
  width: 100%;
  height: auto;
  max-height: 90vh;
}

/* Opcional: título blanco */
.titulo-seccion,
.descripcion-seccion {
  color: #fff;
}


/* Cómo trabajamos */
.seccion-work {
  max-width: 900px;
  margin: 0 auto;
}

.contenedor-work h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
}

.work-block {
  background-color: #111;
  border-left: 4px solid #ff6f00;
  padding: 20px;
  margin-bottom: 30px;
  opacity: 0; /* Oculto al inicio para animar con GSAP */
  transform: translateY(50px);
}

.work-block h3 {
  color: #ff6f00;
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.work-block p {
  color: #ccc;
  font-size: 1rem;
}

.work-block {
  transform: translateY(50px) scale(0.95);
  transition: all 0.3s ease-out;
}

/* Animación de color del texto */
.titulo-animado {
  display: inline-block;
}

/* UGC */
.ugc-propio {
  background: #0e0e0e;
  color: #fff;
  border-top: 4px solid #ff7700;
  border-bottom: 4px solid #ff7700;
}

.ugc-video {
  width: 280px;
  height: 500px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.ugc-titulo {
  font-size: 2rem;
  font-weight: 700;
  color: #ff9900;
  animation: fadeInUp 1s ease forwards;
}

.ugc-descripcion {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1.2s ease forwards;
}

.ugc-lista {
  list-style: none;
  padding-left: 0;
  animation: fadeInUp 1.4s ease forwards;
}

.ugc-lista li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.ugc-lista i {
  color: #ff8400;
  margin-right: 10px;
}

.modal-body video {
  max-height: 90vh;
  width: 100%;
  object-fit: contain !important;
}


/* Animaciones */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Responsive */
@media (max-width: 768px) {
  .overlay-texto-edicion h1 {
    font-size: 2rem;
  }

  .overlay-texto-edicion p {
    font-size: 1rem;
  }
}

/* Animaciones cinematográficas */
@keyframes cinematicTitle {
  0% {
    opacity: 0;
    transform: scale(1.4) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes cinematicSubtitle {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Aplicar animaciones */
.overlay-texto-edicion h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  animation: cinematicTitle 1s ease-out forwards;
}

.overlay-texto-edicion p {
  font-size: 1.2rem;
  opacity: 0;
  animation: cinematicSubtitle 1s ease-out forwards;
  animation-delay: 0.8s;
}




/* ---------------------------CONSULTORIA PAGE---------------------------- */

.hero-banner {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-image: url('imagenes/consultoria.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65); /* opacidad ajustable */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 800px;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}





.consultoria-seccion {
  padding: 4rem 1rem;
}

.consultoria-lista li {
  margin-bottom: 1rem;
}

.consultoria-faq .accordion-button::after {
  filter: brightness(0);
}

/* BOTON */

.consultoria-cta-final {
  background: linear-gradient(135deg, #141e30, #243b55); /* Degradado oscuro atractivo */
  position: relative;
  overflow: hidden;
}

.animate-title {
  animation: fadeUp 1s ease-out forwards;
  opacity: 0;
}

.animate-subtitle {
  animation: fadeUp 1.5s ease-out forwards;
  opacity: 0;
}

.animate-button {
  animation: fadeUp 2s ease-out forwards;
  opacity: 0;
  transition: transform 0.3s ease;
}

.animate-button:hover {
  transform: scale(1.05);
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



/* SECCION HOJA DE RUTA */


.titulo-hoja {
  font-size: 2.5rem;
  font-weight: 700;
}

.subtitulo-hoja {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.2rem;
  color: #555;
}

.btn-banner-consultoria {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(45deg, #ff6f00, #ff8f00); /* Naranja degradado */
  border: none;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 8px 15px rgba(255, 111, 0, 0.4);
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.btn-banner-consultoria:hover,
.btn-banner-consultoria:focus {
  background: linear-gradient(45deg, #ff8f00, #ff6f00);
  box-shadow: 0 12px 20px rgba(255, 111, 0, 0.6);
  transform: translateY(-3px);
  outline: none;
}

.btn-banner-consultoria:active {
  transform: translateY(1px);
  box-shadow: 0 6px 10px rgba(255, 111, 0, 0.3);
}


#consultoria-seccion {
  padding-top: 90px; /* espacio extra para que no quede tapado */
  margin-top: 0;     /* para evitar márgenes adicionales */
}

.hoja-de-ruta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.hoja-item {
  background: #fffbe6;
  border: 2px dashed #dd6911;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  position: relative;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.6s ease;
}

.hoja-item h3 {
  font-size: 1.3rem;
  margin-top: 1rem;
  color: #f0913e;
}

.hoja-item p {
  font-size: 0.95rem;
  color: #444;
}

.hoja-header {
  position: absolute;
  top: -15px;
  left: -15px;
  background: #ff7700;
  color: #000;
  font-weight: bold;
  font-size: 1rem;
  padding: 5px 10px;
  border-radius: 5px;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* Animación al hacer scroll */
.animar.visible {
  transform: translateY(0);
  opacity: 1;
}


/* FAQ BOTONES */

/* Color naranja de marca */
.text-orange {
  color: #ff6600; /* Ajustalo si tu naranja es otro tono */
}

/* Acordeón FAQ */
.accordion-button {
  background-color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 0.5rem;
  color: #333;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 102, 0, 0.25);
}

.accordion-button:not(.collapsed) {
  background-color: #fff3e6;
  color: #ff6600;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-item {
  background: linear-gradient(180deg, #ffffff 0%, #f4f4f4 100%);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.2s ease;
  border: none;
}

.accordion-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.accordion-body {
  background-color: #ffffff;
  font-size: 0.95rem;
  color: #444;
}

/* CTA CLIENTES */

/* CSS para forzar fondo naranja en la sección CTA final */
section.consultoria-cta-final {
  background-color: #ff6f00 !important;
  color: white; /* Asegura texto blanco legible */
}

.consultoria-cta-final .btn-outline-light {
  color: white;
  border-color: white;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.consultoria-cta-final .btn-outline-light:hover,
.consultoria-cta-final .btn-outline-light:focus {
  background-color: white;
  color: #ff6f00;
  border-color: white;
}


/* -------------------DERQUI PAGE------------------ */

.derqui-contenedor-principal {
  background: linear-gradient(135deg, #000000, #c4001e);
  color: white;
  padding-top: 80px;
  padding-bottom: 80px;
}

.derqui-titulo-principal {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #fff; /* texto blanco */
  letter-spacing: 1.5px;
  text-shadow: 2px 2px #000;
}

.derqui-subtitulo {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  color: #fff; /* párrafo blanco */
  max-width: 600px;
  margin: 0 auto;
  letter-spacing: 0.5px;
  font-style: italic;
  opacity: 0.9;
}

.derqui-titulo-seccion {
  font-size: 2rem;
  color: #c4001e;
  font-weight: 600;
}

.derqui-flyer-item img {
  border: 4px solid #c4001e;
  transition: transform 0.3s ease;
}

.derqui-flyer-item img:hover {
  transform: scale(1.05);
}

.derqui-video-wrapper video {
  border: 4px solid #000;
}

.derqui-pelota-animada {
  position: fixed;
  top: 0;
  left: 0;
  width: 60px;
  z-index: 1000;
  pointer-events: none;
  transition: transform 0.2s ease-in-out;
}




/* ---------------------PRIVACIDAD PAGE---------------------- */

.privacidad-header {
  margin-top: 6rem; /* espacio para navbar */
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
  text-align: center;
  color: #222; /* texto oscuro suave */
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}


/* Título sin hover, centrado y con separación */


.privacidad-title {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  cursor: default;
  transition: none;
}

/* Párrafo contenido dentro de la caja, centrado y con padding */
.privacidad-intro {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

/* Responsive para móviles */
@media (max-width: 768px) {
  .privacidad-header {
    margin-top: 80px;
    padding: 2rem 1rem;
    max-width: 100%;
  }
  .privacidad-title {
    font-size: 2.2rem;
  }
  .privacidad-intro {
    font-size: 1rem;
    max-width: 100%;
    padding: 0 0.5rem;
  }
}
.privacidad-section {
  max-width: 650px;
  margin: 2rem auto;
  padding: 1.5rem 2rem;
  background-color: #fafafa;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333333;
}

.privacidad-subtitle {
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  color: #222222;
}

.privacidad-text {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .privacidad-section {
    padding: 1rem 1.2rem;
    margin: 1.5rem 1rem;
  }

  .privacidad-subtitle {
    font-size: 1.2rem;
  }

  .privacidad-text {
    font-size: 0.95rem;
  }
}


/* ----------------------------TERMINOS PAGE----------------- */

/* Contenedor general */
.terminos-section {
  max-width: 650px;
  margin: 2.5rem auto;
  padding: 1.5rem 2rem;
  background-color: #f9f9f9;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #2c2c2c;
}

/* Contenedor del header principal */
.terminos-header {
  max-width: 650px;
  margin: 3rem auto 3rem auto;
  padding: 0 2rem;
  padding-top: 6rem; /* espacio extra para que no lo tape el navbar */
  text-align: center;
}

/* Título principal */
.terminos-title {
  font-weight: 700;
  font-size: 2.8rem;
  color: #222;
  margin-bottom: 0.25rem;
}

/* Subtítulo principal (debajo del título) */
.terminos-subtitle-principal {
  font-weight: 400;
  font-size: 1.2rem;
  color: #555;
  line-height: 1.4;
  margin-top: 0;
}

/* Subtítulos de secciones */
.terminos-subtitle {
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
  color: #333;
}

/* Texto descriptivo */
.terminos-text {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  color: #444;
}

/* Responsividad */
@media (max-width: 768px) {
  .terminos-section,
  .terminos-header {
    margin: 1.5rem 1rem;
    padding: 1rem 1.2rem;
  }

  .terminos-title {
    font-size: 2.2rem;
  }

  .terminos-subtitle-principal {
    font-size: 1rem;
  }

  .terminos-subtitle {
    font-size: 1.3rem;
  }

  .terminos-text {
    font-size: 0.95rem;
  }
}

/* -------------------AYUDA - FAQ---------------------- */


/* Contenedor general */
.faq-ayuda-header {
  text-align: center;
  margin-top: 100px; /* Para que no tape el navbar */
  margin-bottom: 2rem;
  color: #414141; /* Naranja marca */
}

.faq-ayuda-header h1 {
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: 1.2px;
}

.faq-ayuda {
  max-width: 700px; /* Limita el ancho máximo */
  margin: 0 auto;   /* Centra horizontalmente */
  padding: 1rem 1.5rem; /* Espacio interno para que no quede pegado */
  box-sizing: border-box;
}

.faq-ayuda .accordion-body {
  padding: 1rem 1.2rem;
  line-height: 1.5;
}

/* Accordion items */
.faq-ayuda-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 5px rgb(0 0 0 / 0.05);
  transition: box-shadow 0.3s ease;
  background-color: #fff;
}

/* Efecto hover suave */
.faq-ayuda-item:hover {
  box-shadow: 0 5px 15px rgb(255 111 0 / 0.2);
}

/* Botones de la pregunta */
.faq-ayuda-item .accordion-button {
  font-weight: 600;
  font-size: 1.15rem;
  color: #3e3e3e;
  background-color: #fff;
  border: none;
  padding: 1rem 1.5rem;
  transition: background-color 0.25s ease;
  box-shadow: none !important;
}

/* Sin outline azul al enfocar */
.faq-ayuda-item .accordion-button:focus {
  box-shadow: none !important;
  border: none;
}


/* Icono más/menos en naranja */
.faq-ayuda-item .accordion-button::after {
  filter: invert(40%) sepia(85%) saturate(520%) hue-rotate(12deg) brightness(98%) contrast(89%);
}

/* Cuando está abierta la pregunta */
.faq-ayuda-item .accordion-button:not(.collapsed) {
  background-color: #fff4e5;
  color: #d46000;
}

/* Cuerpo de la respuesta */
.faq-ayuda-item .accordion-body {
  padding: 1rem 1.5rem;
  font-size: 1rem;
  color: #333;
  background-color: #fff;
  border-top: 1px solid #eee;
  line-height: 1.5;
}

/* Responsive: menos padding en móviles */
@media (max-width: 576px) {
  .faq-ayuda-header h1 {
    font-size: 1.9rem;
  }

  .faq-ayuda-item .accordion-button {
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }

  .faq-ayuda-item .accordion-body {
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
  }
}


/* ---------------------US PAGE----------------- */

.nosotros-header {
  position: relative;
  margin-top: 100px;
  padding: 6rem 2rem 4rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  text-align: center;
  overflow: hidden;
  z-index: 1;

  /* Fondo con efecto parallax SOLO en el header */
  background-image: url('imagenes/us/banner.HEIC');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Capa oscura encima del fondo */
.nosotros-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.57); /* Opacidad oscura */
  z-index: -1;
}


/* Título con clip inicial */
#titulo-nosotros {
  font-size: 3rem;
  font-weight: 900;
  color: #ff6f00;
  margin-bottom: 1.5rem;
  display: inline-block;
  clip-path: inset(0 100% 0 0); /* oculto por completo desde la derecha */
}

/* Splash inicial del párrafo */
#texto-nosotros {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  color: #ffffff;
  opacity: 0;
  transform: scale(0.8) rotate(-4deg);
}



/* PERFILES NACHO Y FRANCO */

.perfil {
  max-width: 900px;
  margin: 80px auto 60px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.descripcion-principal {
  text-align: left;
  margin-bottom: 2rem;
}

.descripcion-principal h3 {
  font-size: 2.8rem;
  color: #ff6f00;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  font-weight: 900;
}

.descripcion-principal p strong {
  font-size: 1.1rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #555;
}

.descripcion-principal p {
  font-size: 1.25rem;
  line-height: 1.65;
  margin-top: 0.8rem;
  font-weight: 500;
}

.detalle-con-imagen {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.listado-puntos {
  flex: 1;
  list-style: none;
  padding-left: 0;
}

.listado-puntos li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.5;
}

.listado-puntos li strong {
  color: #ff6f00;
}

.imagen-perfil {
  flex-shrink: 0;
  width: 240px; /* ajusta tamaño */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgb(255 111 0 / 0.25);
}

.imagen-perfil img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.frase-final p {
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
  text-align: left;
  border-top: 2px solid #ff6f00;
  padding-top: 1.2rem;
  letter-spacing: 0.8px;
}

.perfil-franco .detalle-con-imagen {
  display: flex;
  align-items: center;
  gap: 2rem; /* espacio entre imagen y texto */
  flex-direction: row; /* imagen a la izquierda, texto a la derecha */
}

.perfil-franco .descripcion-principal {
  margin-bottom: 2rem;
  text-align: left;
}

.perfil-franco .descripcion-principal h3 {
  font-size: 2.8rem;
  color: #403d39; /* color distinto para diferenciar, azul por ejemplo */
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  font-weight: 900;
}

.perfil-franco .descripcion-principal p strong {
  font-size: 1.1rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #403d39;
}

.perfil-franco .descripcion-principal p {
  font-size: 1.25rem;
  line-height: 1.65;
  margin-top: 0.8rem;
  font-weight: 500;
}

.perfil-franco .listado-puntos li strong {
  color: #403d39;
}

.perfil-franco .frase-final p {
  font-size: 1.2rem;
  font-weight: 600;
  color: #403d39;
  text-align: left;
  border-top: 2px solid #403d39;
  padding-top: 1.2rem;
  letter-spacing: 0.8px;
}



 /* =================== FOOTER =================== */
  
 footer {
  background-color: #403D39;
  color: #F4F4F4 ;
  font-size: 0.95rem;
}

footer h2 {
  font-size: 1.5rem;
  color: #FF6600;
  margin-bottom: 1rem;
}

.visually-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

footer ul li {
  margin-bottom: 0.5rem;
}

footer a.text-light {
  text-decoration: none;
  transition: color 0.3s;
}

footer a.text-light:hover {
  color: #FF6600;
}

/* =================== REDES SOCIALES =================== */

footer .social-icon {
  margin: 0 10px;
  font-size: 1.5rem;
  color: #ffffff;
  display: inline-block; /* Para que el margin funcione bien */
}

footer .social-icon .bi {
  transition: color 0.3s ease, transform 0.3s ease;
}

footer .social-icon:hover .bi {
  color: #FF6600;
  transform: scale(1.2);
}



/* Responsive footer columns spacing */
@media (max-width: 768px) {
  footer .row > div {
    margin-bottom: 1rem;
  }

  .color-animate {
    font-size: 1.4rem;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .advantages-section {
    flex-direction: column;
  }
  .content-left, .content-right {
    flex: 1 1 100%;
  }
  .content-right {
    margin-top: 30px;
  }
}

/* Responsive: stack vertical en pantallas chicas */
@media (max-width: 768px) {
  .contenedor-contacto {
    flex-direction: column;
    padding: 30px 20px;
  }

  .contacto-imagen {
    display: none;
  }
}