:root{
  --black: #0b0b0f;
  --dark: #11131a;
  --white: #ffffff;

  --red: #D7263D;
  --orange: #F08700;

  --text: rgba(255,255,255,.86);
  --muted: rgba(255,255,255,.65);

  --card: rgba(255,255,255,.06);
  --border: rgba(255,255,255,.12);

  --radius: 16px;
  --shadow: 0 18px 40px rgba(0,0,0,.35);
}

*{ box-sizing: border-box; }
html, body{ margin: 0; padding: 0; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 20% 0%, rgba(240,135,0,.16), transparent 55%),
              radial-gradient(900px 500px at 85% 10%, rgba(215,38,61,.15), transparent 60%),
              linear-gradient(180deg, var(--black), var(--dark));
  color: var(--text);
}

a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }

.container{
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* HEADER */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(10,10,14,.55);
  border-bottom: 1px solid var(--border);
}

.header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__logo{
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand__name{
  font-weight: 800;
  letter-spacing: .2px;
}

.nav{
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__link{
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  transition: .2s ease;
}

.nav__link:hover{
  color: var(--white);
  background: rgba(255,255,255,.06);
}

.nav__link--cta{
  color: var(--white);
  background: linear-gradient(90deg, var(--red), var(--orange));
}

/* HERO */
.hero {
  padding: 0;
}

.hero__grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 22px;
  align-items: center;
}

.hero__media {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

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

.hero__content h1{
  margin: 0 0 10px;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.05;
}

.hero__content p{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.hero__bullets{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

/* BUTTONS */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  font-weight: 700;
  cursor: pointer;
}

.btn--primary{
  border: none;
  color: var(--white);
  background: linear-gradient(90deg, var(--red), var(--orange));
}

.btn--ghost{
  background: rgba(255,255,255,.06);
  color: var(--white);
}

/* SECTIONS */
.section-title{
  margin: 0 0 16px;
  font-size: 1.6rem;
  letter-spacing: .2px;
}

.cards{
  padding: 28px 0;
}

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

.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
}

.card h3{
  margin: 0 0 8px;
}

.card p{
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.55;
}

.card__link{
  color: var(--orange);
  font-weight: 800;
}

.cases{
  padding: 26px 0;
}

.cases__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.mock-box{
  border-radius: var(--radius);
  border: 1px dashed rgba(255,255,255,.25);
  padding: 22px;
  background: rgba(255,255,255,.04);
  min-height: 220px;
}

.mini-stats{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.mini-stat{
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05);
  border-radius: 14px;
  padding: 12px;
}

.mini-stat__num{
  display: block;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--orange);
}

.mini-stat__label{
  color: var(--muted);
  font-size: .9rem;
}

/* CONTACT */
.contact{
  padding: 30px 0 46px;
}

.contact__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.form{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}

.form label{
  display: block;
  font-weight: 700;
  margin-bottom: 12px;
}

.form input,
.form textarea{
  width: 100%;
  margin-top: 8px;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color: var(--white);
  outline: none;
}

.form input:focus,
.form textarea:focus{
  border-color: rgba(240,135,0,.7);
}

.form__note{
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .9rem;
}

/* FOOTER */
.footer{
  border-top: 1px solid var(--border);
  padding: 22px 0;
  background: rgba(0,0,0,.25);
}

.footer__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer__small{
  color: var(--muted);
  font-size: .9rem;
}

.footer__logo{
  width: 70px;
  height: 70px;
  object-fit: contain;
  opacity: .95;
}

/* RESPONSIVE */
@media (max-width: 900px){
  .hero__grid{ grid-template-columns: 1fr; }
  .cases__grid{ grid-template-columns: 1fr; }
  .contact__grid{ grid-template-columns: 1fr; }
  .cards__grid{ grid-template-columns: 1fr; }
  .brand__name{ display: none; }
}

/* ===== REEL SECTION (PRO) ===== */
:root{
  --black2: #0b0b0f;
  --red2: #D7263D;
  --orange2: #F08700;
}

.reel2{
  padding: 34px 0;
}

.reel2__grid{
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: center;
}

/* fondo con acentos */
.reel2{
  position: relative;
}
.reel2::before{
  content:"";
  position:absolute;
  inset: 0;
  background:
    radial-gradient(700px 350px at 15% 30%, rgba(240,135,0,.18), transparent 60%),
    radial-gradient(700px 350px at 85% 40%, rgba(215,38,61,.16), transparent 60%);
  pointer-events:none;
}

/* PHONE MOCKUP */
.reel2__phone{
  position: relative;
  display: flex;
  justify-content: center;
}

.phone{
  width: min(360px, 92%);
  border-radius: 28px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
}

.phone__top{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 8px 6px 10px;
}

.phone__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.35);
}

.phone__bar{
  width: 70px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
}

.phone__video{
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  display: block;
  background: #000;
  border: 1px solid rgba(255,255,255,.10);
}

/* CONTENT */
.reel2__content{
  position: relative;
  z-index: 1;
}

.reel2__brand{
  display: grid;
  justify-items: start;
  gap: 8px;
  margin-bottom: 12px;
}

.reel2__logo{
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.reel2__title{
  margin: 0;
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1.05;
  letter-spacing: .2px;
}

.reel2__tagline{
  margin: 0;
  color: rgba(255,255,255,.75);
}

.reel2__desc{
  margin: 10px 0 16px;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
  max-width: 52ch;
}

/* bullets pro */
.reel2__bullets{
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.bullet{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

.bullet__icon{
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(90deg, var(--red2), var(--orange2));
  color: white;
  font-size: 18px;
}

.bullet h3{
  margin: 0 0 2px;
  font-size: 1.02rem;
}

.bullet p{
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.4;
}

.reel2__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* responsive */
@media (max-width: 900px){
  .reel2__grid{
    grid-template-columns: 1fr;
  }
  .reel2__phone{
    justify-content: start;
  }
}
/* SOCIAL LINKS */
.social-links{
  display: flex;
  gap: 14px;
  margin-top: 14px;
}

.social-links a{
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  transition: .25s ease;
}

.social-links a:hover{
  background: linear-gradient(90deg, var(--red), var(--orange));
  transform: translateY(-2px);
}

.social-links svg{
  width: 22px;
  height: 22px;
  fill: white;
}
