/* =========================
   VARIABLES
========================= */
:root {
  --negro: #02141e;
  --rojo: #ff0054;
  --violeta: #390099;
  --amarillo: #ffbd00;
}

/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   BASE
========================= */
body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: var(--negro);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =========================
   HEADER
========================= */
.header {
  width: 100%;
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

/* LOGO */
.logo img {
  height: 50px;
}

/* MENU */
.nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  color: var(--negro);
  transition: 0.3s;
}

.nav a:hover {
  color: var(--rojo);
}

/* =========================
   HAMBURGUESA
========================= */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--negro);
  margin: 4px 0;
  transition: 0.3s;
}

/* =========================
   HERO (base)
========================= */
.hero {
  height: 80vh;
  display: flex;
  align-items: center;
}

.hero h1 {
  font-size: 48px;
  color: var(--negro);
}

.hero p {
  margin-top: 10px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

  .nav {
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    background: white;
    display: none;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
  }

  .nav ul {
    flex-direction: column;
    gap: 20px;
  }

  .nav.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}

/* =========================
   FOOTER
========================= */

.footer {
  background: var(--amarillo);
  padding: 100px 0 40px;
  position: relative;
}

/* CAJA CENTRAL */
.footer-box {
  background: #e9e9e9;
  border-radius: 25px;
  padding: 60px 20px;
  text-align: center;
  max-width: 900px;
  margin: auto;
}

/* TAG */
.footer-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.footer-tag .dot {
  width: 8px;
  height: 8px;
  background: var(--rojo);
  border-radius: 50%;
}

/* TITULO */
.footer-box h2 {
  font-size: 48px;
  color: var(--negro);
  margin-bottom: 30px;
  line-height: 1.2;
  font-weight: 600;
}

/* CONTACTO */
.footer-contact p {
  font-size: 16px;
  margin: 5px 0;
  border-bottom: 1px solid #ccc;
  display: inline-block;
  padding-bottom: 3px;
}

/* MENU INFERIOR */
.footer-bottom {
  margin-top: 40px;
  text-align: center;
}

.footer-bottom ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-bottom a {
  text-decoration: none;
  color: var(--negro);
  font-size: 16px;
  transition: 0.3s;
}

.footer-bottom a:hover {
  color: var(--rojo);
}

/* BOTON BACK TO TOP */
.back-to-top {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: var(--rojo);
  color: white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  border-radius: 4px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

  .footer-box {
    padding: 40px 15px;
  }

  .footer-box h2 {
    font-size: 32px;
  }

  .footer-bottom ul {
    gap: 5px;
  }
}

/* SECCION VIDEO */

.video-section{
  position:relative;
  width:100%;
  height:100vh;
  overflow:hidden;
  background:#000;
}

.video-section iframe{
  position:absolute;
  top:50%;
  left:50%;

  width:177.77777778vh;
  height:56.25vw;

  min-width:100%;
  min-height:100%;

  transform:translate(-50%, -50%);
  border:0;
  pointer-events:none;
}

/* MOBILE */

@media(max-width:768px){

  .video-section{
    height:auto;
    aspect-ratio:16/9;
  }

  .video-section iframe{
    width:100%;
    height:100%;
    min-width:100%;
    min-height:100%;
  }

}
/* =========================
   SOMOS PAGE
========================= */
.somos-page {
  background: #fbfbfa;
  color: var(--negro);
}

.nav a.is-active {
  color: var(--rojo);
}

.somos-hero {
  padding: 110px 0 90px;
}

.somos-hero h1 {
  font-size: clamp(72px, 10vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 500;
}

.somos-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 57px;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.somos-hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, 0.9fr);
  gap: 70px;
  align-items: center;
  margin-top: 54px;
}

.somos-sticker-wrap {
  position: relative;
  min-height: 250px;
  display: flex;
  align-items: center;
}

.somos-sticker {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  background: #4500b5;
  color: #ffd81a;
  font-weight: 500;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.9;
  padding: 22px 38px;
  transform: rotate(-12deg);
  box-shadow: 0 12px 28px rgba(57, 0, 153, 0.25);
}

.somos-copy {
  font-size: 18px;
  line-height: 1.4;
  max-width: 580px;
}

.somos-copy p + p {
  margin-top: 12px;
}

.somos-section {
  padding: 95px 0;
}

.somos-section-dark {
  background: #373737;
  color: #fff;
}

