:root{
  --magenta:#E0008A;
  --purple:#6B2CF5;
  --blue:#1F6BFF;
  --text:#2B2F38;
  --muted:#667085;
  --bg:#F4F6FA;
  --white:#FFFFFF;
  --radius:18px;
  --shadow: 0 10px 30px rgba(15, 23, 42, .10);
  --grad: linear-gradient(90deg, var(--magenta), var(--purple), var(--blue));
}
*{box-sizing:border-box}
body{margin:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto; color:var(--text); background:var(--white);}
a{color:inherit;text-decoration:none}
.container{width:min(1120px, 92vw); margin:0 auto;}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 18px; border-radius:999px; font-weight:600; gap:10px;
  border:1px solid rgba(0,0,0,.08); background:var(--white);
}
.btn.primary{background:var(--grad); color:#fff; border:none; box-shadow:var(--shadow);}
.btn.ghost{background:transparent;}
.pill{display:inline-flex; padding:8px 12px; border-radius:999px; background:rgba(107,44,245,.08); color:var(--purple); font-weight:600; font-size:13px;}
header{
  position:sticky; top:0; z-index:10; background:rgba(255,255,255,.85);
  backdrop-filter: blur(10px); border-bottom:1px solid rgba(0,0,0,.06);
}
.nav{display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:18px;}
.brand{display:flex; align-items:center; gap:12px;}
.logo{
  width:44px; height:44px; border-radius:14px; background:var(--bg);
  display:grid; place-items:center; overflow:hidden;
}
/* Reemplaza este SVG por tu logo real */
.logo img{width:38px;height:38px}
nav ul{list-style:none; display:flex; gap:18px; padding:0; margin:0; color:var(--muted); font-weight:600;}
nav a:hover{color:var(--text)}
.hero{
  padding:56px 0 28px;
  background:
    radial-gradient(1000px 400px at 10% 0%, rgba(224,0,138,.16), transparent 60%),
    radial-gradient(900px 380px at 70% 10%, rgba(31,107,255,.14), transparent 60%),
    radial-gradient(900px 380px at 90% 60%, rgba(107,44,245,.14), transparent 60%);
}
.hero-grid{display:grid; grid-template-columns: 1.1fr .9fr; gap:28px; align-items:center;}
h1{font-family:Poppins; font-size:44px; line-height:1.05; margin:10px 0 12px;}
.lead{color:var(--muted); font-size:16px; line-height:1.6; margin:0 0 18px;}
.cta{display:flex; gap:12px; flex-wrap:wrap;}
.media{
  border-radius:var(--radius); background:var(--white);
  box-shadow:var(--shadow); overflow:hidden; border:1px solid rgba(0,0,0,.06);
  min-height:320px; display:grid; place-items:center;
}
.media img{
  width: 100%;
}

.media .ph{color:var(--muted); font-weight:600;}
section{padding:46px 0;}
.section-title{display:flex; justify-content:space-between; align-items:end; gap:12px; margin-bottom:18px;}
.section-title h2{font-family:Poppins; margin:0; font-size:28px;}
.section-title p{margin:0; color:var(--muted); max-width:560px;}
.cards{display:grid; grid-template-columns:repeat(3,1fr); gap:16px;}
.card{
  border-radius:var(--radius); background:var(--white);
  border:1px solid rgba(0,0,0,.06); box-shadow:0 6px 20px rgba(15,23,42,.06);
  padding:18px;
}
.card .icon{
  width:42px; height:42px; border-radius:14px;
  background:rgba(224,0,138,.10);
  display:grid; place-items:center; margin-bottom:12px;
  border:1px solid rgba(224,0,138,.18);
}
.card h3{margin:0 0 8px; font-family:Poppins; font-size:18px;}
.card p{margin:0; color:var(--muted); line-height:1.6;}
.mv{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
.mv .card{position:relative; overflow:hidden;}
.mv .card:before{
  content:""; position:absolute; left:0; top:0; bottom:0; width:6px; background:var(--grad);
}
.gallery-tabs{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:14px;}
.tab{padding:10px 14px; border-radius:999px; background:var(--bg); color:var(--text); font-weight:600; border:1px solid rgba(0,0,0,.06);}
.grid{display:grid; grid-template-columns:repeat(4,1fr); gap:12px;}
.shot{
  border-radius:16px; background:var(--bg);
  border:1px solid rgba(0,0,0,.06); aspect-ratio: 1 / 1;
  display:grid; place-items:center; color:var(--muted); font-weight:600;
}
.reviews{display:grid; grid-template-columns:repeat(3,1fr); gap:16px;}
.stars{font-weight:800; letter-spacing:1px; background:var(--grad); -webkit-background-clip:text; color:transparent;}
.contact{display:grid; grid-template-columns:1fr .8fr; gap:16px;}
form{display:grid; gap:10px;}
input, select, textarea{
  width:100%; padding:12px 12px; border-radius:14px;
  border:1px solid rgba(0,0,0,.12); outline:none; font:inherit;
  background:var(--white);
}
textarea{min-height:120px; resize:vertical;}
.side .item{display:flex; gap:10px; padding:12px; border-radius:16px; background:var(--bg); border:1px solid rgba(0,0,0,.06); margin-bottom:10px;}
footer{
  background:var(--bg); border-top:1px solid rgba(0,0,0,.06);
  padding:26px 0; color:var(--muted);
}
.foot{display:flex; justify-content:space-between; gap:18px; flex-wrap:wrap;}
@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr;}
  .cards{grid-template-columns:1fr;}
  .mv{grid-template-columns:1fr;}
  .grid{grid-template-columns:repeat(2,1fr);}
  .reviews{grid-template-columns:1fr;}
  .contact{grid-template-columns:1fr;}
  nav ul{display:none;}
  h1{font-size:38px;}
}


.gallery-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery-tabs .tab {
  padding: 12px 24px;
  background: #fff;
  border: 2px solid #E5E7EB;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.gallery-tabs .tab:hover {
  border-color: #6B2CF5;
  color: #6B2CF5;
}

.gallery-tabs .tab.active {
  background: linear-gradient(135deg, #E0008A, #6B2CF5, #1F6BFF);
  color: white;
  border-color: transparent;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.shot {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f4f6;
  aspect-ratio: 1;
  cursor: pointer;
  transition: transform 0.3s;
}

.shot:hover {
  transform: scale(1.05);
}

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

.shot-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  font-size: 14px;
  font-weight: 600;
}
