:root{
  --rw-blue:#4578FC;
  --rw-blue-dark:#315fda;
  --rw-black:#0b0c10;
  --rw-black-2:#111318;
  --rw-black-3:#0f1117;
  --rw-muted:#c8cbd4;
  --rw-white:#ffffff;
  --rw-border:rgba(255,255,255,.08);
  --rw-shadow:0 18px 40px rgba(0,0,0,.28);
}

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

html{
  scroll-behavior:smooth;
}

body{
  background:var(--rw-black);
  color:var(--rw-white);
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
}

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

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

.section{
  padding:100px 0;
}

.section-heading{
  text-align:center;
  max-width:820px;
  margin:0 auto 50px auto;
}

.section-heading h2{
  font-size:clamp(32px, 4vw, 48px);
  line-height:1.1;
  margin-bottom:16px;
  font-weight:900;
}

.section-heading p{
  color:var(--rw-muted);
  line-height:1.8;
  font-size:16px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 28px;
  border-radius:14px;
  font-weight:800;
  transition:.32s ease;
  border:1px solid transparent;
}

.btn-primary{
  background:var(--rw-blue);
  color:var(--rw-white);
  box-shadow:0 12px 28px rgba(69,120,252,.22);
}

.btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 34px rgba(69,120,252,.34);
  filter:brightness(1.04);
}

.equal-btn{
  min-width:220px;
}

@keyframes fadeUp{
  from{opacity:0; transform:translateY(32px);}
  to{opacity:1; transform:translateY(0);}
}

@keyframes fadeLeft{
  from{opacity:0; transform:translateX(-28px);}
  to{opacity:1; transform:translateX(0);}
}

@keyframes marquee{
  0%{transform:translateX(0);}
  100%{transform:translateX(-50%);}
}

.reveal{
  opacity:0;
  transform:translateY(30px);
  transition:all .9s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* HOVER PREMIUM GENERAL */
.interactive-card{
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease, filter .35s ease;
  cursor:pointer;
}

.interactive-card:hover{
  transform:translateY(-8px);
  box-shadow:0 24px 44px rgba(0,0,0,.34);
  border-color:rgba(69,120,252,.55) !important;
  filter:brightness(1.03);
}

/* =========================
   HEADER PREMIUM LIMPIO
========================= */

.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:9999;
  background:transparent;
  border-bottom:1px solid transparent;
  transition:
    background .35s ease,
    backdrop-filter .35s ease,
    border-color .35s ease,
    box-shadow .35s ease;
}

.site-header.scrolled{
  background:rgba(8,10,16,.72);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.08);
  box-shadow:0 12px 28px rgba(0,0,0,.28);
}

.header-inner{
  min-height:84px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}

.logo img{
  height:44px;
  width:auto;
  display:block;
  transition:transform .3s ease, filter .3s ease;
}

.logo img:hover{
  transform:scale(1.04);
  filter:drop-shadow(0 0 8px rgba(69,120,252,.45));
}

.nav-menu{
  display:flex;
  align-items:center;
  gap:28px;
  transition:.35s ease;
}

.nav-menu a{
  font-weight:600;
  color:#fff;
  position:relative;
  transition:.25s ease;
}

.nav-menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-7px;
  width:0;
  height:2px;
  background:var(--rw-blue);
  transition:width .3s ease;
}

.nav-menu a:hover{
  color:var(--rw-blue);
}

.nav-menu a:hover::after{
  width:100%;
}

.menu-cta{
  background:var(--rw-blue);
  padding:10px 18px;
  border-radius:999px;
  color:#fff !important;
  font-weight:700;
  transition:.25s ease;
}

.menu-cta::after{
  display:none;
}

.menu-cta:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(69,120,252,.35);
}

.menu-btn{
  display:none;
  width:42px;
  height:42px;
  border:none;
  background:transparent;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:6px;
  padding:0;
}

.menu-btn span{
  width:22px;
  height:2.5px;
  background:#fff;
  border-radius:99px;
  transition:.3s ease;
}

.menu-btn.active span:nth-child(1){
  transform:translateY(8.5px) rotate(45deg);
}

.menu-btn.active span:nth-child(2){
  opacity:0;
}

.menu-btn.active span:nth-child(3){
  transform:translateY(-8.5px) rotate(-45deg);
}

/* HERO */
.hero{
  position:relative;
}