.somos-two-col,
.somos-feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px;
  align-items: center;
}

.somos-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 140, 120, 0.6);
  font-size: 14px;
  margin-bottom: 22px;
}

.somos-pill::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff245e;
}

.somos-copy.light {
  color: rgba(255, 255, 255, 0.95);
}

.somos-feature {
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1fr);
}

.somos-visual {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-sphere {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: #ffd400;
  bottom: 110px;
  left: 110px;
}

.visual-placeholder {
  position: absolute;
  border: 2px dashed rgba(2, 20, 30, 0.25);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 240, 240, 0.88));
  color: rgba(2, 20, 30, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 500;
  padding: 20px;
}

.visual-top {
  top: 0;
  left: 50px;
  width: 310px;
  height: 330px;
}

.visual-bottom {
  bottom: 0;
  left: 0;
  width: 360px;
  height: 270px;
}

.somos-burst {
  position: absolute;
  width: 72px;
  height: 72px;
  background:
    repeating-conic-gradient(from 0deg, #ff3d86 0deg 8deg, transparent 8deg 16deg);
  clip-path: circle(50%);
  opacity: 0.8;
}

.burst-top {
  top: 4px;
  left: 300px;
}

.burst-bottom {
  bottom: 15px;
  left: -8px;
}

.burst-left {
  bottom: 135px;
  left: 20px;
}

.burst-right {
  right: 40px;
  bottom: 55px;
}

.somos-team-section {
  background: #373737;
  color: #fff;
}

.somos-team-section h2 {
  font-size: 55px;
  margin-bottom: 42px;
}

.somos-team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.team-member-card {
  position: relative;
  min-height: 360px;
  border-radius: 16px;
  overflow: hidden;
  background: #f1f1f1;
}

.team-photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #ffffff, #d8d8d8);
  color: rgba(2, 20, 30, 0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 500;
}

.team-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  color: #02141e;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.team-label.top {
  top: 0;
  bottom: auto;
}

.team-label strong {
  font-size: 24px;
  line-height: 1;
}

.team-label span {
  font-size: 14px;
  line-height: 1.25;
}

.team-label-yellow {
  background: #ffd400;
}

.team-label-cyan {
  background: #17b7ea;
}

.team-label-pink {
  background: #ff0054;
  color: #02141e;
}

@media (max-width: 1024px) {
  .somos-hero-grid,
  .somos-two-col,
  .somos-feature,
  .somos-team-grid {
    grid-template-columns: 1fr;
  }

  .somos-hero {
    padding-top: 70px;
  }

  .somos-feature {
    gap: 30px;
  }

  .somos-visual {
    min-height: 520px;
  }

  .visual-sphere {
    left: 50%;
    transform: translateX(-50%);
    bottom: 80px;
  }

  .visual-top {
    left: 50%;
    transform: translateX(-50%);
  }

  .visual-bottom {
    left: 50%;
    transform: translateX(-50%);
    width: min(360px, 92%);
  }
}

@media (max-width: 768px) {
  .somos-section h2,
  .somos-team-section h2 {
    font-size: 36px;
  }

  .somos-hero,
  .somos-section {
    padding: 70px 0;
  }

  .somos-hero-grid {
    gap: 36px;
    margin-top: 36px;
  }

  .somos-sticker {
    font-size: 44px;
    padding: 18px 24px;
  }

  .somos-copy {
    font-size: 16px;
  }

  .somos-visual {
    min-height: 460px;
  }

  .visual-sphere {
    width: 220px;
    height: 220px;
    bottom: 92px;
  }

  .visual-top {
    width: 250px;
    height: 250px;
    top: 0;
  }

  .visual-bottom {
    height: 190px;
    bottom: 0;
  }

  .burst-top {
    left: auto;
    right: 26px;
  }

  .somos-team-grid {
    gap: 14px;
  }

  .team-member-card {
    min-height: 300px;
  }
}
/* seccion bienvenida*/

/* HERO XBC */
.hero-xbc {
  background: #f5f5f7;
  padding: 100px 20px;
  text-align: center;
}

.hero-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* BADGE */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-size: 12px;
  letter-spacing: 1px;
  color: #0E1642;

  border: 1px solid #ddd;
  padding: 6px 14px;
  border-radius: 999px;

  margin-bottom: 30px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #e63946;
  border-radius: 50%;
}

