@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;900&display=swap');

:root {
    --amarillo: #ffe944;
    --negro: #000000;
    --blanco: #f3f4f5;
}
body{
  background: var(--negro);
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;


}


header{
  width:100%;
  height:80px;
  background:var(--negro);
  display:flex;
  position:fixed;
  top:0;
  left:0;
  z-index:9999;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size:13px;
}

/* CONTENEDOR */
.container_header{
  margin:auto;
  width:100%;
  max-width:1400px;
    padding:0 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* LOGO */
.logo img{

  width:250px;
}

/* NAV DESKTOP */
.nav{
  padding:0 20px;
  display:flex;
  align-items:center;
  gap:10px;
}

.nav li{
  list-style:none;
}

.nav li a{
  position:relative;
  padding:10px;
  color:var(--blanco);
  text-decoration:none;
  display:block;
}

/* 🔥 HOVER LINEA */
.nav li a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0%;
  height:2px;
  background:var(--amarillo);
  transition:width .3s ease;
}

.nav li a:hover::after{
  width:100%;
}

/* BOTON */
.btn-call{
  background:var(--amarillo);
  color:var(--negro)!important;
  border-radius:10px;
}

.btn-call::after{
  display:none;
}

/* OVERLAY */
body::before{
  content:"";
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,.5);
  opacity:0;
  visibility:hidden;
  transition:.3s;
  z-index:8;
}

body.menu-open::before{
  opacity:1;
  visibility:visible;
}

/* HAMBURGER */
.hamburger{
  display:none;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:6px;
  cursor:pointer;
  z-index:20;
  margin-right:20px;
}

.hamburger span{
  width:28px;
  height:3px;
  background:#fff;
  display:block;
  transition:.3s ease;
  transform-origin:center;
}

/* 🔥 X PERFECTA */
.hamburger.active span:nth-child(1){
  transform:translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2){
  opacity:0;
}

.hamburger.active span:nth-child(3){
  transform:translateY(-9px) rotate(-45deg);
}

/* 📱 RESPONSIVE */
@media (max-width:1105px){

  .hamburger{
    display:flex;
  }

  .nav{
    position:fixed;
    top:0;
    right:-100%;
    height:100vh;
    
    width:55%;
    max-width:320px;

    background:#000;
    flex-direction:column;

    padding:120px 30px;
    gap:15px;

    transition:.4s;
    z-index:10;

    /* 🔥 estilo pro */
    box-shadow:-10px 0 30px rgba(0,0,0,0.5);
  }

  .nav.active{
    right:0;
  }

  .nav li{
    width:100%;
  }

  .nav li a{
    width:100%;
    padding:12px 0;
  }

}







/* --- CONFIGURACIÓN GENERAL (DESKTOP) --- */
.banner {
  width: 100%;
  height: 100vh;
  background: var(--negro);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.headline {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  line-height: 0.85; /* Ajuste para desktop */
}

.title_banner {
  color: var(--blanco);
  margin-bottom: 30px;
  font-size: 1.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-align: center;
}

.top {
  font-size: clamp(4rem, 10vw, 12rem);
  color: #e5e5e5;
  letter-spacing: -4px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  text-align: center;
}

.flip-container {
  perspective: 1000px;
}

#flip-word {
  display: inline-block;
  font-size: clamp(5rem, 18vw, 17rem);
  padding: 0 20px;
  color: var(--amarillo);
  transform: scaleX(0.8);
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  transition: opacity 0.5s ease-in-out;
  opacity: 1;
}

/* --- TABLET (max-width: 1024px) --- */
@media (max-width: 1024px) {
  .top {
    font-size: 8rem;
    letter-spacing: -3px;
  }

  #flip-word {
    font-size: 10rem;
  }
}

/* --- MOBILE (max-width: 768px) --- */
@media (max-width: 768px) {
  .banner {
    margin-top: -100px;
    height: 100vh;
  }

  .headline {
    line-height: 0.95; /* Aumentamos ligeramente para que no se encimen */
  }

  .title_banner {
    font-size: 0.9rem; /* Un poco más chico para mobile */
    margin-bottom: 10px;
  }

  /* Ajuste crítico para "HAZLO" */
  .top {
    font-size: 14vw; /* Se basa puramente en el ancho de la pantalla */
    letter-spacing: -1px;
    margin-bottom: 5px;
  }

  /* Ajuste crítico para la palabra amarilla ("DISRUPTIVO") */
  #flip-word {
    font-size: 17vw; /* Valor exacto para que "DISRUPTIVO" quepa sin overflow */
    padding: 0 10px; /* Reducimos padding lateral para ganar espacio */
  }
}





