/* -------------------------
RESET
------------------------- */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:system-ui,sans-serif;
}

body{
background:#ffffff;
color:#111;
}

a{
text-decoration:none;
color:inherit;
}

/* -------------------------
CONTAINER
------------------------- */

.container{
max-width:1300px;
margin:auto;
padding:0 5%;
}

/* -------------------------
TOPBAR
------------------------- */

.topbar{
height:38px;
backdrop-filter:blur(12px);
border-bottom:1px solid rgba(255,255,255,0.12);
display:flex;
align-items:center;
transition:all .4s ease;
}

.topbar-inner{
width:100%;
max-width:1300px;
margin:0 auto;
padding:0 5%;
display:flex;
justify-content:space-between;
align-items:center;
}

.topbar-socials{
display:flex;
gap:14px;
}

.topbar-socials img{
width:18px;
height:18px;
filter:brightness(0) invert(1);
opacity:.85;
transition:.25s ease;
}

.topbar-socials a:hover img{
opacity:1;
transform:scale(1.12);
}

.topbar-right span{
font-size:13px;
color:rgba(255,255,255,0.85);
}

.topbar.hide{
height:0;
opacity:0;
overflow:hidden;
border-bottom:none;
transform:translateY(-100%);
}

/* -------------------------
HEADER
------------------------- */

header{
position:fixed;
top:0;
width:100%;
z-index:1000;
background:rgba(20,40,100,0.5);
backdrop-filter:blur(14px);
border-bottom:1px solid rgba(255,255,255,0.15);
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
max-width:1300px;
margin:0 auto;
padding:0 5%;
height:80px;
transition:all .35s ease;
}

header.compact nav{
height:65px;
}

.logo img{
height:42px;
width:auto;
display:block;
}

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

.nav-links{
display:flex;
gap:26px;
}

.nav-links a{
color:white;
opacity:.85;
font-size:15px;
transition:.2s;
}

.nav-links a:hover{
opacity:1;
}

/* -------------------------
DROPDOWN
------------------------- */

.dropdown{
position:relative;
}

.dropdown-menu{
position:absolute;
top:100%;
left:0;
background:#ffffff;
min-width:220px;
padding:10px 0;
border-radius:8px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
opacity:0;
visibility:hidden;
transform:translateY(10px);
transition:all .3s ease;
z-index:1000;
}

.dropdown-menu a{
display:block;
padding:12px 20px;
font-size:14px;
color:black;
}

.dropdown-menu a:hover{
background:#d7d7d7;
padding-left:24px;
}

.dropdown:hover .dropdown-menu{
opacity:1;
visibility:visible;
transform:translateY(0);
}

/* -------------------------
BOTONES
------------------------- */

.btn{
padding:16px 28px;
border-radius:12px;
font-weight:600;
font-size:16px;
border:none;
cursor:pointer;
transition:.25s ease;
}

.btn-destac{

background:linear-gradient(
270deg,
rgba(255,233,170,0.8),
rgba(255,197,24,0.6),
rgba(181,45,200,0.8),
rgba(60,21,149,0.8),
rgba(33,10,87,0.9)
);

border:1px solid #747474;
color:white;
background-size:300% 300%;
animation:gradientShift 6s ease infinite;
}

.btn-destac2{

background:linear-gradient(
90deg,
rgba(181,45,200,0.8),
rgba(60,21,149,0.8),
rgba(33,10,87,0.9)
);

border:1px solid #747474;
color:white;
background-size:300% 300%;
animation:gradientShift 7s ease infinite;
padding:9px 15px;
}

.btn:hover{
transform:translateY(-3px);
box-shadow:0 12px 30px rgba(0,0,0,.25);
}

/* HERO */

.boutique-hero{
padding:130px 0 50px;
background:#ffffff;
}

.boutique-hero-inner{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.boutique-hero h1{
font-size:48px;
margin-bottom:20px;
}

.boutique-hero p{
font-size:18px;
line-height:1.6;
margin-bottom:30px;
}

.boutique-hero-media img{
width:100%;
border-radius:16px;
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}



/* SERVICES */

.boutique-services{
background:#f5f6fa;
padding:100px 0;
}

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

.service-card{
background:white;
padding:35px;
border-radius:14px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
transition:all .3s ease;
}
.service-card p{
    padding: 10px 0;
}
.service-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 35px rgba(0,0,0,0.08);
}

.service-icon{
width:52px;
height:52px;
background:#f0f2f8;
border-radius:10px;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:20px;
}



/* RESULTS */

