/* =============================================
   SuaviSteven v2 – All images in root folder
   ============================================= */
:root {
  --blue-deep: #0d4fa0;
  --blue-mid:  #1a6fc4;
  --blue-sky:  #5bb4f5;
  --blue-light:#d4eaff;
  --white:     #ffffff;
  --off-white: #f4f9ff;
  --orange:    #f5a623;
  --text-dark: #1a2a40;
  --text-mid:  #4a6180;
  --radius:    16px;
  --radius-lg: 28px;
  --shadow:    0 8px 32px rgba(13,79,160,0.12);
  --shadow-lg: 0 20px 60px rgba(13,79,160,0.18);
  --font-head: 'Pacifico', cursive;
  --font-body: 'Nunito', sans-serif;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 32px; border-radius: 50px; font-family: var(--font-body); font-weight: 800; font-size: 1rem; cursor: pointer; transition: all var(--transition); border: 3px solid transparent; white-space: nowrap; }
.btn--primary { background: linear-gradient(135deg, var(--blue-mid), var(--blue-deep)); color: var(--white); box-shadow: 0 6px 20px rgba(26,111,196,0.4); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(26,111,196,0.5); }
.btn--outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn--outline:hover { background: var(--white); color: var(--blue-mid); transform: translateY(-3px); }
.btn--small { padding: 10px 24px; font-size: .9rem; background: linear-gradient(135deg, var(--blue-mid), var(--blue-deep)); color: var(--white); box-shadow: 0 4px 14px rgba(26,111,196,0.3); }
.btn--small:hover { transform: translateY(-2px); }
.btn--full { width: 100%; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.96); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(91,180,245,0.15); transition: box-shadow var(--transition); }
.nav.scrolled { box-shadow: var(--shadow); }
.nav__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__logo-img { height: 44px; width: auto; object-fit: contain; }
.nav__links { display: flex; align-items: center; gap: 8px; }
.nav__links a { font-weight: 700; font-size: .95rem; color: var(--text-mid); padding: 8px 16px; border-radius: 50px; transition: all var(--transition); }
.nav__links a:hover, .nav__links a.active { background: var(--blue-light); color: var(--blue-mid); }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__burger span { display: block; width: 26px; height: 3px; background: var(--blue-mid); border-radius: 2px; transition: all var(--transition); }

/* BUBBLES */
.hero__bubbles, .page-hero__bubbles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.bubble { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.08); animation: float 8s ease-in-out infinite; }
.b1 { width:300px; height:300px; top:-80px; left:-80px; animation-delay:0s; }
.b2 { width:200px; height:200px; top:20%; right:5%; animation-delay:2s; }
.b3 { width:150px; height:150px; bottom:10%; left:30%; animation-delay:4s; }
.b4 { width:100px; height:100px; top:50%; left:5%; animation-delay:1s; }
.b5 { width:250px; height:250px; bottom:-60px; right:-60px; animation-delay:3s; }
@keyframes float { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-20px) scale(1.05); } }
@keyframes slideUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* HERO */
.hero { position: relative; min-height: 100vh; background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 50%, var(--blue-sky) 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 10px 40px 70px; overflow: hidden; gap: 10px; }
.hero__content { width: 100%; max-width: 780px; position: relative; z-index: 2; animation: slideUp .8s ease both; display: flex; flex-direction: column; align-items: center; }
.hero__eyebrow { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,.85); margin-bottom: 20px; margin-top: 16px; background: rgba(255,255,255,.12); display: inline-block; padding: 8px 18px; border-radius: 50px; border: 1px solid rgba(255,255,255,.2); order: 2; }
.hero__brand-logo { height: 1047px; width: auto; max-width: 100%; object-fit: contain; margin: 0 auto 0; display: block; filter: none !important; order: 1; }
.hero__headline { font-family: var(--font-head); font-size: clamp(2.4rem,5vw,3.8rem); color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.hero__headline span { color: var(--orange); display: block; }
.hero__sub { font-size: 1.1rem; color: rgba(255,255,255,.85); line-height: 1.7; margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero__product-img { width: 100%; max-width: 520px; position: relative; z-index: 2; animation: slideUp .8s .2s ease both; }
.hero__product-img img { width: 100%; height: 320px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); object-fit: cover; }
.hero__badge { position: absolute; top: -16px; right: -16px; background: var(--orange); color: var(--white); font-weight: 900; font-size: .85rem; text-align: center; line-height: 1.2; padding: 14px; border-radius: 50%; width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(245,166,35,.5); animation: spin-slow 8s linear infinite; }

/* MIRAFLORES BANNER */
.miraflores-banner { position: relative; height: 420px; overflow: hidden; }
.miraflores-banner__img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; transition: transform 8s ease; }
.miraflores-banner:hover .miraflores-banner__img { transform: scale(1.04); }
.miraflores-banner__overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(13,79,160,0.75) 0%, rgba(13,79,160,0.3) 60%, transparent 100%); display: flex; align-items: center; padding: 0 60px; }
.miraflores-banner__text { color: var(--white); max-width: 520px; }
.miraflores-banner__text h2 { font-family: var(--font-head); font-size: clamp(1.8rem,3vw,2.8rem); margin-bottom: 14px; line-height: 1.2; }
.miraflores-banner__text p { font-size: 1.05rem; color: rgba(255,255,255,.88); line-height: 1.7; font-weight: 600; }
.miraflores-banner__badge { display: inline-block; background: var(--orange); color: var(--white); font-weight: 800; font-size: .82rem; padding: 6px 14px; border-radius: 50px; margin-bottom: 14px; }