/* TITULO */
.hero-xbc h1 {
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 500;
  line-height: 1.1;
  color: #0E1642;

  margin-bottom: 25px;
}

/* TEXTO */
.hero-xbc p {
  font-size: 18px;
  color: #444;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* BOTON */
.hero-btn {
  display: inline-block;
  background: #e63946;
  color: white;

  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;

  font-size: 16px;
  font-weight: 500;

  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #c92f3b;
  transform: translateY(-2px);
}

.hero-xbc h1 span {
  display: inline-block;
  backface-visibility: hidden; /* evita glitch en flip */
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .hero-xbc {
    padding: 70px 20px;
  }

  .hero-xbc p {
    font-size: 16px;
  }
}

/*seccion servicios*/
/* SECCION */
.services-xbc {
  background: #2f2f2f;
  color: white;
  padding: 100px 20px;
}

/* CONTENEDOR */
.services-xbc .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* BADGE */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-size: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.badge .dot {
  width: 8px;
  height: 8px;
  background: #ff2e63;
  border-radius: 50%;
}

/* TITULO */
.services-xbc h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 20px;
}

/* TEXTO */
.intro {
  color: #ccc;
  margin-bottom: 60px;
  line-height: 1.6;
}

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

/* CARDS */
.card {
  padding: 30px;
  border-radius: 20px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: 0.3s ease;
}

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