.hero-slider{
  position:relative;
  -webkit-user-select:none;
  user-select:none;
  cursor:grab;
}

.hero-slider:active{
  cursor:grabbing;
}

.hero-slide{
  min-height:78vh;
  max-height:820px;
  display:none;
  align-items:center;
  background-size:cover;
  background-position:center;
  position:relative;
  overflow:hidden;
  -webkit-user-select:none;
  user-select:none;
}

.hero-slide.active{
  display:flex;
  animation:fadeUp .8s ease;
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:700px;
  padding-top:40px;
  padding-bottom:90px;
}

.hero-content h1{
  font-size:clamp(34px, 4.2vw, 58px);
  line-height:1.1;
  font-weight:900;
  margin-bottom:18px;
  animation:fadeLeft .9s ease;
}

.hero-content h1 span{
  color:var(--rw-blue);
}

.hero-content p{
  max-width:620px;
  color:var(--rw-muted);
  font-size:16px;
  line-height:1.9;
  animation:fadeLeft 1.1s ease;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:26px;
}

.hero-controls{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:28px;
  width:min(1240px, 92%);
  display:flex;
  align-items:center;
  justify-content:space-between;
  z-index:3;
}

.hero-arrow{
  width:48px;
  height:48px;
  border:none;
  border-radius:14px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:28px;
  cursor:pointer;
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.14);
  transition:.25s ease;
}

.hero-arrow:hover{
  background:rgba(69,120,252,.16);
  border-color:rgba(69,120,252,.5);
}

.hero-dots{
  display:flex;
  gap:10px;
}

.hero-dot{
  width:12px;
  height:12px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,.28);
  cursor:pointer;
  transition:.25s ease;
}

.hero-dot.active{
  background:var(--rw-blue);
  transform:scale(1.18);
}

/* ABOUT */
.about-summary{
  background:linear-gradient(180deg, rgba(255,255,255,.015), rgba(255,255,255,0)), var(--rw-black);
}

.about-symmetric{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:22px;
  align-items:stretch;
}

.about-box{
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--rw-border);
  border-radius:22px;
  overflow:hidden;
  box-shadow:var(--rw-shadow);
  min-height:420px;
}

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

.center-box{
  padding:28px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.center-box img{
  width:240px;
  max-width:100%;
  margin-bottom:20px;
}

.center-box p{
  color:var(--rw-muted);
  line-height:1.8;
  font-size:15px;
  margin-bottom:18px;
}

.about-mini-points{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:20px;
  width:100%;
}

.about-mini-points span{
  padding:12px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color:var(--rw-muted);
  font-size:14px;
  font-weight:600;
}

/* SERVICES */
.services{
  background:var(--rw-black-3);
}

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

.visual-card{
  position:relative;
  min-height:310px;
  overflow:hidden;
  border-radius:22px;
  display:block;
  border:1px solid var(--rw-border);
  box-shadow:var(--rw-shadow);
}

.visual-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .55s ease;
}

.visual-card:hover img{
  transform:scale(1.08);
}

.service-overlay{
  position:absolute;
  inset:0;
  padding:24px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  background:linear-gradient(to top, rgba(0,0,0,.92), rgba(0,0,0,.12));
}

.service-overlay h3{
  font-size:28px;
  margin-bottom:10px;
  color:#fff;
  font-weight:900;
}

.service-overlay p{
  color:#eef1f8;
  line-height:1.7;
  font-size:15px;
}

.services-btn-wrap{
  margin-top:34px;
  display:flex;
  justify-content:center;
}

.services-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 28px;
  border-radius:14px;
  background:var(--rw-blue);
  color:#fff;
  font-weight:800;
  transition:.3s ease;
  box-shadow:0 12px 28px rgba(69,120,252,.22);
}

.services-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 34px rgba(69,120,252,.34);
}

/* TRAJECTORY */
.logo-marquee{
  width:100%;
  overflow:hidden;
  padding:32px 0;
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
}

.logo-track{
  display:flex;
  width:max-content;
  align-items:center;
  animation:marquee 26s linear infinite;
}

.logo-marquee:hover .logo-track{
  animation-play-state:paused;
}

.logo-item{
  width:240px;
  height:96px;
  margin-right:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  flex-shrink:0;
  box-shadow:var(--rw-shadow);
}