/* FEATURES */
.features { background: var(--off-white); padding: 80px 24px; }
.features__inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.feature-card { background: var(--white); border-radius: var(--radius); padding: 36px 28px; text-align: center; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); border: 2px solid transparent; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue-light); }
.feature-card__icon { font-size: 2.8rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--blue-deep); margin-bottom: 10px; }
.feature-card p { font-size: .92rem; color: var(--text-mid); line-height: 1.6; }

/* SOCIAL PROOF */
.social-proof { padding: 100px 24px; background: var(--white); }
.social-proof__inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.social-proof__tag { display: inline-block; background: var(--blue-light); color: var(--blue-mid); font-weight: 800; font-size: .85rem; padding: 6px 14px; border-radius: 50px; margin-bottom: 16px; }
.social-proof__text h2 { font-family: var(--font-head); font-size: clamp(1.8rem,3vw,2.6rem); color: var(--blue-deep); line-height: 1.2; margin-bottom: 20px; }
.social-proof__text p { font-size: 1.05rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 28px; }
.social-proof__meme img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; max-height: 420px; }

/* PRODUCTS PREVIEW */
.products-preview { background: var(--off-white); padding: 100px 24px; }
.products-preview__inner { max-width: 1200px; margin: 0 auto; }
.section-title { font-family: var(--font-head); font-size: clamp(1.8rem,3vw,2.6rem); color: var(--blue-deep); text-align: center; margin-bottom: 12px; }
.section-sub { text-align: center; color: var(--text-mid); font-size: 1.05rem; margin-bottom: 52px; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.product-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); position: relative; }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-card__badge { position: absolute; top: 16px; left: 16px; background: var(--orange); color: var(--white); font-weight: 800; font-size: .78rem; padding: 5px 12px; border-radius: 50px; z-index: 2; }
.product-card__img-wrap { height: 220px; overflow: hidden; }
.product-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-card__img-wrap img { transform: scale(1.06); }
.product-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--blue-deep); margin: 20px 20px 8px; }
.product-card p { font-size: .92rem; color: var(--text-mid); margin: 0 20px 16px; line-height: 1.6; }
.product-card .btn--small { margin: 0 20px 24px; }

/* KPC BANNER */
.kpc-banner { background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid)); padding: 60px 24px; }
.kpc-banner__inner { max-width: 700px; margin: 0 auto; text-align: center; }
.kpc-banner__inner p { color: rgba(255,255,255,.8); font-weight: 700; font-size: 0.7rem; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 2px; }
.kpc-banner__logo { height: 80px; width: auto; object-fit: contain; margin: 0 auto;  }

