:root{
  --img-hero-mobile: url("images/hero-menu-app.jpg");
  --img-hero-desktop: url("images/hero2.jpg");
  --img-flyer-mobile: url("images/rapida-de-actualizar-facil-y-personalizada.webp");
  --img-flyer-desktop: url("images/rapida-de-actualizar.jpg");
  --img-mid: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='1200'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop stop-color='%23ff6a3d'/%3E%3Cstop offset='1' stop-color='%23e14d2a'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1600' height='1200' fill='url(%23g)'/%3E%3C/svg%3E");
  --img-phone: url("images/iphone.png");
  --black: #111;
  --white: #fff;
  --accent: #ff6a3d;
  
  --phone-start-x: 100%;
  --phone-start-opacity: 0;
  --phone-end-x: 10%;
  --phone-end-opacity: 1;
  --phone-animation-speed: 3;
  --phone-trigger-offset: 0.1;
  
  --flyer-top-distance: clamp(24px, 5vw, 64px);
  --flyer-left-margin: clamp(24px, 5vw, 64px);
  --flyer-mobile-top: 180px;
  --flyer-mobile-left: 40px;
}

@font-face {
  font-family: 'MenuApp Bold';
  src: url('fonts/menuapp-Bold.woff2') format('woff2'),
       url('fonts/menuapp-Bold.woff') format('woff');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'MenuApp Light';
  src: url('fonts/menuapp-Light.woff2') format('woff2'),
       url('fonts/menuapp-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'MenuApp Medium';
  src: url('fonts/menuapp-Medium.woff2') format('woff2'),
       url('fonts/menuapp-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'MenuApp Regular';
  src: url('fonts/menuapp-Regular.woff2') format('woff2'),
       url('fonts/menuapp-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

*{ box-sizing: border-box; }
html,body{ margin:0; padding:0; font-family:'MenuApp Ligth', sans-serif; color: var(--black); }

/* Menú hamburguesa */
.hamburger-menu {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 10000;
}

.hamburger-btn {
  background: none;
  border: none;
  padding: 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: all 0.3s ease;
}

.hamburger-btn:hover {
  transform: scale(1.05);
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background: white;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hamburger-nav {
  position: fixed;
  top: 60px;
  right: 15px;
  width: 400px;
  max-width: 90vw;
  background: white;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  overflow: hidden;
}

.hamburger-nav.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: white;
  color: var(--black);
}

.nav-header h3 {
  margin: 0;
  font-family: 'MenuApp Bold', sans-serif;
  font-size: 18px;
  color: var(--black);
}

.nav-close {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--black);
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: background 0.2s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-close:hover {
  background: rgba(0, 0, 0, 0.1);
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.nav-list li {
  flex: 1;
  border-right: 1px solid #f1f1f1;
}

.nav-list li:last-child {
  border-right: none;
}

.nav-list a {
  display: block;
  padding: 15px 10px;
  color: #434343;
  text-decoration: none;
  font-family: 'MenuApp Regular', sans-serif;
  font-size: 14px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.nav-list a:hover {
  background: #fafafa;
  color: #eb5535;
}

/* Overlay para cerrar el menú */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.wrap{ width:100%; overflow:hidden; }
.section{ position:relative; width:100%; }

.container{
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}

/* Show/hide classes for responsive design */
.desktop-only{
  display: none !important;
}

.mobile-only{
  display: block !important;
}

@media (min-width: 769px){
  .desktop-only{
    display: block !important;
  }
  .mobile-only{
    display: none !important;
  }
}


.hero{
  position: relative;
  min-height: 56vh;
  display: grid;
  place-items: end center;
  padding: clamp(16px,3vw,32px);
  color: var(--white);
  overflow: hidden;
}

.hero .parallax-bg{
  position: absolute;
  inset: -6vh -9vw;
  background-image: var(--img-hero-mobile);
  background-size: cover;
  background-position: center;
  transform: translateY(var(--offset, 0px)) scale(0.86);
  will-change: transform;
  z-index: 0;
}

.hero .logo,
.hero .name,
.hero .claim { position: absolute; z-index: 1; }

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index: 0;
}

.logo{
  position:absolute;
  top:clamp(81px,3vw,28px);
  left:clamp(36px,3vw,28px);
  background:var(--white);
  color:#000;
  font-family:'MenuApp Bold', sans-serif;
  font-size:clamp(18px,3.2vw,28px);
  box-shadow:0 6px 24px rgba(0,0,0,.22);
  display:inline-flex;
  align-items:center;
  gap:.35rem;
}
.logo img {
max-width: 80px;
}
.logo small{ font-family:'MenuApp Medium', sans-serif; font-size:.65em; margin-left:.15rem; }

.claim{
  position:absolute;
  bottom:clamp(70px,3vw,28px);
  left: 50%;
  transform: translateX(-50%);
  color:var(--white);
  font-family:'MenuApp Medium', sans-serif;
  font-size:clamp(15px,2.2vw,18px);
  
  text-align: center;
  width: 100%;
}

.name{
  position:absolute;
  bottom:clamp(103px,3vw,28px);
  left: 50%;
  transform: translateX(-50%);

  text-align: center;
  width: 100%;
}
.name h1 {
  color:var(--white);
  font-family:'MenuApp Medium', sans-serif;
  font-size:85px;
  text-shadow:1px 1px rgba(0,0,0,.55);
  margin: 0 0 20px 0;
  line-height: 79px
}
.headline{
  background:var(--white);
  padding:clamp(28px,6vw,72px) clamp(18px,6vw,96px);
}
.headline h2{
  margin:0 0 .4rem;
  font-size: clamp(32px, 3.5vw, 80px);
  line-height:.85;
  letter-spacing:-0.5px;
  font-family:'MenuApp Bold', sans-serif;
  text-align: center;
}
.headline p{ margin:10px 0 0; font-size:clamp(16px,2.6vw,28px); font-family:'MenuApp Light', sans-serif; text-align: center; padding: 0 20px 0 20px; }

.headline span{ font-family:'MenuApp Bold', sans-serif; }

.how{
  display: block;
  position: relative;
  isolation: isolate;
  min-height: 80vh;
  padding: clamp(28px, 6vw, 72px);
  padding-right: clamp(220px, 36vw, 420px);
  color: var(--white);
  background-image: var(--img-mid);
  background-size: cover;
  background-position: center;
}

.flyer{
  position: relative;
  min-height: 80vh;
  color: var(--white);
  overflow: hidden;
  background: #000;
}

.flyer .container{
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: var(--flyer-top-distance) var(--flyer-left-margin);
  min-height: 80vh;
}

.flyer .parallax-bg{
  position: absolute;
  inset: -13vh -5vw;
  background-image: var(--img-flyer-mobile);
  background-size: cover;
  background-position: center;
  transform: translateY(var(--offset, 0px)) scale(0.86);
  will-change: transform;
  z-index: 0;
}

.flyer::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  z-index: 0;
}

.flyer-text{
  position: relative;
  z-index: 1;
  max-width: 420px;
  text-align: left;
  margin-bottom: 0;
  padding-bottom: 0;
}

.flyer-text h2{
  font-size: clamp(48px, 8vw, 72px);
  font-weight: bold;
  margin: 0;
  color: white;
  line-height: 0.9;
}

.flyer-text h3{
  font-size: clamp(32px, 6vw, 48px);
  font-weight: bold;
  margin: 0;
  color: #ff6a3d;
  line-height: 0.9;
}

.flyer-text .flyer-title{
  font-size: clamp(48px, 8vw, 72px);
  font-weight: bold;
  margin: 0;
  color: white;
  line-height: 0.9;
}

.flyer-text .flyer-subtitle{
  font-size: clamp(32px, 6vw, 48px);
  font-weight: bold;
  margin: 0;
  color: #ff6a3d;
  line-height: 0.9;
}

.flyer-text p{
  font-size: clamp(14px, 2vw, 18px);
  margin: 10px 0 0 0;
  color: white;
  line-height: 1.3;
}

.whatsapp-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 24px;
  background: #25D366;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover{
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: white;
  text-decoration: none;
}

.whatsapp-btn svg{
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.how-col{
  position: relative;
  z-index: 1;
  
}
.how-col h3 { 
  font-size: 34px;
  margin-bottom: 0;
  margin-top: 10px;
}


.phone{
  position: absolute;
  z-index: 1;
  right: clamp(8px, 5vw, 64px);
  top: 50%;
  transform: translateY(-50%) translateX(var(--phone-start-x));
  width: min(360px, 32vw);
  aspect-ratio: 2/3.2;
  background-image: var(--img-phone);
  background-size: cover;
  background-position: center;
  border-radius: 0;
  box-shadow: none;
  opacity: var(--phone-start-opacity);
}



.legal{ margin-top:clamp(14px,3vw,22px); font-size:11px; opacity:.9; }

@media (max-width: 980px){
  .how{
    min-height: 48vh;
    padding-right: 48vw;
  }

  .how h2{ font-size: 34px; margin-bottom: 0px; margin-top: 7px; }
  .how p{ font-size: 16px; }

  .phone{
    right: -4vw;
    top: 48%;
    width: 53vw;
    transform: translateY(-50%) translateX(var(--phone-start-x)) rotate(-1deg);
  }
  .legal{ margin-top:clamp(19px,3vw,22px); font-size:11px !important; opacity:.9; }
}

.cta{
  display:inline-flex;
  margin-top:clamp(16px,3vw,28px);
  padding:.95rem 1.2rem;
  font-weight:200;
  background:var(--white);
  color:var(--black);
  border-radius:999px;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
  text-decoration:none;
  transition:transform .12s ease, box-shadow .12s ease;
}
.cta:hover{ transform:translateY(-2px); box-shadow:0 14px 36px rgba(0,0,0,.3); }


.flyer .parallax-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Desktop images for larger screens */
@media (min-width: 769px){
  .hero .parallax-bg{
    background-image: var(--img-hero-desktop);
  }
  .flyer .parallax-bg{
    background-image: var(--img-flyer-desktop);
  }
}


.parallax{
  background: none !important;
}

.parallax-bg {
  transition: transform 0.1s ease-out;
}

/* DESKTOP BLOCKS LAYOUT */
@media (min-width: 769px){
  .desktop-blocks.desktop-only{
    display: grid !important;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: auto auto auto;
    gap: 0;
    min-height: 100vh;
    position: relative;
    width: 100%;
    overflow: visible;
  }
}

/* Banner 1 - Rojo (esquina superior izquierda) */
.banner-1{
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 450px;
  grid-column: 1 !important;
  grid-row: 1 !important;
  background-image: url('images/banner-1.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  transition: background-position 0.3s ease;
  overflow: hidden;
}

.banner-1 .logo{
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--white);
  color: #000;
  font-family: 'MenuApp Bold', sans-serif;
  font-size: 18px;
  box-shadow: 0 6px 24px rgba(0,0,0,.22);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: 10px 15px;
  border-radius: 8px;
}

.banner-1 .logo img {
  max-width: 60px;
}

.banner-1 h2{
  font-size: 28px;
  font-weight: bold;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Banner 2 - Marrón oscuro (esquina superior derecha) */
.banner-2{
  color: white;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 200px;
  grid-column: 2 !important;
  grid-row: 1 !important;
  background-image: url('images/banner-2-emprendedor.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 40px;
  z-index: 1;
}

.banner-2 .banner-text{
  position: absolute;
  top: 80px;
  left: 40px;
  z-index: 1;
}

.banner-2 .banner-text h1{
  color: var(--white);
  font-family: 'MenuApp Medium', sans-serif;
  font-size: 55px;
  margin: 0 0 10px 0;
  line-height: 49px;
}

.banner-2 .banner-text p{
  color: var(--white);
  font-family: 'MenuApp Regular', sans-serif;
  font-size: clamp(15px, 2.2vw, 18px);
  margin: 0;
}

/* Fila de 3 bloques */
.three-blocks{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column: 1 / -1 !important;
  grid-row: 2 !important;
  min-height: 150px;
  position: relative;
  z-index: 2;
}

.three-blocks .block{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  color: white;
  padding: 40px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: visible;
}

.three-blocks .block:hover{
  transform: scale(1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 10;
}

.three-blocks .block:hover::after{
  content: '+';
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 17px;
  font-weight: bold;
  color: white;
  background: rgba(0,0,0,0.3);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.tooltip-hint {
  position: absolute;
  bottom: 15px;
  right: 15px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'MenuApp Regular', sans-serif;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
}

.three-blocks .block:hover .tooltip-hint {
  opacity: 1;
}

/* Ocultar todos los íconos + cuando hay un tooltip abierto */
body.tooltip-open .three-blocks .block:hover::after {
  display: none !important;
}

/* Ocultar el texto de hint cuando hay un tooltip abierto */
body.tooltip-open .tooltip-hint {
  opacity: 0 !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.three-blocks .block-1{
  background: #6B4423;
}

.three-blocks .block-2{
  background: #dd4625;
}

.three-blocks .block-3{
  background: #eb5535;
}

/* Tooltips */
.tooltip {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tooltip.active {
  opacity: 1;
  visibility: visible;
  animation: tooltipFadeIn 0.3s ease;
}

.tooltip-content {
  background: white;
  padding: 35px;
  border-radius: 12px;
  max-width: 400px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  margin: 20px;
  position: relative;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.tooltip-content p {
  width: 100%;
  max-width: 100% !important;
  color: #333 !important;
}

.tooltip-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.tooltip-close:hover {
  background: #f0f0f0;
  color: #333;
}

.tooltip-label {
  position: absolute;
  top: 15px;
  right: 50px;
  font-size: 12px;
  color: #666;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tooltip-content h3 {
  color: #333;
  font-size: 20px;
  margin: 0px 0 15px 0;
  font-weight: bold;
  font-family: 'MenuApp Medium', sans-serif;
  text-align: left;
  transition: font-size 0.3s ease;
}

.tooltip-content p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 12px 0;
  text-align: left;
  font-weight: 400;
  transition: font-size 0.3s ease;
}

.tooltip-content p:last-child {
  margin-bottom: 0;
}

.tooltip-content ul, .tooltip-content ol {
  margin: 0 0 15px 0;
  padding-left: 0;
  color: #666;
  text-align: left;
  list-style: none;
}

.tooltip-content ul li {
  margin-bottom: 10px;
  line-height: 1.4;
  position: relative;
  padding-left: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
  font-size: 14px;
}

.tooltip-content ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.tooltip-content ul li::before {
  content: "•";
  color: #333;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.tooltip-content ol li {
  margin-bottom: 10px;
  line-height: 1.4;
  padding-left: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 14px;
}

.tooltip-content ol li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

@keyframes tooltipFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.three-blocks .block h2{
  font-size: 28px;
  font-weight: bold;
  margin: 0 0 15px 0;
  transition: font-size 0.3s ease;
}

.three-blocks .block p{
  font-size: 13px;
  font-weight: 100;
  margin: 0;
  line-height: 1.5;
  max-width: 280px;
  transition: font-size 0.3s ease;
}

/* Responsive text sizing for blocks */
@media (max-width: 480px) {
  .three-blocks .block h2{
    font-size: 22px;
  }
  .three-blocks .block p{
    font-size: 11px;
    max-width: 240px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .three-blocks .block h2{
    font-size: 24px;
  }
  .three-blocks .block p{
    font-size: 12px;
    max-width: 260px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .three-blocks .block h2{
    font-size: 26px;
  }
  .three-blocks .block p{
    font-size: 13px;
    max-width: 280px;
  }
}

@media (min-width: 1025px) and (max-width: 1440px) {
  .three-blocks .block h2{
    font-size: 28px;
  }
  .three-blocks .block p{
    font-size: 14px;
    max-width: 300px;
  }
}

@media (min-width: 1441px) {
  .three-blocks .block h2{
    font-size: 32px;
  }
  .three-blocks .block p{
    font-size: 16px;
    max-width: 320px;
  }
}

/* Responsive text sizing for tooltips */
@media (max-width: 480px) {
  .tooltip-content h3 {
    font-size: 16px;
  }
  .tooltip-content p {
    font-size: 12px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .tooltip-content h3 {
    font-size: 18px;
  }
  .tooltip-content p {
    font-size: 13px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .tooltip-content h3 {
    font-size: 20px;
  }
  .tooltip-content p {
    font-size: 14px;
  }
}

@media (min-width: 1025px) and (max-width: 1440px) {
  .tooltip-content h3 {
    font-size: 22px;
  }
  .tooltip-content p {
    font-size: 15px;
  }
}

@media (min-width: 1441px) {
  .tooltip-content h3 {
    font-size: 24px;
  }
  .tooltip-content p {
    font-size: 16px;
  }
}

/* Banner 3 - Blanco con botón (esquina inferior izquierda) */
.banner-3{
  background: white;
  color: black;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 70px;
  min-height: 200px;
  grid-column: 1 !important;
  grid-row: 3 !important;
  text-align: left;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.banner-3 h1{
  margin: 0 0 20px 0;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.1;
  color: #000;
  font-family: 'MenuApp Medium', sans-serif;
  line-height: 35px;
}

.banner-3 h1 .smaller{
  font-size: 0.7em;
  font-family: 'MenuApp Medium', sans-serif;
}

.banner-3 p{
  font-size: 16px;
  line-height: 1.2;
  margin: 0 0 30px 0;
  max-width: 500px;
  color: #333;
}

.btn-orange{
  background: #8B4513;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.btn-whatsapp{
  background: #25D366;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 500;
}

.btn-whatsapp:hover{
  background: #128C7E;
  transform: translateY(-2px);
}

.btn-whatsapp svg{
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* iPhone flotante */
.floating-phone {
  position: absolute;
  top: 20px;
  left: calc(100% + 20px);
  transform: rotate(0deg);
  z-index: 9999;
  pointer-events: none;
  transition: transform 0.1s ease-out;
  
  height: 200px;
}

.floating-phone img {
  width: 220px;
  height: auto;
  filter: drop-shadow(0 15px 40px rgba(0,0,0,0.4));
  transition: opacity 0.4s ease, transform 0.4s ease, filter 0.3s ease;
}

/* iPhone base - siempre visible */
.floating-phone .phone-base {
  position: absolute;
  top: 0;
  left: 0;
  animation: phoneFloat 4s ease-in-out infinite;
  z-index: 1;
}

/* iPhone overlay - con efectos de zoom y movimiento */
.floating-phone .phone-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  animation: phoneFloat 4s ease-in-out infinite;
  --rotation: 0deg;
  transition: opacity 0.4s ease, transform 0.4s ease, filter 0.3s ease, --rotation 0.5s ease;
}

@keyframes phoneFloat {
  0%, 100% {
    transform: translateY(0px) rotate(var(--rotation, 0deg));
  }
  25% {
    transform: translateY(-8px) rotate(var(--rotation, 0deg));
  }
  50% {
    transform: translateY(-5px) rotate(var(--rotation, 0deg));
  }
  75% {
    transform: translateY(-12px) rotate(var(--rotation, 0deg));
  }
}

/* Responsive para iPhone flotante */
@media (min-width: 1400px) {
  .floating-phone {
    width: 250px;
    height: 250px;
    transform: rotate(0deg);
  }
  
  .floating-phone img {
    width: 220px;
  }
}

@media (min-width: 1600px) {
  .floating-phone {
    width: 300px;
    height: 300px;
    transform: rotate(0deg);
  }
  
  .floating-phone img {
    width: 300px;
  }
}

@media (max-width: 768px) {
  .floating-phone {
    display: none;
  }
  
  /* Menú hamburguesa en móvil */
  .hamburger-menu {
    top: 12px;
    right: 12px;
  }
  
  .hamburger-btn {
    padding: 10px;
  }
  
  .hamburger-line {
    width: 20px;
    height: 2px;
  }
  
  .hamburger-nav {
    width: 270px;
    max-width: 60vw;
    top: 55px;
    right: 12px;
  }
  
  .nav-header {
    padding: 12px 15px;
  }
  
  .nav-header h3 {
    font-size: 16px;
  }
  
  .nav-close {
    font-size: 20px;
    width: 25px;
    height: 25px;
  }
  
  .nav-list a {
    padding: 12px 8px;
    font-size: 13px;
  }
}

/* Banner 4 - Verde oliva (esquina inferior derecha) */
.banner-4{
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  grid-column: 2 !important;
  grid-row: 3 !important;
  background-image: url('images/banner-4-amigos.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 40px;
}

/* ========================================
   MOBILE STYLES - UNIFIED SECTION
   ======================================== */
@media (max-width: 768px){
  /* Container adjustments */
  .container{
    padding: 0px;
  }

  /* Hero section mobile */
  .hero{
    position: relative;
    min-height: 450px;
    display: grid;
    place-items: end center;
    padding: clamp(16px,3vw,32px);
    color: var(--white);
    overflow: hidden;
  }

  .hero .parallax-bg{
    position: absolute;
    inset: -6vh -9vw;
    background-image: var(--img-hero-mobile);
    background-size: cover;
    background-position: center;
    transform: translateY(var(--offset, 0px)) scale(0.86);
    will-change: transform;
    z-index: 0;
  }

  .hero .logo,
  .hero .name,
  .hero .claim { 
    position: absolute; 
    z-index: 1; 
  }

  .hero::after{
    content:"";
    position:absolute;
    inset:0;
    z-index: 0;
  }

  .logo{
    position:absolute;
    top:clamp(60px,3vw,28px);
    left:clamp(36px,3vw,28px);
    background:var(--white);
    color:#000;
    font-family:'MenuApp Bold', sans-serif;
    font-size:clamp(18px,3.2vw,28px);
    box-shadow:0 6px 24px rgba(0,0,0,.22);
    display:inline-flex;
    align-items:center;
    gap:.35rem;
    border-radius: 8px;
    padding: 6px;
  }

  .logo img {
    max-width: 80px;
    border-radius: 8px;
  }

  .logo small{ 
    font-family:'MenuApp Medium', sans-serif; 
    font-size:.65em; 
    margin-left:.15rem; 
  }

  .name h1 {
    color:var(--white);
    font-family:'MenuApp Medium', sans-serif;
    font-size:3.2em;
    text-shadow:1px 1px rgba(0,0,0,.55);
    margin: 0 0 20px 0;
    line-height: 0.9em;
  }
  
  /* Móviles muy pequeños */
  @media (max-width: 480px) {
    .name h1 {
      font-size: 2.8em;
    }
  }

  .name{
    position:absolute;
    bottom:clamp(153px,3vw,28px);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
  }

  .claim{
    position:absolute;
    bottom:clamp(130px,3vw,28px);
    left: 50%;
    transform: translateX(-50%);
    color:var(--white);
    font-family:'MenuApp Medium', sans-serif;
    font-size:clamp(15px,2.2vw,18px);
    text-align: center;
    width: 100%;
  }

  /* Headline section mobile */
  .headline{
    background:var(--white);
    padding:clamp(28px,6vw,72px) clamp(18px,6vw,96px);
  }

  .headline h2{
    margin:0 0 .4rem;
    font-size: clamp(32px, 3.5vw, 80px);
    line-height:.85;
    letter-spacing:-0.5px;
    text-align: center;
  }

  .headline p{ 
    margin:10px 0 0; 
    font-size:clamp(16px,2.6vw,28px); 
    font-family:'MenuApp Light', sans-serif; 
    text-align: center; 
    padding: 0 20px 0 20px; 
  }

  .headline span{ 
    font-family:'MenuApp Bold', sans-serif; 
  }

  /* How section mobile */
  .how{
    background:var(--img-mid);
    background-size: cover;
    background-position: center;
    min-height: 48vh;
    padding-right: 48vw;
  }

  .how-col{
    position: relative;
    z-index: 1;
  }

  .how-col h3 { 
    font-size: 34px;
    margin-bottom: 0;
    margin-top: 10px;
  }

  .phone{
    position: absolute;
    z-index: 1;
    right: clamp(8px, 5vw, 64px);
    top: 50%;
    transform: translateY(-50%) translateX(var(--phone-start-x)) rotate(-1deg);
    width: clamp(200px, 25vw, 300px);
    height: auto;
    opacity: var(--phone-start-opacity);
  }

 

  .cta{
    display:inline-flex;
    align-items:center;
    gap:.5rem;
    margin-top:clamp(16px,3vw,28px);
    padding:.95rem 1.2rem;
    font-weight:200;
    background:var(--white);
    color:var(--black);
    border-radius:999px;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    text-decoration:none;
    transition:transform .12s ease, box-shadow .12s ease;
  }

  .cta:hover{ 
    transform:translateY(-2px); 
    box-shadow:0 14px 36px rgba(0,0,0,.3); 
  }

  .legal{ 
    margin-top:clamp(19px,3vw,22px); 
    font-size:11px !important; 
    opacity:.9; 
  }

  /* Flyer section mobile */
  .flyer{ 
    min-height: 60vh; 
  }

  .flyer .container{
    padding: var(--flyer-mobile-top) var(--flyer-mobile-left); 
    min-height: 60vh;
  }

  .flyer .parallax-bg{
    inset: -15vh -9vw;
    overflow: hidden;
  }

  .flyer .parallax-img{
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    max-height: none;
    object-fit: contain;
    object-position: center center;
  }

  .flyer-text{ 
    max-width: 90%; 
    margin-left: 0; 
    margin-bottom: 0; 
  }

  .flyer-text h2{ 
    font-size: 48px; 
    margin: 0; 
  }

  .flyer-text h3{ 
    font-size: 28px; 
    margin-top: 7px; 
    color: #ff6a3d; 
  }

  .flyer-text .flyer-title{ 
    font-size: 48px; 
    margin: 0; 
  }

  .flyer-text .flyer-subtitle{ 
    font-size: 28px; 
    margin-top: 7px; 
    color: #ff6a3d; 
  }

  .flyer-text p{ 
    font-size: 13px; 
    margin: 8px 0 0 0;
    max-width: 70%;
  }

  .whatsapp-btn{
    font-size: 14px;
    padding: 10px 20px;
    margin-top: 15px;
  }

  .whatsapp-btn svg{
    width: 18px;
    height: 18px;
  }

}