/* =========================== ACERCA DE ============================ */
.hero-section {
  margin: auto;
  width: 100%;
  max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px;
    min-height: 600px;
    font-family: sans-serif;
    overflow: hidden;
    margin-bottom: 200px;
    margin-top: 100px;
}

/* --- Contenedor de Texto --- */
.hero-text-container {
    flex: 1;
    max-width: 500px;
    z-index: 2;
}

.hero-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 20px;
  font-family: "Poppins", sans-serif;

}

.hero-description {
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.6;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  margin-bottom: 100px;

}

/* --- Grid de Imágenes --- */
.hero-grid {
    flex: 1;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    height: 100%;
}

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

/* Efecto Escalonado de las columnas */
.col-1 { margin-top: -50px; }
.col-2 { margin-top: 50px; }
.col-3 { margin-top: -20px; }

/* La Cápsula */
.capsule {
    width: 160px;
    height: 320px;
    border-radius: 100px;
    overflow: hidden;
    position: relative;
}

.capsule.small {
    height: 160px; /* Para las formas que son círculos o más cortas */
}

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

/* Colores de fondo por si la imagen no carga o para las formas sólidas */
.yellow { background-color: #fca311; }
.pink   { background-color: #f72585; }
.green  { background-color: #4ade80; }
.purple { background-color: #7b2cbf; }
.orange { background-color: #fb8500; }
.cyan   { background-color: #22d3ee; }

/* --- RESPONSIVO --- */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
    
        padding-top: 120px;
    }
    .hero-text-container {
        margin-bottom: 50px;
    }
    .hero-grid {
        justify-content: center;
    }
    .capsule {
        width: 120px;
        height: 240px;
    }
    .capsule.small { height: 120px; }
}

/* ================================SERVICIOS======================================== */
.p-slide{
    background-image: url('marketcrea-2026-promociones-desceunto_web.webp');
}
.servicios_c02{
  margin: auto;
  width: 100%;
  max-width: 1400px;
  

}
.servicios_c02 h2{

 font-size: 3.5rem;
  color: var(--blanco);
  margin-bottom: 50px;
      font-family: "Poppins", sans-serif;
  font-weight: 800;
   padding: 0 20px;
}

.title_yellow{
color: var(--amarillo);
}
.servicios-container {
    max-width: 1400px;
    margin: 0 auto; 
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); 
    gap: 25px;
    box-sizing: border-box;
    margin-bottom: 200px;
}


.servicio-card {

    border: 1px solid #ffffff;
    border-radius: 12px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    aspect-ratio: 1 / 1.; 
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    box-sizing: border-box;
}

/* --- Efecto Hover (Translate suave) --- */
.servicio-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    border-color: #fff6f6;
}

/* --- Contenido Interno --- */
.servicio-main-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
}

/* --- Iconos / Logos --- */
.servicio-icon {
    width: 45px; 
    height: 45px;
    object-fit: contain;
    padding: 10px;
    border-radius: 6px;
}

.servicio-icon.web { 
  background-color: #1796ff;
}
.servicio-icon.design{ 
  background-color: #f47b2a 
}
.servicio-icon.multimedia { 
  background-color: #ff3e3e; 
}
.servicio-icon.branding { 
  background-color: #512eff; 
}
.servicio-icon.creativa { 
  background-color: #3d994a; 
}
.servicio-icon.musical { 
  background-color: #00f4ae; 
}

.orange-bg {
    width: 45px;
    height: 45px;
    background-color: #000000;
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 20px;
}

/* --- Tipografía --- */
.servicio-type {
    color: #888;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.servicio-title {
    font-size: 26px; 
    font-weight: 700;
    line-height: 1.2;
    margin: 8px 0;
      font-family: "Poppins", sans-serif;
  font-weight: 900;
}


.servicio-location {
    color: #ffffff;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    margin-top: auto; 
    padding-top: 20px;
}

.servicio-date {
    position: absolute;
    top: 40px;
    right: 0px;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    z-index: 2;
    background-color: var(--amarillo);
    padding: 5px;
    border-radius: 15px 0px 0px 15px;

}

/* --- Gráficos de Fondo --- */
.servicio-graphic {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 200px; 
    height: 200px;
    opacity: 0.15;
    pointer-events: none;
}

.servicio-graphic.waves {
    background: radial-gradient(circle, #1796ff 2px, transparent 2px);
    background-size: 25px 25px;
}

.servicio-graphic.lines {
    background: repeating-linear-gradient(0deg, #f47b2a, 1px, transparent 1px, transparent 10px);
    mask-image: radial-gradient(circle at bottom right, black, transparent);
}

.servicio-graphic.chevron {
    background-image: linear-gradient(135deg, #FFCC00 4px, transparent 4px);
    background-size: 25px 25px;
}

.servicio-graphic.dots {
    background: radial-gradient(circle, #34C759 3px, transparent 4px);
    background-size: 20px 20px;
}

.servicio-graphic.oblique {
    background-image: repeating-linear-gradient(45deg, #FF9500, #FF9500 15px, transparent 15px, transparent 30px);
}

.servicio-graphic.sprinkles {
    background-image: radial-gradient(#FF3B30 3px, transparent 3px);
    background-size: 30px 30px;
    transform: rotate(15deg);
}




/* =========================== COMO TRABAJAMOS ============================ */
.wf-main-wrap {
  width: 100%;
  margin: auto;
  max-width: 1400px;
  padding: 0px 20px;
  background: #000;
  overflow: hidden; 
  position: relative;
}

.wf-header {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 40px;
}

.wf-header p {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
}

.wf-carousel-viewport {
  position: relative;
  width: 100%;
  height: 600px; 
  display: flex;
  align-items: center;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.wf-line-svg {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 0px;
  z-index: 1;
  pointer-events: none;
}

.wf-track {
  display: flex;
  width: 100%;
  height: 500px;
  padding: 0 10%;
  gap: 25px;
  position: relative;
  z-index: 2;
  overflow-y: hidden;
  overflow-x: hidden; 
  justify-content: center;
}

.wf-card {
  flex: 0 0 240px;
  height: 280px;
  background: var(--c);
  border-radius: 20px;
  position: relative;
  /* Quitamos la transition general para que el JS fluya sin lag */
  will-change: transform;
}

.wf-content { padding: 30px; color: #fff; }
.wf-id { font-size: 50px; font-weight: 900; }
.wf-title { font-size: 22px; font-weight: bold; margin: 10px 0; }
.wf-desc { font-size: 14px; opacity: 0.9; line-height: 1.4; }

/* --- RESPONSIVO MÓVIL --- */
@media (max-width: 768px) {
  .wf-track {
    justify-content: flex-start;
    overflow-x: auto;
    /* Proximity es más suave que mandatory para evitar rebotes */
    scroll-snap-type: x proximity; 
    padding-bottom: 100px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }
  
  .wf-track::-webkit-scrollbar { display: none; }

  .wf-card {
    flex: 0 0 80%; 
    scroll-snap-align: center;
    /* Aseguramos que no haya transiciones estorbando al JS */
    transition: none !important;
  }
  
  .wf-line-svg {
    width: 200%; 
  }

  .wf-header {
    margin-top: -20px;
  }
}

/* ==========================================IDEAL PARA=========================*/

.features-section {
  margin: auto;
  width: 100%;
  max-width: 1400px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 100px;

}

.main-title{
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 60px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;

}


.features-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Estilo de cada Tarjeta */
.feature-card {
  flex: 1;
  min-width: 280px; /* Tamaño mínimo antes de romperse */
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Espacio para la ilustración */
.icon-wrapper {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.icon-wrapper img {
  max-width: 50%;
  height: auto;
}

/* Textos */
.card-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;

}

.card-text_ideal {
  font-size: 16px;
  line-height: 1.6;
  color: #feffff;
    font-family: "Poppins", sans-serif;
  font-weight: 500;

}

/* Responsividad para móviles */
@media (max-width: 768px) {
  .features-container {
    flex-direction: column;
    align-items: center;
  }
  
  .feature-card {
    margin-bottom: 50px;
  }
}






/* ==========================================NEWSLETTER=========================*/


.newsletter-section {
  padding: 0 20px;
  display: flex;
  justify-content: center;
  width: 100%;
  margin: auto;
  max-width: 1400px;
margin-bottom: 100px;
}

/* El banner principal */
.newsletter-container {
  width: 100%;
  max-width: 1100px;
  background: var(--amarillo);
  border-radius: 25px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden; /* Para que las formas no se salgan */
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.newsletter-content {
  position: relative;
  z-index: 5;
  text-align: center;
  width: 100%;
  max-width: 600px;
}

.newsletter-title {
  color: #000000;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 35px;
  line-height: 1.3;
    font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 30px;
}

.newsletter_parrafo{
  font-size: 16px;
  margin-bottom: 40px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.input-wrapper {
  flex: 1;
}



.button-wrapper {
  display: flex;
}

.newsletter-cta {
  background: var(--negro);
  color: #333;
  text-decoration: none;
  padding: 10px;
  color: var(--blanco);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: transform 0.2s ease;
  margin: auto;
  width: fit-content;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  border-radius: 10px;
}

.newsletter-cta:hover {
  transform: scale(1.02);
}

/* Formas decorativas laterales */
.shape {
  position: absolute;
  background: rgba(158, 64, 64, 0.1);
  border-radius: 50%;
}

.shape-left {
  width: 200px;
  height: 200px;
  left: -50px;
  bottom: -50px;
  background: #f47b2a; /* Color durazno como el de tu imagen */
  opacity: 0.6;
  z-index: 1;
}

.shape-right {
  width: 150px;
  height: 150px;
  right: -30px;
  top: -20px;
  background: #ff3e3e;
  opacity: 0.6;
  z-index: 1;
}

/* --- RESPONSIVO --- */
@media (max-width: 768px) {
  .newsletter-container {
    padding: 40px 20px;
  }

  .newsletter-title {
    font-size: 22px;
  }

  .newsletter-form {
    flex-direction: column; /* Se apilan en móvil */
    background: transparent;
    gap: 15px;
    padding: 0;
  }

  .input-wrapper {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
  }

  .newsletter-cta {
    width: 100%;
    height: 55px;
  }
}





/* ==========================================FOOTER=========================*/
.mk-footer {
  background: var(--negro);
  color: #dcdcdc;
  padding: 60px 20px 20px;
  font-family: sans-serif;
}

.mk-footer-wrap {
  max-width: 1400px;
  padding: 0 20px;
  margin: auto;
}

/* Top */
.mk-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  gap: 30px;
}

.mk-footer-title h2 {
  font-size: 28px;
  color: #fff;
  line-height: 1.3;
}

/* Newsletter */
.mk-footer-news p {
  margin-bottom: 10px;
}

.mk-input-box {
  display: flex;
  border: 1px solid #2a3a35;
  border-radius: 50px;
  overflow: hidden;
}

.mk-input-box input {
  padding: 12px 15px;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  min-width: 220px;
}

.mk-input-box button {
  background: #e5df00;
  border: none;
  padding: 0 20px;
  color: #111111;
  cursor: pointer;
  transition: 0.3s;
}

.mk-input-box button:hover {
  background: #000000;
}

/* Grid */
.mk-footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.mk-footer-grid h4 {
  color: #fff;
  margin-bottom: 15px;
}

.mk-footer-grid ul {
  list-style: none;
  padding: 0;
}

.mk-footer-grid li {
  margin-bottom: 10px;
}

.mk-footer-grid a {
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}

.mk-footer-grid a:hover {
  color: #fff;
}

/* Redes */
.mk-social {
  display: flex;
  gap: 10px;
}

.mk-footer-title img{
  width: 200px;
}
.mk-social a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--blanco);
  display: flex;
  align-items: center;
  justify-content: center;
  color:var(--negro);
  text-decoration: none;
  transition: 0.3s;
}

.mk-social a:hover {
  background: var(--amarillo);
  color: var(--negro);
}

/* Bottom */
.mk-footer-bottom {
  border-top: 1px solid #1c2b26;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
}

.mk-footer-bottom a {
  color: #aaa;
  margin-left: 15px;
  text-decoration: none;
}

.mk-footer-bottom a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .mk-footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .mk-footer-grid {
    flex-direction: column;
  }

  .mk-footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}
































.wa-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  font-family: sans-serif;
}

/* Burbuja */
.wa-bubble {
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}

/* Caja */
.wa-box {
  width: 280px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: none;
  margin-bottom: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Header */
.wa-header {
  background: #25D366;
  color: #fff;
  padding: 10px;
  display: flex;
  justify-content: space-between;
}

/* Body */
.wa-body {
  padding: 10px;
}

.wa-body textarea {
  width: 100%;
  height: 80px;
  resize: none;
  padding: 8px;
  margin-bottom: 10px;
}

.wa-body button {
  width: 100%;
  background: #25D366;
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
}
