/* FOOTER */
.footer { background: var(--text-dark); color: rgba(255,255,255,.8); padding: 60px 24px 0; }
.footer__inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__logo { height: 48px; width: auto; object-fit: contain; margin-bottom: 16px;  }
.footer__brand p { font-size: .92rem; line-height: 1.7; color: rgba(255,255,255,.65); }
.footer__links h4, .footer__contact h4 { font-weight: 800; color: var(--white); margin-bottom: 16px; }
.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: .92rem; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer__links a:hover { color: var(--blue-sky); }
.footer__contact p { font-size: .92rem; color: rgba(255,255,255,.65); margin-bottom: 8px; }
.footer__bottom { max-width: 1200px; margin: 0 auto; padding: 20px 0; text-align: center; font-size: .85rem; color: rgba(255,255,255,.4); }

/* PAGE HERO */
.page-hero { position: relative; min-height: 280px; background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid)); display: flex; align-items: flex-end; padding: 120px 24px 60px; overflow: hidden; }
.page-hero__content { position: relative; z-index: 2; max-width: 1200px; width: 100%; margin: 0 auto; }
.page-hero__content h1 { font-family: var(--font-head); font-size: clamp(2rem,5vw,3rem); color: var(--white); margin-bottom: 8px; }
.page-hero__content h1 span { color: var(--orange); }
.page-hero__content p { color: rgba(255,255,255,.8); font-size: 1.05rem; font-weight: 600; }

/* PRODUCTS FULL */
.products-full { padding: 80px 24px; }
.products-full__inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 80px; }
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.product-detail--reverse { direction: rtl; }
.product-detail--reverse > * { direction: ltr; }
.product-detail__img { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.product-detail__img img { width: 100%; height: 350px; object-fit: cover; }
.product-detail__badge { position: absolute; top: 16px; right: 16px; background: var(--orange); color: var(--white); font-weight: 800; font-size: .85rem; padding: 8px 16px; border-radius: 50px; }
.product-detail__line { display: inline-block; background: var(--blue-light); color: var(--blue-mid); font-weight: 800; font-size: .82rem; padding: 5px 14px; border-radius: 50px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.product-detail__info h2 { font-family: var(--font-head); font-size: clamp(1.6rem,3vw,2.2rem); color: var(--blue-deep); margin-bottom: 16px; }
.product-detail__info p { color: var(--text-mid); font-size: 1rem; line-height: 1.7; margin-bottom: 24px; }
.product-detail__features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.product-detail__features li { font-weight: 700; color: var(--text-dark); font-size: .95rem; }

/* ABOUT */
.about { padding: 80px 24px; }
.about__inner { max-width: 1200px; margin: 0 auto; }
.about__intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 80px; }
.about__intro-text h2 { font-family: var(--font-head); font-size: 2rem; color: var(--blue-deep); margin-bottom: 20px; }
.about__intro-text p { color: var(--text-mid); font-size: 1rem; line-height: 1.7; margin-bottom: 16px; }
.about__intro-img img { width: 100%; max-width: 420px; margin: 0 auto; }
.values { margin-bottom: 80px; }
.values__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 40px; }
.value-card { background: var(--white); border: 2px solid var(--blue-light); border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: all var(--transition); }
.value-card:hover { border-color: var(--blue-mid); box-shadow: var(--shadow); transform: translateY(-4px); }
.value-card__icon { font-size: 2.4rem; margin-bottom: 14px; }
.value-card h3 { font-weight: 800; color: var(--blue-deep); margin-bottom: 10px; font-size: 1.05rem; }
.value-card p { font-size: .9rem; color: var(--text-mid); line-height: 1.6; }
.kpc-about { background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid)); border-radius: var(--radius-lg); padding: 60px; margin-bottom: 80px; text-align: center; }
.kpc-about__content h2 { font-family: var(--font-head); font-size: 2rem; color: var(--white); margin-bottom: 20px; }
.kpc-about__content p { color: rgba(255,255,255,.85); font-size: 1rem; line-height: 1.7; max-width: 700px; margin: 0 auto 32px; }
.kpc-about__logo { height: 70px; width: auto; object-fit: contain; margin: 0 auto;  }
.mascot-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.mascot-section__img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; max-height: 400px; }
.mascot-section__text h2 { font-family: var(--font-head); font-size: 2rem; color: var(--blue-deep); margin-bottom: 16px; }
.mascot-section__text p { color: var(--text-mid); font-size: 1rem; line-height: 1.7; margin-bottom: 16px; }