/* COLORES */
.pink {
  background: linear-gradient(135deg, #ff004f, #ff2e63);
}

.cyan {
  background: linear-gradient(135deg, #00bcd4, #1ec8e7);
}

.purple {
  background: linear-gradient(135deg, #4b00c9, #7b2cff);
}

/* ICONO */
.icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.icon {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;

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

/* ICONO FA */
.icon i {
  color: #fff;
  font-size: 16px;
}
/* TITULO CARD */
.card h3 {
  font-size: 18px;
  font-weight: 500;
}

/* TEXTO CARD */
.card p {
  font-size: 14px;
  line-height: 1.5;
}

/* 📱 TABLET */
@media (max-width: 992px) {
  .grid-services {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 📱 MOBILE */
@media (max-width: 600px) {
  .grid-services {
    grid-template-columns: 1fr;
  }

  .services-xbc {
    padding: 70px 20px;
  }
}

/* SECCION PROYECTOS */

/* SECCION */
.works-xbc {
  background: #ffffff;
  padding: 80px 0px;
}

/* CONTENEDOR */
.works-xbc .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* BADGE (forzado y visible) */
.works-xbc .badge.dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-size: 12px;
  color: #444;

  border: 1px solid #b5b5b5; /* 🔥 gris visible */
  padding: 6px 14px;

  margin-bottom: 20px;
  border-radius: 999px;
}

.works-xbc .badge.dark .dot {
  width: 6px;
  height: 6px;
  background: #ff2e63;
  border-radius: 50%;
}

/* TITULO */
.works-xbc h2 {
  font-size: clamp(36px, 5vw, 64px);
  color: #0E1642;
  margin-bottom: 60px;
}

/* GRID */
.grid-works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ITEM */
.work-item {
  display: flex;
  flex-direction: column;
  gap: 12px;

  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

/* IMAGEN */
.work-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;

  transition: transform 0.4s ease;
}

/* HOVER */
.work-item:hover img {
  transform: scale(1.04);
}

/* LABEL */
.work-label {
  text-align: center;
  font-size: 13px;
  color: #0E1642;
  line-height: 1.4;
}

/* CONTENEDOR BOTON */
.works-cta {
  text-align: center;
  margin-top: 60px;
}

/* BOTON */
.btn-works {
  display: inline-block;
  padding: 14px 30px;

  background: #0E1642;
  color: #fff;

  border-radius: 999px;
  text-decoration: none;

  font-size: 15px;
  font-weight: 500;

  transition: all 0.3s ease;
}

/* HOVER BOTON */
.btn-works:hover {
  background: #1c2670;
  transform: translateY(-2px);
}

/* 📱 TABLET */
@media (max-width: 992px) {
  .grid-works {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 📱 MOBILE */
@media (max-width: 600px) {
  .grid-works {
    grid-template-columns: 1fr;
  }

  .works-xbc {
    padding: 70px 20px;
  }
}

@media (max-width: 768px) {
  .work-item img {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .work-item img {
    height: 240px;
  }
}
/*proposito*/

/* SECCION */
.about-tp {
  background: #ffffff;
  padding: 100px 10px 70px; /* más espacio abajo para compensar */
  position: relative;
  overflow: visible;
}

/* GRID */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* BADGE (más suave) */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-size: 12px;
  color: #666;

  border: 1px solid #6e6c6c;
  padding: 6px 14px;
  border-radius: 999px;

  margin-bottom: 20px;
}

.badge .dot {
  width: 6px;
  height: 6px;
  background: #ff2e63;
  border-radius: 50%;
}

/* TITULO */
.about-text h2 {
  font-size: 57px;
  color: #111;
  margin-bottom: 20px;

}

/* TEXTO */
.about-text p {
  font-size: 17px;
  color: #555;
  line-height: 1.8;
  max-width: 520px;
}

/* IMAGEN */
.about-image img {
  width: 100%;
  height: 150%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 16px;
}
.about-image img {
  width: 100%;
  height: auto;
  object-fit: contain;

  border-radius: 16px;

  transform: translateY(80px); /* más suave para animaciones */
}
/* 📱 TABLET */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text {
    text-align: center;
  }

  .about-text p {
    margin: 0 auto;
  }
}

/* 📱 MOBILE */
@media (max-width: 600px) {
  .about-tp {
    padding: 70px 20px;
  }
}

/* equipo seccion */

/* SECTION */
.team-carousel {
  background: #3f3f3f;
  padding: 100px 20px;
  color: #fff;
  overflow: hidden;
}

/* HEADER */
.team-header {
  margin-bottom: 50px;
}

.team-header h2 {
  font-size: 57px;
  color: #eaeaea;
  font-weight: 500;
}

/* BADGE DARK */
.badge.dark {
  border: 1px solid rgba(255,255,255,0.2);
  color: #ccc;
}

.badge.dark .dot {
  background: #ff2e63;
}

/* CAROUSEL */
.carousel-wrapper {
  position: relative;
}

/* 🔥 FIX IMPORTANTE */
.carousel-track {
  display: flex;
  gap: 30px;
  overflow-x: auto; /* ✅ permite scroll */
  scroll-behavior: smooth;

  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

/* CARD */
.team-card {
  min-width: 260px;
  max-width: 260px;
  height: 340px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: all 0.4s ease;
}

/* HOVER */
.team-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* NAV (faltaba esto) */
/* BOTONES */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 24px;
  padding: 10px 14px;
  cursor: pointer;
  z-index: 2;
  border-radius: 8px;
}

/* POSICIÓN */
.carousel-btn.prev {
  left: -50px;
}

.carousel-btn.next {
  right: -50px;
}

/* MOBILE */
@media (max-width: 768px) {
  .team-header h2 {
    font-size: 42px;
  }

  .team-card {
    min-width: 200px;
    height: 280px;
  }
}

/* SECCION numeros */

/* SECCION */
.stats-section {
  background: linear-gradient(135deg, #1ec7d9, #1a2aa6);
  padding: 80px 20px;
  color: #fff;
}

/* GRID */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  text-align: center;
}

/* NUMERO */
.stat h2 {
  font-size: 55px;

  margin-bottom: 10px;
}

/* LINEA */
.line {
  display: block;
  width: 60%;
  height: 2px;
  background: rgba(255,255,255,0.5);
  margin: 10px auto 20px;
}

/* TEXTO */
.stat p {
  font-size: 18px;
  color: #eaeaea;
}

/* MOBILE */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/*clientes seccion*/

/* SECCION */
.clients-section {
  background: #ffffff;
  padding: 100px 20px;
  text-align: center;
}

/* TITULO */
.clients-section h2 {
  font-size: 55px;
  color: #0E1642;
  margin-bottom: 50px;
}

.clients-image img {
  width: 80%;
  height: auto;
  display: block;
  margin: 0 auto; /* 🔥 centra horizontalmente */
}

/* CONTROL DISPLAY */
.clients-image.mobile {
  display: none;
}

/* 📱 MOBILE */
@media (max-width: 768px) {

  .clients-image.desktop {
    display: none;
  }

  .clients-image.mobile {
    display: block;
  }

  .clients-section {
    padding: 40px 20px;
  }
}


/* SECCION SOMOS */

/* SECCIÓN GENERAL */
.propuesta-section {
  background: #ffffff;
  padding: 90px 7%;
  font-family: 'Poppins', sans-serif;
}

/* CONTENEDOR */
.propuesta-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* IMAGEN */
.propuesta-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.propuesta-image img {
  width: 80%;
  max-width: 520px;
  height: auto;
  display: block;
}

/* TEXTO */
.propuesta-content {
  flex: 1;
  max-width: 560px;
  font-family: poppins, sans-serif;
}

/* BADGE */
.propuesta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #f2b8a8;
  color: #0a1433;
  padding: 7px 18px;
  border-radius: 40px;
  font-size: 13px;
  letter-spacing: 0.4px;
  margin-bottom: 28px;
}

.propuesta-badge .dot {
  width: 10px;
  height: 10px;
  background: #ff2d2d;
  border-radius: 50%;
}

/* TITULO */
.propuesta-content h2 {
  font-size: 66px;
  color: #07122f;
  margin: 0 0 28px;
  font-weight: 500;
}

/* PARRAFO */
.propuesta-content p {
  font-size: 20px;
  line-height: 1.55;
  color: #1d1d1d;
  margin: 0;
  max-width: 560px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .propuesta-content h2 {
    font-size: 58px;
  }

  .propuesta-container {
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .propuesta-container {
    flex-direction: column;
    text-align: center;
  }

  .propuesta-content {
    max-width: 100%;
  }

  .propuesta-content h2 {
    font-size: 46px;
  }

  .propuesta-content p {
    font-size: 18px;
  }

  .propuesta-badge {
    justify-content: center;
  }
}


/* SECCION trabajo video */

.videos-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:60px;
}

.videos-grid video{
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
  border-radius:28px;
  display:block;
}

/* mobile */
@media(max-width:768px){

  .videos-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

}

/* SECCION trabajo filtros */

.portfolio-section{
  padding:120px 0;
  background:#fff;
}

.portfolio-section h2{
  text-align:center;
  margin-bottom:40px;
}

.portfolio-filters{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:60px;
}

.filter-btn{
  padding:12px 22px;
  font-family:'Poppins',sans-serif;
  border:none;
  border-radius:999px;
  background:#f1f1f1;
  cursor:pointer;
  transition:.3s;
  font-weight:600;
}

.filter-btn.active{
  background:#111;
  color:#fff;
}

.masonry-gallery{
  column-count:3;
  column-gap:20px;
}

.masonry-item{
  break-inside:avoid;
  margin-bottom:20px;
  cursor:pointer;
}

.masonry-item img{
  width:100%;
  border-radius:24px;
  display:block;
  transition:.3s;
}

.masonry-item:hover img{
  transform:scale(1.02);
}

/* LIGHTBOX */

.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.92);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  visibility:hidden;
  transition:.3s;
  z-index:9999;
  padding:40px;
}

.lightbox.active{
  opacity:1;
  visibility:visible;
}

.lightbox-img{
  max-width:90%;
  max-height:90%;
  border-radius:20px;
}

.lightbox-close{
  position:absolute;
  top:30px;
  right:40px;
  color:#fff;
  font-size:50px;
  cursor:pointer;
}

/* responsive */

@media(max-width:992px){

  .masonry-gallery{
    column-count:2;
  }

}

@media(max-width:768px){

  .masonry-gallery{
    column-count:1;
  }

}

.services-tepromo{
  background:#fff;
  padding:120px 0;
}

.card h3,
.card p,
.card .icon{
  color:#fff;
}

.filosofia-section{
  background:#3a3a3a;
  padding:120px 0;
  font-family:'Poppins',sans-serif;
}

.filosofia-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  border:1px solid #d9b29d;
  border-radius:999px;
  padding:8px 18px;
  color:#fff;
  font-size:14px;
  margin-bottom:30px;
}

.filosofia-badge .dot{
  width:10px;
  height:10px;
  background:#ff3b57;
  border-radius:50%;
}

.filosofia-section h2{
  color:#fff;
  font-size:50px;
  line-height:1;
  font-weight:400;
  margin-bottom:70px;
  max-width:1000px;
}

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

.filosofia-card{
  border-radius:28px;
  padding:40px;
  color:#fff;
}

.filosofia-card.pink{
  background:#ff005c;
}

.filosofia-card.cyan{
  background:#17b7e5;
}

.filosofia-card.purple{
  background:#4a00b8;
}

.filosofia-icon{
  width:56px;
  height:56px;
  background:#ffffff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:30px;
}

.filosofia-icon i{
  color:#4e4b4c;
  font-size:22px;
}

.filosofia-card h3{
  font-size:22px;
  line-height:1.2;
  margin-bottom:18px;
  font-weight:700;
}

.filosofia-card p{
  font-size:18px;
  line-height:1.6;
  opacity:.95;
}

/* responsive */

@media(max-width:992px){

  .filosofia-section h2{
    font-size:58px;
  }

  .filosofia-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .filosofia-section{
    padding:80px 0;
  }

  .filosofia-section h2{
    font-size:42px;
  }

}

/* SECCION blog */

.blog-section{
  padding:120px 0;
  background:#fff;
  font-family:'Poppins',sans-serif;
}

.blog-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  border:1px solid #d9d9d9;
  border-radius:999px;
  padding:8px 18px;
  font-size:14px;
  margin-bottom:30px;
}

.blog-badge .dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#ff005c;
}

