*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{
  --pink:#e51b85;
  --teal:#18b7b3;
  --dark:#112f45;
  --light:#f7f9fb;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:var(--light);
  color:var(--dark);
  line-height:1.6;
  overflow-x:hidden;
}

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

.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:100;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(17,47,69,.08);
  box-shadow:0 8px 28px rgba(17,47,69,.06);
}

.nav{
  min-height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
}

.brand img{
  width:210px;
  height:auto;
  object-fit:contain;
  background:transparent;
  border-radius:0;
  padding:0;
}

.brand span{
  display:none;
}

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

.menu a{
  color:var(--dark);
  text-decoration:none;
  font-weight:700;
  font-size:15px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:15px 26px;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
  transition:.2s ease;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-primary{
  background:var(--pink);
  color:white;
  box-shadow:0 14px 34px rgba(229,27,133,.24);
}

.btn-secondary{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.38);
  color:white;
  backdrop-filter:blur(6px);
}

.btn-white{
  background:white;
  color:var(--pink);
}

.hero{
  position:relative;
  min-height:700px;
  background:
    linear-gradient(90deg, rgba(7,24,37,.88) 0%, rgba(7,24,37,.68) 42%, rgba(7,24,37,.16) 100%),
    url("hero-bg-clean.jpg") center center/cover no-repeat;
  display:flex;
  align-items:center;
  overflow:hidden;
  padding-top:86px;
}

.hero::after{
  content:"";
  position:absolute;
  left:-6%;
  right:-6%;
  bottom:-1px;
  height:105px;
  background:var(--light);
  border-radius:50% 50% 0 0 / 100% 100% 0 0;
  z-index:1;
}

.hero-content{
  position:relative;
  z-index:2;
}

.hero-text{
  max-width:620px;
  color:white;
  padding-bottom:128px;
  padding-top:42px;
}

.hero-line{
  width:92px;
  height:5px;
  border-radius:999px;
  background:var(--teal);
  margin-bottom:24px;
}

.hero h1{
  font-size:clamp(40px,4.4vw,60px);
  line-height:1.08;
  letter-spacing:-.045em;
  margin-bottom:22px;
  font-weight:900;
  max-width:620px;
}

.hero p{
  font-size:20px;
  line-height:1.55;
  color:rgba(255,255,255,.92);
  margin-bottom:30px;
  max-width:560px;
}