.logo-item img{
  max-height:48px;
  max-width:100%;
  width:auto;
  height:auto;
  object-fit:contain;
  display:block;
  transition:transform .3s ease, filter .3s ease;
}

.logo-item:hover img{
  transform:scale(1.05);
  filter:brightness(1.08);
}

.trajectory-cards{
  margin-top:30px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

.trajectory-card{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  border:1px solid var(--rw-border);
  box-shadow:var(--rw-shadow);
  min-height:280px;
}

.trajectory-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.trajectory-btn-wrap{
  margin-top:28px;
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
}

.trajectory-overlay{
  position:absolute;
  inset:0;
  padding:24px;
  display:flex;
  align-items:flex-end;
  background:linear-gradient(to top, rgba(0,0,0,.85), rgba(0,0,0,.2), transparent);
}

.trajectory-overlay h3{
  color:#fff;
  font-size:26px;
  font-weight:900;
}

/* CTA */
.premium-cta{
  padding-top:20px;
}

.premium-cta-box{
  background:linear-gradient(135deg, rgba(69,120,252,.16), rgba(255,255,255,.03)), #10131b;
  border:1px solid rgba(69,120,252,.22);
  border-radius:28px;
  padding:30px;
  display:grid;
  grid-template-columns:.95fr 1.25fr .95fr;
  gap:26px;
  align-items:center;
  box-shadow:0 20px 45px rgba(0,0,0,.25);
  overflow:hidden;
}

.premium-cta-image{
  height:260px;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
}

.premium-cta-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.premium-cta-text h2{
  font-size:clamp(28px, 4vw, 42px);
  margin-bottom:12px;
  font-weight:900;
}

.premium-cta-text p{
  color:var(--rw-muted);
  line-height:1.8;
  font-size:16px;
}

.premium-cta-actions{
  display:flex;
  flex-direction:column;
  gap:14px;
  align-items:center;
  justify-content:center;
}

.premium-cta-actions .btn{
  width:100%;
  max-width:260px;
}

/* CONTACT */
.contact-summary{
  background:var(--rw-black-3);
}

.contact-layout{
  display:grid;
  grid-template-columns:.85fr 1.3fr .85fr;
  gap:24px;
  align-items:stretch;
}

.contact-side-image{
  border-radius:22px;
  overflow:hidden;
  border:1px solid var(--rw-border);
  box-shadow:var(--rw-shadow);
  min-height:100%;
}

.contact-side-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.contact-center{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.contact-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:20px;
  align-items:stretch;
}

.contact-card{
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--rw-border);
  border-radius:20px;
  padding:26px 20px;
  box-shadow:var(--rw-shadow);
  text-align:center;
  min-height:170px;
  height:170px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.contact-card h3{
  color:var(--rw-blue);
  font-size:20px;
  margin-bottom:12px;
  font-weight:800;
  line-height:1.2;
}

.contact-card p{
  color:var(--rw-muted);
  line-height:1.5;
  font-size:15px;
  max-width:220px;
  margin:0 auto;
  word-break:break-word;
}

.contact-page-btn{
  display:flex;
  justify-content:center;
  margin-top:4px;
}

/* FOOTER */
footer{
  background:#07080c;
  border-top:1px solid rgba(255,255,255,.06);
}

.footer-main{
  display:grid;
  grid-template-columns:1.2fr .9fr .9fr;
  gap:60px;
  padding:56px 0;
  align-items:start;
}

.footer-brand,
.footer-contact-column,
.footer-social-column{
  min-width:0;
}

.footer-social-column{
  justify-self:start;
}

.footer-brand img{
  width:320px;
  max-width:100%;
  height:auto;
  object-fit:contain;
  margin-bottom:16px;
  display:block;
}

.footer-brand p{
  color:var(--rw-muted);
  line-height:1.8;
  font-size:15px;
  max-width:360px;
}

.footer-column h4{
  margin-bottom:16px;
  font-size:18px;
  font-weight:800;
}

.footer-column p{
  display:block;
  color:var(--rw-muted);
  margin-bottom:10px;
  line-height:1.7;
}

.footer-socials{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.footer-socials a{
  width:44px;
  height:44px;
  border-radius:12px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.25s ease;
}

.footer-socials a:hover{
  transform:translateY(-3px);
  border-color:rgba(69,120,252,.5);
  box-shadow:0 14px 28px rgba(0,0,0,.26);
}

.footer-socials img{
  width:22px;
  height:22px;
  object-fit:contain;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.06);
  padding:18px 0 8px 0;
  text-align:center;
  color:#9fa4b1;
  font-size:14px;
}

.footer-link{
  display:block;
  color:var(--rw-muted);
  margin-bottom:10px;
  line-height:1.7;
  transition:all .25s ease;
}

.footer-link:hover{
  color:var(--rw-blue);
  transform:translateX(3px);
}

/* CTA HABLEMOS DE TU EVENTO - MOBILE FIX */
@media (max-width:768px){
  .premium-cta-box{
    display:flex;
    flex-direction:column;
    gap:20px;
  }

  .premium-cta-image{
    order:1;
    width:100%;
  }

  .premium-cta-text{
    order:2;
    text-align:center;
  }

  .premium-cta-actions{
    order:3;
    display:flex;
    flex-direction:column;
    gap:12px;
    align-items:center;
  }

  .premium-cta-actions .btn{
    width:100%;
    max-width:320px;
  }

  .premium-cta-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:20px;
  }
}