/* CONTACT */
.contact-section { padding: 80px 24px; }
.contact-section__inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: start; }
.contact-form-wrap h2, .contact-info h2 { font-family: var(--font-head); font-size: 1.8rem; color: var(--blue-deep); margin-bottom: 32px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-weight: 700; font-size: .9rem; color: var(--text-dark); }
.form-group input, .form-group select, .form-group textarea { font-family: var(--font-body); font-size: .95rem; padding: 12px 16px; border: 2px solid #e0ebf8; border-radius: var(--radius); color: var(--text-dark); background: var(--white); transition: border-color var(--transition); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue-mid); box-shadow: 0 0 0 3px rgba(91,180,245,.2); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-success { display: none; background: #d4f8e8; border: 2px solid #34c77b; border-radius: var(--radius); padding: 16px 20px; font-weight: 700; color: #1a7c4a; text-align: center; }
.form-success.show { display: block; }
.contact-info__items { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.contact-info__item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info__icon { font-size: 1.8rem; flex-shrink: 0; }
.contact-info__item h4 { font-weight: 800; color: var(--blue-deep); margin-bottom: 4px; }
.contact-info__item p { color: var(--text-mid); font-size: .95rem; }
.contact-mascot { background: var(--off-white); border-radius: var(--radius); padding: 20px; text-align: center; border: 2px solid var(--blue-light); }
.contact-mascot img { width: 100%; height: auto; object-fit: contain; border-radius: var(--radius); margin-bottom: 12px; }
.contact-mascot p { font-size: .9rem; color: var(--text-mid); font-style: italic; font-weight: 600; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { flex-direction: column; text-align: center; padding: 110px 24px 60px; }
  .hero__content { max-width: 100%; }
  .hero__ctas { justify-content: center; }
  .hero__product-img { width: 100%; max-width: 420px; margin: 0 auto; }
  .hero__brand-logo { margin: 0 auto 24px; }
  .miraflores-banner { height: 300px; }
  .miraflores-banner__overlay { padding: 0 32px; }
  .social-proof__inner { grid-template-columns: 1fr; }
  .social-proof__meme { order: -1; }
  .about__intro { grid-template-columns: 1fr; }
  .mascot-section { grid-template-columns: 1fr; }
  .contact-section__inner { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; }
  .product-detail--reverse { direction: ltr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .kpc-about { padding: 40px 24px; }
}
@media (max-width: 600px) {
  .nav__links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); padding: 20px; box-shadow: var(--shadow); gap: 4px; border-top: 1px solid var(--blue-light); }
  .nav__links.open { display: flex; }
  .nav__burger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .miraflores-banner { height: 260px; }
  .miraflores-banner__text h2 { font-size: 1.6rem; }
}

/* Logo filter overrides */
.nav__logo-img { filter: none; }
.hero__brand-logo { filter: none; }
.footer__logo { filter: none; }
.kpc-banner__logo { filter: brightness(0) invert(1); }
.kpc-about__logo { filter: brightness(0) invert(1); }

/* Hero CTA: both buttons same transparent/outline style */
.hero__ctas .btn--primary,
.hero__ctas .btn--outline {
  background: transparent !important;
  color: var(--white) !important;
  border: 3px solid var(--white) !important;
  box-shadow: none !important;
  padding: 15px 40px;
  min-width: 190px;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 50px;
}
.hero__ctas .btn--primary:hover,
.hero__ctas .btn--outline:hover {
  background: var(--white) !important;
  color: var(--blue-mid) !important;
  transform: translateY(-3px);
}

/* Final overrides - use actual colored/white images, no filters needed */
.kpc-banner__logo { filter: none !important; }
.kpc-about__logo  { filter: none !important; }
.nav__logo-img    { filter: none !important; }
.hero__brand-logo { filter: none !important; }
.footer__logo     { filter: none !important; }

/* Hero content ordering: logo first, then eyebrow, then rest */
.hero__headline { order: 3; }
.hero__sub { order: 4; }
.hero__ctas { order: 5; }