.hero-buttons{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.services{
  position:relative;
  z-index:5;
  margin-top:-28px;
  padding-bottom:105px;
}

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

.service-card{
  background:white;
  border-radius:26px;
  padding:30px 22px;
  box-shadow:0 18px 50px rgba(17,47,69,.10);
  text-align:center;
  min-height:270px;
}

.service-icon{
  width:78px;
  height:78px;
  margin:0 auto 20px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  background:linear-gradient(135deg,rgba(229,27,133,.12),rgba(24,183,179,.12));
}

.service-card h3{
  font-size:24px;
  line-height:1.14;
  margin-bottom:14px;
  color:var(--dark);
}

.service-card p{
  font-size:16px;
  color:#68798b;
}

.about{
  padding:100px 0;
}

.about-grid{
  display:grid;
  grid-template-columns:1fr .85fr;
  gap:70px;
  align-items:center;
}

.section-tag{
  display:inline-block;
  padding:10px 18px;
  border-radius:999px;
  background:rgba(24,183,179,.12);
  color:var(--teal);
  font-weight:800;
  margin-bottom:22px;
}

.about h2{
  font-size:52px;
  line-height:1.08;
  letter-spacing:-.04em;
  margin-bottom:24px;
}

.about p{
  font-size:19px;
  color:#647588;
  margin-bottom:24px;
}

.about-list{
  padding-left:22px;
}

.about-list li{
  margin-bottom:12px;
  font-size:17px;
}

.about-box{
  background:linear-gradient(135deg,var(--pink),#c41673);
  padding:52px;
  border-radius:34px;
  color:white;
  box-shadow:0 28px 70px rgba(229,27,133,.22);
}

.about-box h3{
  font-size:38px;
  line-height:1.1;
  margin-bottom:20px;
}

.about-box p{
  color:white;
  margin:0;
}

.cta{
  padding:110px 0;
  background:linear-gradient(135deg,var(--dark),#234c67);
  text-align:center;
  color:white;
}

.cta h2{
  font-size:52px;
  line-height:1.08;
  margin-bottom:18px;
  letter-spacing:-.035em;
}

.cta p{
  font-size:21px;
  margin-bottom:34px;
  color:rgba(255,255,255,.84);
}

.footer{
  padding:30px 0;
  background:#0ea8a8;
  color:white;
}

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

@media(max-width:1100px){
  .services-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .about-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:820px){
  .menu,
  .desktop-btn{
    display:none;
  }

  .nav{
    min-height:76px;
  }

  .brand span{
    font-size:20px;
  }

  .brand img{
    width:170px;
    height:auto;
  }

  .hero{
    min-height:680px;
    padding-top:76px;
    background:
      linear-gradient(180deg, rgba(7,24,37,.92) 0%, rgba(7,24,37,.72) 100%),
      url("hero-bg-clean.jpg") 66% center/cover no-repeat;
  }

  .hero-text{
    padding-bottom:58px;
  }

  .hero::after{
    height:84px;
  }

  .hero h1{
    font-size:40px;
  }

  .hero p{
    font-size:19px;
  }

  .services{
    margin-top:-20px;
  }

  .services-grid{
    grid-template-columns:1fr;
  }

  .service-card{
    min-height:auto;
  }

  .about h2,
  .cta h2{
    font-size:38px;
  }

  .about-box{
    padding:34px;
  }

  .about-box h3{
    font-size:30px;
  }

  .footer-content{
    flex-direction:column;
    text-align:center;
  }
}
.decus-credit{
  opacity:.72;
  font-size:13px;
}

.decus-credit a{
  color:white;
  text-decoration:none;
  transition:.2s ease;
}

.decus-credit a:hover{
  opacity:1;
  text-decoration:underline;
}


/* Galería profesional */
.team-gallery{
  position:relative;
  padding:110px 0 70px;
  overflow:hidden;
  background:linear-gradient(180deg, #f7f9fb 0%, #ffffff 100%);
}

.team-gallery::before{
  content:"";
  position:absolute;
  width:320px;
  height:320px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(24,183,179,.10) 0%, rgba(24,183,179,0) 70%);
  top:-120px;
  left:-120px;
}

.team-gallery::after{
  content:"";
  position:absolute;
  width:320px;
  height:320px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(229,27,133,.08) 0%, rgba(229,27,133,0) 70%);
  bottom:-120px;
  right:-120px;
}

.team-heading{
  position:relative;
  z-index:2;
  text-align:center;
  max-width:860px;
  margin:0 auto 60px;
}

.team-heading h2{
  font-size:64px;
  line-height:1.04;
  letter-spacing:-.05em;
  color:var(--dark);
  margin-bottom:24px;
}

.team-heading p{
  font-size:24px;
  line-height:1.6;
  color:#647588;
}

.gallery-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  grid-template-rows:320px 320px;
  gap:22px;
}

.gallery-item{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  box-shadow:0 18px 50px rgba(17,47,69,.10);
  background:white;
}

.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .45s ease;
}

.gallery-item::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(17,47,69,.18), rgba(17,47,69,0));
  pointer-events:none;
}

.gallery-item:hover img{
  transform:scale(1.03);
}

.gallery-large{
  grid-row:span 2;
}

.gallery-wide{
  grid-column:span 2;
}

@media(max-width:980px){
  .team-heading h2{
    font-size:48px;
  }

  .gallery-grid{
    grid-template-columns:1fr;
    grid-template-rows:auto;
  }

  .gallery-large,
  .gallery-wide{
    grid-column:auto;
    grid-row:auto;
  }

  .gallery-item{
    height:320px;
  }
}

@media(max-width:640px){
  .team-gallery{
    padding:90px 0 50px;
  }

  .team-heading h2{
    font-size:38px;
  }

  .team-heading p{
    font-size:19px;
  }

  .gallery-item{
    height:260px;
    border-radius:22px;
  }
}