/* WHATSAPP PREMIUM FLOAT */
.wa-floating-wrap{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:9998;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:14px;
  pointer-events:none;
}

.wa-floating-btn,
.wa-chat-card{
  pointer-events:auto;
}

.wa-floating-btn{
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:10px 14px 10px 12px;
  border-radius:999px;
  text-decoration:none;
  color:#fff;
  background:linear-gradient(135deg, #12d766, #0dbb57);
  box-shadow:
    0 14px 30px rgba(18,215,102,.26),
    0 4px 16px rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.12);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    filter .25s ease;
  position:relative;
}

.wa-floating-btn:hover{
  transform:translateY(-3px) scale(1.02);
  box-shadow:
    0 18px 34px rgba(18,215,102,.34),
    0 8px 18px rgba(0,0,0,.2);
  filter:brightness(1.03);
}

.wa-floating-icon{
  width:40px;
  height:40px;
  border-radius:50%;
  background:rgba(255,255,255,.14);
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}

.wa-floating-icon img{
  width:22px;
  height:22px;
  object-fit:contain;
  display:block;
}

.wa-floating-text{
  font-size:17px;
  font-weight:800;
  letter-spacing:-.01em;
  white-space:nowrap;
}

.wa-chat-card{
  width:min(320px, calc(100vw - 32px));
  background:rgba(10,12,18,.96);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  box-shadow:0 20px 40px rgba(0,0,0,.3);
  padding:18px 18px 16px;
  position:relative;
  opacity:0;
  visibility:hidden;
  transform:translateY(12px) scale(.96);
  transition:
    opacity .32s ease,
    transform .32s ease,
    visibility .32s ease;
}

.wa-chat-card.show{
  opacity:1;
  visibility:visible;
  transform:translateY(0) scale(1);
}

.wa-chat-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(69,120,252,.16);
  border:1px solid rgba(69,120,252,.28);
  color:#fff;
  font-size:12px;
  font-weight:700;
  margin-bottom:12px;
}

.wa-chat-card h4{
  font-size:22px;
  line-height:1.08;
  margin-bottom:10px;
  color:#fff;
  font-weight:900;
}

.wa-chat-card p{
  color:var(--rw-muted);
  font-size:14px;
  line-height:1.75;
  margin-bottom:16px;
}

.wa-chat-btn{
  display:inline-flex;
  width:100%;
  justify-content:center;
  align-items:center;
  padding:13px 18px;
  border-radius:14px;
  background:linear-gradient(135deg, #12d766, #0dbb57);
  color:#fff;
  font-weight:800;
  text-decoration:none;
  transition:transform .25s ease, box-shadow .25s ease;
}

.wa-chat-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 24px rgba(18,215,102,.28);
}

.wa-chat-close{
  position:absolute;
  top:10px;
  right:10px;
  width:34px;
  height:34px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.06);
  color:#fff;
  font-size:20px;
  line-height:1;
  cursor:pointer;
  transition:.2s ease;
}

.wa-chat-close:hover{
  background:rgba(255,255,255,.12);
}

.wa-floating-btn::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:999px;
  box-shadow:0 0 0 0 rgba(18,215,102,.45);
  animation:waPulse 2.6s infinite;
  pointer-events:none;
}

