/* ============================================
   PAR DE MEDIAS — Global Styles
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;700&display=swap');

:root {
  --red: #E8402A;
  --teal: #1B8A72;
  --teal-light: #3ECFB0;
  --dark: #141412;
  --cream: #F9F6F1;
  --white: #FFFFFF;
  --gray: #888580;
  --wa: #25D366;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--dark); overflow-x: hidden; }

/* MARQUEE */
.marquee-wrap { background: var(--dark); overflow: hidden; padding: 10px 0; }
.marquee-track { display: flex; animation: marquee 22s linear infinite; width: max-content; }
.marquee-track span { color: var(--cream); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; padding: 0 24px; font-weight: 500; white-space: nowrap; }
.marquee-track .dot { color: var(--red); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* NAV */
.nav { display: flex; align-items: center; justify-content: space-between; padding: 0 5vw; height: 64px; background: var(--white); border-bottom: 1px solid rgba(0,0,0,.08); position: sticky; top: 0; z-index: 200; }
.nav-logo img { height: 44px; display: block; }
.nav-wa { display: inline-flex; align-items: center; gap: 8px; background: var(--wa); color: var(--white); padding: 9px 20px; border-radius: 40px; font-size: 14px; font-weight: 500; text-decoration: none; transition: background .15s; }
.nav-wa:hover { background: #1DB954; }

/* HERO LANDING */
.hero { min-height: 92vh; display: grid; grid-template-columns: 1fr 1fr; background: var(--dark); overflow: hidden; }
.hero-content { display: flex; flex-direction: column; justify-content: center; padding: 80px 6vw 80px 8vw; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,.2); border-radius: 40px; padding: 6px 16px; width: fit-content; margin-bottom: 28px; }
.hero-tag span { font-size: 12px; color: var(--teal-light); letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }
.pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--teal-light); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
.hero h1 { font-family: var(--font-display); font-size: clamp(4rem, 7vw, 7rem); line-height: .95; color: var(--white); letter-spacing: .02em; margin-bottom: 6px; }
.hero h1 .outline { -webkit-text-stroke: 2px var(--teal-light); color: transparent; }
.hero-collab { font-size: 14px; color: rgba(255,255,255,.45); margin-bottom: 20px; letter-spacing: .04em; }
.hero-collab strong { color: var(--teal-light); }
.hero-desc { font-size: 16px; color: rgba(255,255,255,.6); line-height: 1.7; max-width: 380px; margin-bottom: 32px; }
.price-block { margin-bottom: 36px; }
.price-main { font-family: var(--font-display); font-size: 3.8rem; color: var(--white); line-height: 1; }
.price-detail { font-size: 13px; color: rgba(255,255,255,.4); margin-top: 4px; }
.price-ship { display: inline-flex; align-items: center; gap: 6px; background: rgba(62,207,176,.12); border: 1px solid rgba(62,207,176,.25); border-radius: 30px; padding: 5px 14px; font-size: 12px; color: var(--teal-light); font-weight: 600; margin-top: 10px; }
.cta-group { display: flex; flex-direction: column; gap: 12px; max-width: 360px; }
.btn-bold { background: var(--red); color: var(--white); border: none; border-radius: 50px; padding: 18px 36px; font-size: 16px; font-weight: 700; font-family: var(--font-body); cursor: pointer; text-decoration: none; text-align: center; display: block; transition: background .15s, transform .1s; letter-spacing: .02em; }
.btn-bold:hover { background: #C93220; }
.btn-bold:active { transform: scale(.98); }
.btn-wa-hero { display: flex; align-items: center; justify-content: center; gap: 10px; background: transparent; color: rgba(255,255,255,.7); border: 1.5px solid rgba(255,255,255,.2); border-radius: 50px; padding: 16px 36px; font-size: 15px; font-weight: 500; text-decoration: none; transition: all .15s; }
.btn-wa-hero:hover { border-color: var(--wa); color: var(--wa); }
.hero-img { position: relative; overflow: hidden; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.hero-img-overlay { position: absolute; inset: 0; background: linear-gradient(to right, var(--dark) 0%, transparent 30%); pointer-events: none; }
.hero-sticker { position: absolute; top: 28px; right: 28px; background: var(--red); color: var(--white); border-radius: 50%; width: 88px; height: 88px; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; text-align: center; text-transform: uppercase; letter-spacing: .06em; line-height: 1.4; border: 3px solid var(--white); animation: spin 12s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* PHOTOS */
.photos-section { padding: 80px 5vw; background: var(--white); }
.photos-section h2 { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); text-align: center; margin-bottom: 8px; letter-spacing: .02em; }
.photos-section h2 em { color: var(--red); font-style: normal; }
.photos-sub { text-align: center; color: var(--gray); font-size: 15px; margin-bottom: 48px; }
.photos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 960px; margin: 0 auto; }
.photo-card { border-radius: 20px; overflow: hidden; position: relative; aspect-ratio: 3/4; background: #E8E4DE; transition: transform .2s; }
.photo-card:hover { transform: scale(1.02); }
.photo-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,.65)); padding: 40px 16px 16px; color: var(--white); font-size: 14px; font-weight: 500; }