.blog-top{
  display:flex;
  justify-content:space-between;
  gap:40px;
  align-items:flex-end;
  margin-bottom:70px;
}

.blog-top h2{
  font-size:72px;
  line-height:1;
  color:#111;
  max-width:700px;
}

.blog-top p{
  max-width:420px;
  font-size:18px;
  line-height:1.7;
  color:#555;
}

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

.blog-card{
  background:#fff;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:.35s;
}

.blog-card:hover{
  transform:translateY(-8px);
}

.blog-image{
  overflow:hidden;
}

.blog-image img{
  width:100%;
  height:320px;
  object-fit:cover;
  display:block;
  transition:.5s;
}

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

.blog-content{
  padding:30px;
}

.blog-category{
  display:inline-block;
  margin-bottom:16px;
  font-size:14px;
  font-weight:600;
  color:#ff005c;
}

.blog-content h3{
  font-size:28px;
  line-height:1.2;
  margin-bottom:18px;
  color:#111;
}

.blog-content p{
  color:#666;
  line-height:1.7;
  margin-bottom:25px;
}

.blog-link{
  color:#111;
  font-weight:600;
  text-decoration:none;
}

/* responsive */

@media(max-width:992px){

  .blog-top{
    flex-direction:column;
    align-items:flex-start;
  }

  .blog-top h2{
    font-size:54px;
  }

  .blog-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .blog-section{
    padding:80px 0;
  }

  .blog-top h2{
    font-size:40px;
  }

}