@keyframes waPulse{
  0%{
    box-shadow:0 0 0 0 rgba(18,215,102,.35);
  }
  70%{
    box-shadow:0 0 0 16px rgba(18,215,102,0);
  }
  100%{
    box-shadow:0 0 0 0 rgba(18,215,102,0);
  }
}

/* RESPONSIVE */
@media (max-width: 1180px){
  .premium-cta-box{
    grid-template-columns:1fr 1fr;
  }

  .premium-cta-actions{
    grid-column:1 / -1;
    flex-direction:row;
    flex-wrap:wrap;
  }
}

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

  .about-symmetric,
  .footer-main,
  .contact-layout{
    grid-template-columns:1fr;
  }

  .trajectory-cards{
    grid-template-columns:1fr;
  }

  .footer-main{
    grid-template-columns:1fr;
    gap:30px;
  }

  .footer-contact-column,
  .footer-social-column{
    justify-self:start;
  }

  .footer-brand p{
    max-width:none;
  }
}

@media (max-width: 980px){
  .header-inner{
    min-height:74px;
  }

  .logo img{
    height:38px;
  }

  .menu-btn{
    display:flex !important;
  }

  .nav-menu{
    position:absolute;
    top:74px;
    left:0;
    right:0;
    background:rgba(7,8,12,.98);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(255,255,255,.08);
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
    padding:20px 4%;
    opacity:0;
    visibility:hidden;
    transform:translateY(-10px);
    pointer-events:none;
  }

  .nav-menu.open{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
    pointer-events:auto;
  }

  .nav-menu a{
    width:100%;
    padding:6px 0;
  }

  .menu-cta{
    width:100%;
    display:inline-flex;
    justify-content:center;
    text-align:center;
  }
}

@media (min-width: 981px){
  .menu-btn{
    display:none !important;
  }

  .nav-menu{
    display:flex !important;
    position:static !important;
    opacity:1 !important;
    visibility:visible !important;
    transform:none !important;
    pointer-events:auto !important;
    background:transparent !important;
    border-bottom:none !important;
    padding:0 !important;
    flex-direction:row !important;
    align-items:center !important;
    gap:28px !important;
  }
}

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

@media (max-width: 860px){
  .hero-slide{
    min-height:86vh;
  }

  .hero-content{
    padding-top:100px;
    padding-bottom:90px;
    max-width:500px;
  }

  .hero-controls{
    bottom:18px;
  }
}

@media (max-width: 768px){
  .wa-floating-wrap{
    right:16px;
    bottom:16px;
  }

  .wa-floating-btn{
    padding:10px;
    border-radius:50%;
    width:58px;
    height:58px;
    justify-content:center;
  }

  .wa-floating-icon{
    width:100%;
    height:100%;
    background:transparent;
  }

  .wa-floating-icon img{
    width:26px;
    height:26px;
  }

  .wa-floating-text{
    display:none;
  }

  .wa-chat-card{
    width:min(300px, calc(100vw - 24px));
  }

  .wa-chat-card h4{
    font-size:20px;
  }
}

@media (max-width: 640px){
  .section{
    padding:78px 0;
  }

  .container{
    width:min(1240px, 94%);
  }

  .services-grid,
  .contact-grid,
  .footer-main{
    grid-template-columns:1fr;
  }

  .hero-actions,
  .premium-cta-actions{
    width:100%;
  }

  .hero-actions .btn,
  .premium-cta-actions .btn{
    width:100%;
  }

  .hero-arrow{
    width:44px;
    height:44px;
  }

  .logo-item{
    min-width:180px;
    height:78px;
  }
}

/* =====================================
   ABOUT PREMIUM INDEX
===================================== */




/* =====================================
   CONTACT PREMIUM INDEX
===================================== */




/* =====================================
   MOBILE OPTIMIZATION FOR THESE SECTIONS
===================================== */