.boutique-results{
background:linear-gradient(135deg,#070f22,#0b1d3a);
color:white;
padding:120px 0;
}

.boutique-results h2{
    font-size: 43px;
}

.boutique-results p{
    padding: 25px 0;
}

.results-inner{
display:grid;
grid-template-columns:1.2fr 1fr;
gap:60px;
align-items:center;
}

.results-stats{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
margin-top:30px;
}

.stat{
background:rgba(255,255,255,0.05);
padding:25px;
border-radius:10px;
}

.stat .number{
font-size:36px;
font-weight:700;
color:#ffc400;
}

/* VALUES */

.boutique-values{
padding:100px 0;
background:#ffffff;
}

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

.value-card{
padding:40px;
background:#f5f6fa;
border-radius:14px;
}

.value-number{
font-size:34px;
font-weight:700;
color:#ffc400;
display:block;
margin-bottom:10px;
}

/* CTA */

.boutique-cta{
background:#f5f6fa;
padding:100px 0;
text-align:center;
}

.boutique-cta h2{
font-size:36px;
margin-bottom:20px;
}

.boutique-cta p{
max-width:700px;
margin:auto;
margin-bottom:35px;
font-size:18px;
}

_______________

/* -------------------------
ANIMACIÓN
------------------------- */

.fade-up{
opacity:0;
transform:translateY(40px);
animation:fadeUp 1s ease forwards;
}

@keyframes fadeUp{

to{
opacity:1;
transform:translateY(0);
}

}

@keyframes gradientShift{

0%{background-position:0% 50%}
50%{background-position:100% 50%}
100%{background-position:0% 50%}

}

.medios-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: auto;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    margin-bottom: 40px;
    color: #3c1595;
}

.medios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.medio-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.medio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}


.medio-logo{
    position:absolute;
    top:18px;
    right:18px;
    background:linear-gradient(
        90deg,
        rgba(255,255,255,0.95),
        rgba(255,255,255,0.75)
    );
    padding:20px;
    border-radius:20px;
    height:35px;
    display:flex;
    align-items:center;
}

.medio-logo img{
     width:100px !important;
    height:auto !important;
    transform-origin:left center;
}

.medio-img {
    position: relative;
}

.medio-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.medio-icon {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ffffff;
    padding: 10px;
    border-radius: 10px;
}

.medio-content {
    padding: 25px;
}

.medio-content h3 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
}

.line {
    width: auto;
    height: 2px;
    background: rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

.medio-content p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #444;
}

/* ================= RADAR ================= */

.radar-section {
    padding: 80px 0;
    background: black;
}

.radar-video a{
  display:inline-block;
  position:relative;
}

.radar-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
    overflow: hidden;
}

.radar-img {
    position: relative;
    display: block;
    margin: 0 auto 30px;

}
.radar-img img {
     display:block;
    border-radius: 12px;
    width: auto;
    height: 668px; /* ajusta este valor */
    object-fit: cover;
}

.radar-content {
    padding: 60px;
    color: #ffffff;
}

.radar-icon {
    background: #ffffff;
    display: inline-block;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.radar-sub {
    display: block;
    color: #ffc518;
    font-size: 13px;
    margin-bottom: 20px;
}

.radar-content p{
    padding: 0 0 21px;
}
.radar-video {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.radar-video img {
    width: 100%;
    border-radius: 12px;
    display: block;
    
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffc518;
    color: #000;
    font-size: 24px;
    padding: 14px 18px;
    border-radius: 50%;
    text-decoration: none;
}

.medio-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffffff;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.medio-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}


.insta-wrapper {
    transform: scale(1.4); /* ajusta aquí */
    transform-origin: top center;
    height: 500px; /* ajusta hasta que corte justo antes del caption */
    overflow: hidden;
    border-radius: 20px;
}

.play-button {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    left: 43%;
      top:41%;
    background: linear-gradient(
        270deg,
        rgba(255, 233, 170),
        rgba(255, 197, 24),
        rgba(181, 45, 200),
        rgba(60, 21, 149),
        rgba(33, 10, 87)
    );
    border: 1px solid #747474ff;
    color: white;
    background-size: 300% 300%;
    animation: gradientShift 10s ease infinite;
}

.medio-logo {
    height: 40px;
    margin-bottom: 15px;
    object-fit: contain;
}


.play-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    border-left: 18px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

/* ===============================
   CIERRE MEDIOS
================================ */

.medios-cierre{
  padding:120px 0;
  background:linear-gradient(
    180deg,
    #ffffff 0%,
    #f6f7fb 100%
  );
  position:relative;
  overflow:hidden;
}

/* brillo decorativo suave */
.medios-cierre::before{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  background:radial-gradient(circle, rgba(88,60,220,0.18) 0%, rgba(88,60,220,0) 70%);
  top:-120px;
  left:50%;
  transform:translateX(-50%);
  filter:blur(40px);
  z-index:0;
}

.medios-container{
  max-width:850px;
  margin:auto;
  padding:0 40px;
  text-align:center;
  position:relative;
  z-index:2;
}

/* título */

.medios-cierre h2{
  font-family:"Space Grotesk", sans-serif;
  font-size:2.4rem;
  font-weight:700;
  margin-bottom:24px;
  color:#0f1430;
  line-height:1.2;

  animation:fadeUp 1s ease forwards;
}

/* línea decorativa */

.medios-cierre h2::after{
  content:"";
  display:block;
  width:70px;
  height:3px;
  margin:18px auto 0;
  border-radius:10px;

  background:linear-gradient(
    90deg,
    #b52dc8,
    #3c1595
  );
}

/* texto */

.medios-cierre p{
  font-size:1.1rem;
  line-height:1.75;
  color:#4b4b55;
  max-width:680px;
  margin:0 auto;

  animation:fadeUp 3s ease forwards;
}

/* ===============================
   ANIMACIÓN
================================ */

@keyframes fadeUp{

  from{
    opacity:0;
    transform:translateY(200px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}

@media (max-width: 850px) {
    .nav-links {
        display: none;
    }
}