/* HOW IT WORKS */
.how-section { padding: 80px 5vw; background: var(--cream); }
.how-section h2 { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.5rem); text-align: center; margin-bottom: 48px; letter-spacing: .02em; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 800px; margin: 0 auto 56px; }
.how-card { text-align: center; padding: 32px 20px; background: var(--white); border-radius: 20px; border: 1px solid rgba(0,0,0,.06); }
.how-icon { font-size: 2.5rem; margin-bottom: 16px; }
.how-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.how-card p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* PAYMENT */
.pay-section { padding: 80px 5vw; background: var(--dark); }
.pay-section h2 { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.5rem); color: var(--white); text-align: center; margin-bottom: 8px; letter-spacing: .02em; }
.pay-sub-text { text-align: center; color: rgba(255,255,255,.4); font-size: 15px; margin-bottom: 48px; }
.pay-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 760px; margin: 0 auto; }
.pay-card { border-radius: 20px; padding: 36px 28px; border: 1.5px solid rgba(255,255,255,.1); }
.pay-card.featured { border-color: var(--teal-light); background: rgba(62,207,176,.06); }
.pay-icon { font-size: 2.2rem; margin-bottom: 16px; }
.pay-card h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.pay-card p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 20px; }
.pay-price { font-family: var(--font-display); font-size: 2rem; margin-bottom: 20px; }
.pay-price.green { color: var(--teal-light); }
.pay-price.red-txt { color: #FF7A6B; }

/* FORM */
.form-wrap { background: var(--cream); border-radius: 20px; padding: 28px; }
.form-wrap h3 { font-size: 15px; font-weight: 700; margin-bottom: 20px; color: var(--dark); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-grid.one { grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; gap: 5px; }
.field label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gray); }
.field input { border: 1.5px solid #E0DDD5; border-radius: 10px; padding: 12px 14px; font-size: 15px; font-family: var(--font-body); background: var(--white); color: var(--dark); outline: none; transition: border .15s; width: 100%; }
.field input:focus { border-color: var(--teal); }
.btn-wa-form { width: 100%; margin-top: 16px; background: var(--wa); color: var(--white); border: none; border-radius: 50px; padding: 17px; font-size: 16px; font-weight: 700; font-family: var(--font-body); cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: background .15s; }
.btn-wa-form:hover { background: #1DB954; }

/* MORE COLLECTIONS */
.more-section { padding: 60px 5vw; background: var(--cream); text-align: center; border-top: 1px solid rgba(0,0,0,.06); }
.more-section p { font-size: 15px; color: var(--gray); margin-bottom: 20px; line-height: 1.7; max-width: 480px; margin-left: auto; margin-right: auto; }
.btn-more-wa { display: inline-flex; align-items: center; gap: 10px; background: var(--dark); color: var(--white); padding: 16px 36px; border-radius: 50px; font-size: 15px; font-weight: 600; text-decoration: none; transition: background .15s; }
.btn-more-wa:hover { background: var(--red); }

/* FOOTER */
footer { background: var(--dark); padding: 32px 5vw; text-align: center; }
footer p { font-size: 13px; color: rgba(255,255,255,.3); }
footer a { color: var(--teal-light); text-decoration: none; }

/* HOMEPAGE */
.hp-hero { padding: 100px 5vw 70px; background: var(--dark); }
.hp-hero h1 { font-family: var(--font-display); font-size: clamp(4rem, 9vw, 9rem); color: var(--white); line-height: .92; letter-spacing: .02em; margin-bottom: 24px; }
.hp-hero h1 .red { color: var(--red); }
.hp-hero p { font-size: 17px; color: rgba(255,255,255,.5); max-width: 480px; line-height: 1.7; }
.collections-section { padding: 80px 5vw; }
.collections-section h2 { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 8px; letter-spacing: .02em; }
.collections-sub { color: var(--gray); font-size: 15px; margin-bottom: 48px; }
.col-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.col-card { border-radius: 24px; overflow: hidden; background: var(--white); border: 1px solid rgba(0,0,0,.07); display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; text-decoration: none; color: var(--dark); }
.col-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,.1); }
.col-card-img { height: 260px; overflow: hidden; background: #E8E4DE; position: relative; }
.col-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.col-card:hover .col-card-img img { transform: scale(1.04); }
.col-badge { position: absolute; top: 14px; left: 14px; background: var(--red); color: var(--white); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: .06em; }
.col-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.col-card-name { font-family: var(--font-display); font-size: 1.9rem; letter-spacing: .02em; margin-bottom: 6px; }
.col-card-desc { font-size: 13px; color: var(--gray); line-height: 1.6; flex: 1; margin-bottom: 20px; }
.col-card-price { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 14px; }
.col-card-cta { display: block; text-align: center; background: var(--dark); color: var(--white); border-radius: 40px; padding: 13px; font-size: 14px; font-weight: 600; text-decoration: none; transition: background .15s; }
.col-card-cta:hover { background: var(--red); }
.col-card.inactive { opacity: .4; pointer-events: none; filter: grayscale(.5); }

/* MOBILE */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; }
  .hero-img { height: 60vw; min-height: 260px; order: -1; }
  .hero-content { padding: 48px 6vw; }
  .hero-img-overlay { background: linear-gradient(to bottom, rgba(20,20,18,.6) 0%, transparent 50%); }
  .photos-grid { grid-template-columns: 1fr 1fr; }
  .how-grid, .pay-cards { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hp-hero { padding: 60px 5vw 40px; }
}
@media (max-width: 480px) {
  .photos-grid { grid-template-columns: 1fr; }
}