/* SECCION contacto */

.contact-page{
  font-family:'Poppins',sans-serif;
  background:#f5f1ea;
  min-height:100vh;
}

/* HERO */

.contact-hero{
  padding:180px 0 140px;
}

.contact-hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:70px;
  align-items:center;
}

.contact-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 18px;
  border-radius:999px;
  border:1px solid #d5c8bb;
  margin-bottom:35px;
  font-size:14px;
  color:#111;
}

.contact-pill .dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#ff005c;
}

.contact-left h1{
  font-size:60px;
  line-height:.95;
  color:#111;
  margin-bottom:30px;
  font-weight:800;
}

.contact-left p{
  font-size:22px;
  line-height:1.7;
  max-width:650px;
  color:#555;
}

/* CARD */

.contact-card{
  background:#FF1658;
  color:#fff;
  padding:60px;
  border-radius:40px;
  display:flex;
  flex-direction:column;
  gap:45px;
  transform:rotate(-2deg);
  box-shadow:0 30px 60px rgba(0,0,0,.18);
}

.contact-item span{
  display:block;
  opacity:.6;
  margin-bottom:12px;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:1px;
}

.contact-item a{
  color:#fff;
  text-decoration:none;
  font-size:30px;
  line-height:1.3;
  font-weight:600;
  transition:.3s;
}

.contact-item a:hover{
  opacity:.7;
}

/* RESPONSIVE */

@media(max-width:992px){

  .contact-hero-grid{
    grid-template-columns:1fr;
  }

  .contact-left h1{
    font-size:72px;
  }

}

@media(max-width:768px){

  .contact-hero{
    padding:140px 0 90px;
  }

  .contact-left h1{
    font-size:52px;
  }

  .contact-left p{
    font-size:18px;
  }

  .contact-card{
    padding:35px;
    border-radius:28px;
  }

  .contact-item a{
    font-size:22px;
  }

}