@media (max-width: 1150px){
  .about-premium-grid,
  .contact-premium-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 768px){
  .about-highlights{
    grid-template-columns:1fr;
  }

  .about-premium-actions,
  .contact-premium-actions{
    width:100%;
  }

  .about-premium-actions .btn,
  .contact-premium-actions .btn{
    width:100%;
  }

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

  .about-visual-side{
    grid-template-columns:1fr;
    grid-template-rows:auto auto;
  }

  .about-visual-large,
  .about-visual-small,
  .contact-premium-image-large,
  .contact-premium-image-small{
    min-height:auto;
    aspect-ratio:16 / 9;
  }

  .contact-premium-cards{
    grid-template-columns:1fr;
  }

  .about-premium-content h2,
  .contact-premium-copy h3{
    text-align:center;
  }

  .about-premium-content p,
  .contact-premium-copy p{
    text-align:center;
    margin-left:auto;
    margin-right:auto;
  }

  .about-kicker,
  .contact-kicker{
    margin-left:auto;
    margin-right:auto;
  }
}



.ghost-blue{
  background:rgba(69,120,252,.12);
  border:1px solid rgba(69,120,252,.28);
  color:#fff;
  box-shadow:none;
}

.ghost-blue:hover{
  background:rgba(69,120,252,.18);
}

@media (max-width: 1150px){
  .about-minimal-grid{
    grid-template-columns:1fr;
  }

  .about-minimal-image{
    aspect-ratio:16 / 9;
    min-height:auto;
  }
}

@media (max-width: 768px){
  .about-minimal-actions{
    width:100%;
    flex-direction:column;
    align-items:center;
  }

  .about-minimal-actions .btn{
    width:100%;
    max-width:320px;
  }
}


/* =====================================
   ABOUT STACK INDEX
===================================== */

.about-stack{
  background:linear-gradient(
    180deg,
    rgba(255,255,255,.015),
    rgba(255,255,255,0)
  ), var(--rw-black);
}

.about-stack-wrap{
  max-width:1100px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:28px;
}

.about-stack-card{
  border-radius:28px;
  border:1px solid var(--rw-border);
  background:linear-gradient(
    180deg,
    rgba(255,255,255,.04),
    rgba(255,255,255,.02)
  );
  box-shadow:var(--rw-shadow);
  padding:40px 40px;
  display:grid;
  grid-template-columns:1fr;
  gap:26px;
}

.about-stack-logo{
  width:220px;
  max-width:100%;
  object-fit:contain;
  margin:0 auto;
}

.about-stack-text{
  color:var(--rw-muted);
  line-height:1.9;
  font-size:16px;
  max-width:620px;
}

.about-stack-actions{
  display:flex;
  justify-content:center;
  margin-top:6px;
}

.about-stack-image{
  width:100%;
  border-radius:28px;
  overflow:hidden;
  border:1px solid var(--rw-border);
  box-shadow:var(--rw-shadow);
  aspect-ratio:16 / 9;
}

.about-stack-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}


/* =====================================
   DESKTOP LAYOUT
===================================== */

@media (min-width:900px){

  .about-stack-card{
  position:relative;
  grid-template-columns:420px 1fr;
  align-items:center;
  gap:40px;
}

  .about-stack-logo{
width:320px;
margin:auto;
display:block;
}

  .about-stack-text{
    font-size:17px;
  }

  .about-stack-actions{
    justify-content:flex-start;
  }

}


/* =====================================
   MOBILE
===================================== */

@media (max-width:768px){

  .about-stack-card{
    padding:32px 22px;
    border-radius:22px;
  }

  .about-stack-logo{
    width:180px;
    margin-bottom:6px;
  }

  .about-stack-text{
    font-size:15px;
    line-height:1.85;
    text-align:center;
  }

  .about-stack-actions{
    justify-content:center;
  }

  .about-stack-actions .btn{
    width:100%;
    max-width:320px;
  }

  .about-stack-image{
    border-radius:22px;
    aspect-ratio:16 / 9;
  }

}

.about-stack-content{
display:flex;
flex-direction:column;
justify-content:center;
}

.about-stack-btn{
margin-top:26px;
align-self:center;
min-width:200px;
}

/* GLOW REAL DEL LOGO */
/* =====================================
   SOFT LOGO LIGHT
===================================== */

.about-stack-logo{
  position:relative;
  z-index:2;
}

.about-stack-logo::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:180px;
  height:180px;
  transform:translate(-50%, -50%);
  background:radial-gradient(
    circle,
    rgba(69,120,252,.18) 0%,
    rgba(69,120,252,.10) 35%,
    rgba(69,120,252,.04) 55%,
    transparent 75%
  );
  filter:blur(28px);
  z-index:-1;
  pointer-events:none;
}