:root {
  --bg: #070816;
  --bg-soft: #0c1020;
  --panel: rgba(19, 22, 40, 0.82);
  --panel-2: rgba(26, 30, 51, 0.92);
  --text: #f5f7ff;
  --muted: #a9afc7;
  --line: rgba(255,255,255,0.08);
  --blue: #4f67ff;
  --blue-2: #7a8dff;
  --shadow: 0 20px 60px rgba(0,0,0,0.35);
  --radius: 24px;
  --radius-sm: 18px;
  --max: 1200px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(64,90,255,.18), transparent 35%),
    radial-gradient(circle at 80% 10%, rgba(62,117,255,.18), transparent 28%),
    linear-gradient(180deg, #080915 0%, #05060f 100%);
  color:var(--text);
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{max-width:var(--max);margin:0 auto;padding:0 24px}
.section{padding:84px 0}
.section-tight{padding:56px 0}
.section-divider{border-top:1px solid rgba(255,255,255,.04)}
.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  padding:7px 12px;border-radius:999px;
  border:1px solid rgba(108,126,255,.22);
  background:rgba(52,72,192,.12);color:#8fa2ff;
  font-size:12px;font-weight:700;letter-spacing:.12em;text-transform:uppercase
}
.page-header{position:sticky;top:0;z-index:50;background:rgba(7,8,22,.72);backdrop-filter:blur(18px);border-bottom:1px solid rgba(255,255,255,.05)}
.nav{display:flex;align-items:center;justify-content:space-between;height:78px;gap:24px}
.logo{font-weight:900;font-size:22px;letter-spacing:-.04em}
.logo span{color:var(--blue-2)}
.nav-links{display:flex;gap:28px;align-items:center}
.nav-links a{color:#d4d9ef;font-size:15px;position:relative}
.nav-links a.active::after,.nav-links a:hover::after{content:"";position:absolute;left:0;right:0;bottom:-12px;height:2px;background:linear-gradient(90deg,var(--blue),var(--blue-2));border-radius:999px}
.nav-right{display:flex;align-items:center;gap:18px}
.nav-ghost{color:#dfe4ff;opacity:.82}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;padding:14px 24px;border-radius:999px;border:1px solid rgba(255,255,255,.12);font-weight:700;transition:.22s ease;cursor:pointer}
.btn:hover{transform:translateY(-1px)}
.btn-primary{background:linear-gradient(90deg,var(--blue-2),var(--blue));box-shadow:0 12px 30px rgba(79,103,255,.28);border-color:rgba(125,142,255,.25)}
.btn-secondary{background:rgba(255,255,255,.04)}
.hero{position:relative;overflow:hidden;padding:132px 0 120px;border-bottom:1px solid rgba(255,255,255,.04);min-height:820px;display:flex;align-items:center}
.hero::before{content:"";position:absolute;inset:0;background:
 linear-gradient(180deg, rgba(4,7,18,.18), rgba(4,7,18,.9)),
 radial-gradient(circle at 70% 20%, rgba(96,175,255,.35), transparent 25%),
 radial-gradient(circle at 68% 26%, rgba(255,255,255,.10), transparent 8%),
 linear-gradient(120deg, transparent 56%, rgba(255,255,255,.08) 57%, rgba(255,255,255,0) 74%),
 linear-gradient(135deg, transparent 58%, rgba(255,255,255,.10) 60%, rgba(255,255,255,0) 78%),
 linear-gradient(180deg, rgba(12,17,38,.88), rgba(8,10,22,.98));
 opacity:1}
.hero::after{content:"";position:absolute;right:0;top:0;width:42%;height:100%;background:radial-gradient(circle at 60% 20%, rgba(129,204,255,.32), transparent 20%), radial-gradient(circle at 70% 30%, rgba(255,255,255,.65) 0 1.2%, transparent 1.4%), radial-gradient(circle at 77% 30%, rgba(255,255,255,.65) 0 1.2%, transparent 1.4%), radial-gradient(circle at 84% 30%, rgba(255,255,255,.65) 0 1.2%, transparent 1.4%), radial-gradient(circle at 70% 37%, rgba(255,255,255,.65) 0 1.2%, transparent 1.4%), radial-gradient(circle at 77% 37%, rgba(255,255,255,.65) 0 1.2%, transparent 1.4%), radial-gradient(circle at 84% 37%, rgba(255,255,255,.65) 0 1.2%, transparent 1.4%), linear-gradient(120deg, transparent 18%, rgba(93,165,255,.18) 62%, transparent 63%);opacity:.9;pointer-events:none}
.hero-inner{position:relative;z-index:1;text-align:center;max-width:860px;margin:0 auto}
.hero-title{font-size:clamp(56px,9vw,112px);line-height:.92;letter-spacing:-.06em;margin:26px 0 16px;font-weight:900;text-transform:uppercase}
.hero-title .accent{background:linear-gradient(90deg,#8799ff 0%, #4f67ff 58%, #9ab1ff 100%);-webkit-background-clip:text;background-clip:text;color:transparent}
.hero-sub{max-width:700px;margin:0 auto 24px;color:#d6dbf4;font-size:22px;line-height:1.45}
.hero-micro{margin-bottom:14px;color:#8d96be;font-size:12px;font-weight:700;letter-spacing:.14em;text-transform:uppercase}
.hero-actions{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}
.hero-scroll{margin-top:30px;font-size:11px;letter-spacing:.22em;text-transform:uppercase;color:#7780a7}
.grid-2{display:grid;grid-template-columns:1.05fr .95fr;gap:30px;align-items:center}
.card{background:linear-gradient(180deg,rgba(19,23,42,.92),rgba(13,15,28,.92));border:1px solid rgba(255,255,255,.07);border-radius:var(--radius);box-shadow:var(--shadow)}
.card-soft{background:linear-gradient(180deg,rgba(18,21,37,.78),rgba(12,15,27,.74));border:1px solid rgba(255,255,255,.06);border-radius:var(--radius-sm)}
.awards-image,.video-mock,.product-visual,.office-thumb{position:relative;overflow:hidden}
.awards-image{min-height:350px;background:radial-gradient(circle at 50% 28%, rgba(100,210,255,.7), transparent 18%), radial-gradient(circle at 50% 88%, rgba(255,55,185,.55), transparent 18%), linear-gradient(180deg,#101a30,#050712)}
.trophy{position:absolute;left:50%;top:52%;transform:translate(-50%,-50%);width:170px;height:220px;border-radius:40px 40px 20px 20px;background:linear-gradient(180deg,#d4f2ff 0%, #63c6ff 40%, #142036 100%);filter:drop-shadow(0 18px 40px rgba(79,103,255,.3))}
.trophy::before,.trophy::after{content:"";position:absolute;top:26px;width:48px;height:86px;border:8px solid rgba(170,240,255,.82);border-bottom:none;border-radius:38px 38px 0 0}
.trophy::before{left:-42px}
.trophy::after{right:-42px}
.trophy-base{position:absolute;left:50%;bottom:40px;transform:translateX(-50%);width:140px;height:34px;border-radius:14px;background:linear-gradient(180deg,#8ddfff,#153255)}
.awards-text h2,.section-title{font-size:clamp(34px,4vw,58px);line-height:1.02;letter-spacing:-.05em;margin:16px 0}
.section-title .accent, .awards-text .accent, .split-title .accent{color:var(--blue-2)}
.muted{color:var(--muted)}
.big-copy{font-size:20px;line-height:1.55;color:#d4daf6}
.awards-copy{max-width:520px}
.inline-link{display:inline-flex;align-items:center;gap:8px;color:#9cafef;font-weight:700}
.metrics-grid{display:grid;grid-template-columns:repeat(12,1fr);gap:20px}
.metric-intro{grid-column:span 5;padding:28px;min-height:160px;background:linear-gradient(90deg, rgba(84,108,255,.95), rgba(72,84,255,.68));position:relative;overflow:hidden}
.metric-intro::after{content:"B";position:absolute;right:18px;top:-14px;font-size:180px;line-height:1;font-weight:900;color:rgba(255,255,255,.13)}
.metric-wide{grid-column:span 7;display:flex;align-items:center;justify-content:space-between;padding:28px}
.metric-small{grid-column:span 3;padding:26px 20px;min-height:138px;display:flex;flex-direction:column;justify-content:flex-end}
.metric-number{font-size:64px;font-weight:900;letter-spacing:-.05em;line-height:.95;margin-bottom:10px}
.metric-label{font-size:13px;text-transform:uppercase;letter-spacing:.15em;color:#bfc6ea}
.center-copy{text-align:center;max-width:760px;margin:0 auto 30px}
.products-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.product-card{padding:22px;min-height:200px;display:flex;flex-direction:column;justify-content:space-between;transition:.22s ease}
.product-card:hover,.office-card:hover,.detail-card:hover{transform:translateY(-4px);border-color:rgba(109,127,255,.25);box-shadow:0 20px 50px rgba(0,0,0,.32)}
.product-icon{width:42px;height:42px;border-radius:12px;display:grid;place-items:center;background:rgba(79,103,255,.2);color:#a7b4ff;font-weight:800}
.product-card h3{margin:18px 0 10px;font-size:22px}
.link-row{display:inline-flex;align-items:center;gap:8px;font-size:14px;color:#95a5ff;font-weight:700}
.partners-band{background:#040507;padding:54px 0;border-top:1px solid rgba(255,255,255,.03);border-bottom:1px solid rgba(255,255,255,.03)}
.partner-logos{display:grid;grid-template-columns:repeat(6,1fr);gap:22px;margin-top:34px}
.partner-logo{display:grid;place-items:center;min-height:76px;color:#dfe3f8;font-weight:800;letter-spacing:-.03em;opacity:.82}
.offices-header{display:flex;justify-content:space-between;align-items:flex-end;gap:24px;margin-bottom:28px}
.pill{display:inline-flex;align-items:center;gap:10px;padding:12px 16px;border-radius:999px;border:1px solid rgba(109,127,255,.2);background:rgba(22,28,50,.55);color:#dfe4ff;font-weight:700}
.offices-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:18px}
.office-card{overflow:hidden;transition:.22s ease}
.office-thumb{height:138px;background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02)), radial-gradient(circle at 30% 20%, rgba(255,205,133,.4), transparent 30%), radial-gradient(circle at 75% 35%, rgba(104,178,255,.35), transparent 24%), linear-gradient(135deg,#1e243c,#10131e)}
.office-thumb.city-2{background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.01)), radial-gradient(circle at 30% 20%, rgba(255,171,146,.42), transparent 24%), radial-gradient(circle at 75% 35%, rgba(99,144,255,.3), transparent 24%), linear-gradient(135deg,#2d2236,#151722)}
.office-thumb.city-3{background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01)), radial-gradient(circle at 30% 20%, rgba(201,219,240,.3), transparent 24%), radial-gradient(circle at 60% 70%, rgba(66,138,255,.25), transparent 30%), linear-gradient(135deg,#263142,#0f1521)}
.office-thumb.city-4{background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.01)), radial-gradient(circle at 20% 20%, rgba(255,224,138,.42), transparent 24%), radial-gradient(circle at 80% 30%, rgba(93,170,255,.35), transparent 24%), linear-gradient(135deg,#283143,#10131b)}
.office-thumb.city-5{background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.01)), radial-gradient(circle at 30% 20%, rgba(255,145,108,.42), transparent 24%), radial-gradient(circle at 75% 35%, rgba(92,130,255,.34), transparent 24%), linear-gradient(135deg,#38293a,#131521)}
.office-copy{padding:18px}
.office-copy h3{margin:0 0 6px;font-size:24px;letter-spacing:-.03em}
.office-copy p{margin:0 0 14px;color:#cfd5f0;font-size:14px}
.tiny-link{font-size:12px;letter-spacing:.13em;text-transform:uppercase;color:#7f92ff;font-weight:800}
.contact-wrap{display:grid;grid-template-columns:.9fr 1.1fr;gap:28px;padding:34px}
.contact-copy h2{font-size:42px;line-height:1.04;letter-spacing:-.05em;margin:0 0 18px}
.contact-copy p{color:#b8bfd9;font-size:17px;line-height:1.55}
.contact-points{margin-top:20px;display:grid;gap:12px;color:#d8def8}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.field{display:flex;flex-direction:column;gap:8px}
.field label{font-size:13px;color:#c0c8e9;font-weight:700}
.input,.textarea{width:100%;border:none;border-radius:16px;padding:16px 18px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.06);color:#fff;outline:none;transition:.18s ease}
.input:focus,.textarea:focus{border-color:rgba(99,122,255,.65);box-shadow:0 0 0 3px rgba(79,103,255,.14)}
.textarea{min-height:130px;resize:vertical}
.contact-form .btn{width:100%;margin-top:8px}
.footer{padding:34px 0 44px;color:#aab2d6}
.footer-row{display:flex;justify-content:space-between;gap:30px;align-items:center;border-top:1px solid rgba(255,255,255,.05);padding-top:28px}
.footer-links{display:flex;gap:26px;flex-wrap:wrap}
.social-row{display:flex;gap:18px;margin-top:22px}
.social-card{display:flex;flex-direction:column;align-items:center;gap:10px;color:#fff}
.social-icon{width:64px;height:64px;border-radius:20px;display:grid;place-items:center;background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.06);font-size:26px}
.page-hero{padding:72px 0 54px;position:relative;overflow:hidden;border-bottom:1px solid rgba(255,255,255,.04)}
.page-hero::before{content:"";position:absolute;inset:0;background:linear-gradient(180deg, rgba(7,9,20,.55), rgba(7,9,20,.96)), radial-gradient(circle at 75% 20%, rgba(119,186,255,.18), transparent 20%), linear-gradient(145deg, transparent 58%, rgba(255,255,255,.06) 59%, transparent 75%), linear-gradient(180deg,#0b1022,#05060f)}
.page-hero-inner{position:relative;z-index:1}
.split-hero{display:grid;grid-template-columns:.92fr 1.08fr;gap:34px;align-items:center}
.split-title{font-size:clamp(46px,7vw,90px);line-height:.9;letter-spacing:-.06em;margin:18px 0;font-weight:900;text-transform:uppercase}
.quote{margin:24px 0 0;padding-left:16px;border-left:3px solid var(--blue);font-weight:700;font-size:28px;line-height:1.35;color:#eef1ff}
.video-mock{margin-top:24px;height:420px;border-radius:28px;background:linear-gradient(180deg, rgba(8,12,24,.35), rgba(6,8,16,.82)), repeating-linear-gradient(90deg, rgba(255,255,255,.08), rgba(255,255,255,.08) 2px, transparent 2px, transparent 84px), linear-gradient(180deg, #163146, #081018);border:1px solid rgba(95,111,255,.18)}
.play-btn{position:absolute;inset:0;display:grid;place-items:center}
.play-btn::before{content:"▶";display:grid;place-items:center;width:88px;height:88px;border-radius:50%;background:rgba(255,255,255,.18);backdrop-filter:blur(8px);font-size:34px;padding-left:6px}
.timeline{position:relative;max-width:920px;margin:0 auto;padding:24px 0}
.timeline::before{content:"";position:absolute;left:50%;top:0;bottom:0;width:2px;background:linear-gradient(180deg, transparent, rgba(79,103,255,.95), transparent)}
.timeline-item{position:relative;display:grid;grid-template-columns:1fr 1fr;gap:28px;align-items:center;margin:34px 0}
.timeline-item::before{content:"";position:absolute;left:calc(50% - 7px);top:50%;transform:translateY(-50%);width:14px;height:14px;border-radius:50%;background:var(--blue);box-shadow:0 0 0 7px rgba(79,103,255,.16),0 0 24px rgba(79,103,255,.55)}
.timeline-item .detail-card{padding:24px;max-width:360px}
.timeline-item:nth-child(odd) .detail-card{justify-self:end}
.timeline-item:nth-child(even) .detail-card{grid-column:2;justify-self:start}
.values-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
.value-card{padding:28px;min-height:220px}
.value-card h3{font-size:34px;line-height:1.06;letter-spacing:-.04em;margin:28px 0 0}
.purpose{text-align:center;padding:30px 0 10px}
.purpose .giant{position:absolute;inset:auto 0 0 0;text-align:center;font-size:140px;font-weight:900;letter-spacing:-.08em;line-height:1;color:rgba(255,255,255,.04);pointer-events:none}
.purpose-wrap{position:relative;padding:28px 0 60px}
.logo-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.brand-box{height:118px;display:grid;place-items:center;background:#f6f6f8;color:#2d2f38;border-radius:18px;font-weight:900;font-size:28px;letter-spacing:-.05em;text-align:center;padding:12px}
.product-details{display:grid;gap:38px}
.product-row{display:grid;grid-template-columns:1fr 1fr;gap:30px;align-items:center}
.product-visual{height:240px;border-radius:24px;background:linear-gradient(180deg, rgba(8,12,24,.2), rgba(8,12,24,.82)), radial-gradient(circle at 30% 30%, rgba(81,179,255,.32), transparent 22%), linear-gradient(135deg,#121b31,#080b14);border:1px solid rgba(255,255,255,.06)}
.product-visual.alt{background:linear-gradient(180deg, rgba(8,12,24,.22), rgba(8,12,24,.82)), radial-gradient(circle at 70% 28%, rgba(255,187,102,.24), transparent 18%), linear-gradient(135deg,#221c2c,#090a13)}
.product-badge{position:absolute;left:26px;bottom:26px;font-size:42px;font-weight:900;letter-spacing:-.05em}
.cta-panel{padding:54px 34px;text-align:center;background:linear-gradient(135deg, rgba(54,71,190,.68), rgba(31,35,70,.74));border-radius:30px;border:1px solid rgba(255,255,255,.08)}
.cta-panel h2{margin:0 0 12px;font-size:52px;line-height:1.02;letter-spacing:-.05em}
.contact-hero{text-align:center}
.contact-layout{display:grid;grid-template-columns:.86fr 1.14fr;gap:36px;align-items:start}
.contact-layout .contact-copy h2{font-size:clamp(46px,7vw,90px);margin-bottom:18px}
.contact-page-form{padding:34px}
.badge-row{display:flex;justify-content:space-between;align-items:center;gap:20px;flex-wrap:wrap}
@media (max-width: 1100px){
  .products-grid,.offices-grid{grid-template-columns:repeat(2,1fr)}
  .partner-logos{grid-template-columns:repeat(3,1fr)}
  .metric-intro,.metric-wide{grid-column:span 12}
  .metric-small{grid-column:span 6}
  .split-hero,.contact-layout,.grid-2,.product-row{grid-template-columns:1fr}
  .logo-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 860px){
  .nav{height:auto;padding:18px 0;flex-wrap:wrap}
  .nav-links{order:3;width:100%;justify-content:center;gap:18px;flex-wrap:wrap;padding-bottom:8px}
  .hero-title{font-size:64px}
  .products-grid,.offices-grid,.values-grid,.contact-wrap,.contact-grid{grid-template-columns:1fr}
  .contact-wrap{padding:24px}
  .timeline::before{left:18px}
  .timeline-item{grid-template-columns:1fr;margin-left:24px}
  .timeline-item::before{left:11px;top:20px;transform:none}
  .timeline-item .detail-card,.timeline-item:nth-child(odd) .detail-card,.timeline-item:nth-child(even) .detail-card{grid-column:1;justify-self:stretch;max-width:none}
  .offices-header,.footer-row{flex-direction:column;align-items:flex-start}
  .logo-grid{grid-template-columns:1fr 1fr}
}
@media (max-width: 560px){
  .container{padding:0 16px}
  .hero{padding-top:62px}
  .hero-title,.split-title{font-size:46px}
  .hero-sub,.big-copy{font-size:18px}
  .metric-number{font-size:48px}
  .metric-small{grid-column:span 12}
  .partner-logos,.logo-grid{grid-template-columns:1fr 1fr}
  .brand-box{font-size:22px;height:98px}
  .cta-panel h2,.awards-text h2,.section-title,.contact-copy h2{font-size:38px}
  .value-card h3{font-size:26px}
}


.logo{display:flex;align-items:center;gap:12px}
.logo img{height:28px;width:auto;display:block}
.hero{background:url('../img/image_home_banner.jpg') center/cover no-repeat}
.hero::before{background:linear-gradient(180deg, rgba(4,7,18,.28), rgba(4,7,18,.92)), radial-gradient(circle at 78% 18%, rgba(155,220,255,.22), transparent 18%), linear-gradient(180deg, rgba(9,12,27,.5), rgba(8,10,22,.96))}
.hero::after{display:none}
.awards-image{min-height:350px;background:url('../img/rio.jpg') center/cover no-repeat}
.awards-image .trophy,.awards-image .trophy-base{display:none}
.page-hero.page-empresa, .page-hero.page-productos, .page-hero.page-contacto{background-position:center;background-size:cover;background-repeat:no-repeat}
.page-hero.page-empresa{background-image:url('../img/banner-empresa.jpg')}
.page-hero.page-productos{background-image:url('../img/image_home_banner.jpg')}
.page-hero.page-contacto{background-image:url('../img/image_home_banner.jpg')}
.page-hero::before{background:linear-gradient(180deg, rgba(7,9,20,.52), rgba(7,9,20,.95)), radial-gradient(circle at 75% 20%, rgba(119,186,255,.16), transparent 20%), linear-gradient(180deg, rgba(11,16,34,.25), rgba(5,6,15,.96))}
.video-mock{background:url('../img/banner-video.jpg') center/cover no-repeat;min-height:420px}
.office-thumb{background-size:cover;background-position:center}
.office-thumb{background-image:url('../img/madrid.jpg')}
.office-thumb.city-2{background-image:url('../img/ceuta.jpg')}
.office-thumb.city-3{background-image:url('../img/sao paulo.jpg'), url('../img/sao-paulo.jpg'), url('../img/saopaulo.jpg'); background-image:url('../img/sao paulo.jpg')}
.office-thumb.city-4{background-image:url('../img/miami.jpg')}
.office-thumb.city-5{background-image:url('../img/bogota.jpg')}
.brand-box{background:#e4e5e7;background-size:70% auto;background-repeat:no-repeat;background-position:center;color:transparent;font-size:0;border:1px solid rgba(0,0,0,.05)}
.brand-box.brand-aff{background-image:url('../img/betandeal-affiliates.jpg')}
.brand-box.brand-games{background-image:url('../img/betandeal-games.jpg')}
.brand-box.brand-premium{background-image:url('../img/premiumpay.jpg')}
.brand-box.brand-gainblers{background-image:url('../img/gainblers.jpg')}
.brand-box.brand-xbetters{background-image:url('../img/xbetters.jpg')}
.brand-box.brand-link2play{background-image:url('../img/link2play.jpg')}
.partner-logo{background-size:contain;background-repeat:no-repeat;background-position:center;color:transparent;font-size:0;opacity:.9}
.partner-logo.codere{background-image:url('../img/codere.png')}
.product-visual{background-size:cover;background-position:center}
.product-visual.aff{background-image:url('../img/BetandDealAffiliates-grande.jpg')}
.product-visual.games{background-image:url('../img/BeatAndDealGames-grande.jpg')}
.product-visual.premium{background-image:url('../img/PremiumPay-grande.jpg')}
.product-visual.gainblers{background-image:url('../img/Gainblers-grande.jpg')}
.product-visual.xbetters{background-image:url('../img/X-Bettres-grande.jpg')}
.product-visual.link2play{background-image:url('../img/Link2Play-grande.jpg')}
.product-visual.network{background-image:url('../img/InfluenerNetwork-grande.jpg')}
.product-visual .product-badge{background:rgba(6,10,18,.18);padding:6px 10px;border-radius:12px;backdrop-filter:blur(2px)}
.contact-wrap{background:linear-gradient(180deg,rgba(19,23,42,.78),rgba(13,15,28,.86));}
@media (max-width: 1100px){.office-thumb.city-3{background-image:url('../img/sao paulo.jpg')}}


/* --- Home fixes --- */
.hero{
  background:url('../img/image_home_banner.jpg') center center / cover no-repeat;
  border-bottom:none;
}
.hero::before{
  inset:-2px 0 -2px 0;
  background:
    linear-gradient(180deg, rgba(4,7,18,.22) 0%, rgba(4,7,18,.58) 62%, rgba(5,6,15,.96) 100%),
    radial-gradient(circle at 78% 18%, rgba(155,220,255,.18), transparent 18%);
}
.hero::after{
  display:block;
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:120px;
  background:linear-gradient(180deg, rgba(5,6,15,0) 0%, #05060f 85%);
  pointer-events:none;
}
.awards-image{
  min-height:350px;
  background:url('../img/betandeal-awards.jpg') center/cover no-repeat !important;
}
.awards-image .trophy,
.awards-image .trophy-base{
  display:none !important;
}
.partner-logo{
  min-height:88px;
  border-radius:18px;
  background:rgba(255,255,255,.02);
  border:1px solid rgba(255,255,255,.04);
}
.partner-logo img{
  max-width:120px;
  width:100%;
  height:auto;
  object-fit:contain;
  opacity:.95;
  filter:brightness(1.05);
}
.office-thumb.city-3{
  background-image:url('../img/rio.jpg') !important;
  background-size:cover !important;
  background-position:center !important;
}

/* v2 home fixes */
.hero{
  min-height: 820px !important;
  padding-top: 140px !important;
  padding-bottom: 130px !important;
  display:flex;
  align-items:center;
}
.metric-wide{
  align-items:center !important;
}
.metric-wide > div{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:10px;
}
.metric-wide .metric-number{
  margin-bottom: 0;
  line-height: .9;
}
.metric-wide .metric-label{
  margin-top: 0;
}
.metric-small{
  justify-content:center !important;
  align-items:center !important;
  text-align:center !important;
  padding: 24px 20px !important;
}
.metric-small .metric-number,
.metric-small .metric-label{
  text-align:center !important;
  width:100%;
}
@media (max-width: 560px){
  .hero{
    min-height: 620px !important;
    padding-top: 100px !important;
    padding-bottom: 90px !important;
  }
}

/* v3 2016 block fix */
.metric-wide{
  align-items:center !important;
  gap:20px !important;
}
.metric-wide > div{
  gap:4px !important;
}
.metric-wide .metric-number{
  font-size:72px !important;
  margin-bottom:4px !important;
}
.metric-wide .metric-label{
  font-size:16px !important;
  letter-spacing:2px;
  opacity:.8;
}

/* v4 center 2016 block with button */
.metric-wide{
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  gap:120px !important;
  text-align:center;
}
.metric-wide > div{
  align-items:center !important;
}
.metric-wide .metric-number{
  text-align:center;
}
.metric-wide .metric-label{
  text-align:center;
}
.metric-wide .btn{
  margin:0 !important;
}

/* empresa hero fixes */
.page-hero.page-empresa{
  min-height: 860px !important;
  padding-top: 150px !important;
  padding-bottom: 140px !important;
  display:flex;
  align-items:center;
  background-image:url('../img/banner-empresa.jpg') !important;
  background-position:center center !important;
  background-size:cover !important;
  background-repeat:no-repeat !important;
  border-bottom:none !important;
}
.page-hero.page-empresa::before{
  inset:-2px 0 -2px 0 !important;
  background:
    linear-gradient(90deg, rgba(5,6,15,.82) 0%, rgba(5,6,15,.72) 34%, rgba(5,6,15,.40) 58%, rgba(5,6,15,.25) 100%),
    linear-gradient(180deg, rgba(5,6,15,.16) 0%, rgba(5,6,15,.42) 56%, rgba(5,6,15,.95) 100%),
    radial-gradient(circle at 82% 10%, rgba(255,255,255,.18), transparent 18%) !important;
}
.page-hero.page-empresa::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:140px;
  background:linear-gradient(180deg, rgba(5,6,15,0) 0%, #05060f 86%);
  pointer-events:none;
}
.page-hero.page-empresa .page-hero-inner{
  width:100%;
}
.page-hero.page-empresa .split-hero{
  grid-template-columns: .78fr 1.22fr !important;
  align-items:center;
}
.page-hero.page-empresa .split-title{
  font-size: clamp(72px, 8vw, 132px) !important;
  line-height: .90 !important;
  letter-spacing: -.065em !important;
  margin: 20px 0 28px !important;
}
.page-hero.page-empresa .big-copy{
  max-width: 780px !important;
  font-size: 26px !important;
  line-height: 1.45 !important;
  color: #cfd5f0 !important;
}
.page-hero.page-empresa .quote{
  max-width: 980px !important;
  font-size: 30px !important;
  line-height: 1.34 !important;
  margin-top: 28px !important;
}
.page-hero.page-empresa .btn{
  min-width: 280px;
  min-height: 72px;
  font-size: 20px;
}
@media (max-width: 1100px){
  .page-hero.page-empresa{
    min-height: 760px !important;
    padding-top: 120px !important;
    padding-bottom: 110px !important;
  }
  .page-hero.page-empresa .split-hero{
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 560px){
  .page-hero.page-empresa{
    min-height: 620px !important;
    padding-top: 96px !important;
    padding-bottom: 90px !important;
  }
  .page-hero.page-empresa .split-title{
    font-size: 56px !important;
  }
  .page-hero.page-empresa .big-copy{
    font-size: 18px !important;
  }
  .page-hero.page-empresa .quote{
    font-size: 18px !important;
  }
  .page-hero.page-empresa .btn{
    min-width: 220px;
    min-height: 58px;
    font-size: 16px;
  }
}

/* empresa hero match home height + typography fixes */
.page-hero.page-empresa{
  min-height: 820px !important;
  padding-top: 140px !important;
  padding-bottom: 130px !important;
}

.page-hero.page-empresa .split-title{
  font-size: clamp(60px, 6vw, 100px) !important;
  line-height: .92 !important;
}

.page-hero.page-empresa .big-copy{
  font-size: 20px !important;
  max-width: 640px !important;
}

.page-hero.page-empresa .quote{
  font-size: 22px !important;
  max-width: 720px !important;
}

.page-hero.page-empresa .btn{
  min-width: 220px;
  min-height: 56px;
  font-size: 16px;
}

/* values cards typography */
.value-card h3{
  font-size: 26px !important;
  line-height: 1.4 !important;
}

/* video image */
.video-mock{
  background:url('../img/video.jpg') center/cover no-repeat !important;
}

/* HERO EMPRESA TYPO REFINEMENT (FIGMA MATCH) */
.page-hero.page-empresa .split-title{
  font-family: 'Jakarta', sans-serif !important;
  font-weight: 800 !important;
  font-style: italic !important;
  font-size: clamp(64px, 7vw, 110px) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.04em !important;
}

.page-hero.page-empresa .split-title .accent{
  display:block;
  font-style: italic !important;
}

.page-hero.page-empresa .eyebrow{
  font-size: 12px !important;
  letter-spacing: 3px !important;
  text-transform: uppercase;
  color: #7f8cff !important;
}

.page-hero.page-empresa .big-copy{
  font-size: 18px !important;
  line-height: 1.6 !important;
  color: #bfc6e0 !important;
}

.page-hero.page-empresa .quote{
  font-size: 20px !important;
  line-height: 1.5 !important;
  font-weight: 600 !important;
  border-left: 3px solid #6c7cff;
  padding-left: 16px;
}

/* HERO EMPRESA TITLE FINAL (INTER 90PX) */
.page-hero.page-empresa .split-title{
  font-family: 'Inter', sans-serif !important;
  font-weight: 800 !important;
  font-style: normal !important;
  font-size: 75px !important;
  line-height: 0.95 !important;
  letter-spacing: -0.03em !important;
}
.page-hero.page-empresa .split-title .accent{
  font-style: normal !important;
}

/* HERO EMPRESA TEXT WIDTH FIX */
.page-hero.page-empresa .big-copy{
  max-width: 880px !important;
}

.page-hero.page-empresa .quote{
  max-width: 900px !important;
}


/* FINAL empresa hero text width fix */
.page-hero.page-empresa .split-hero{
  grid-template-columns: 1fr !important;
}

.page-hero.page-empresa .page-hero-inner,
.page-hero.page-empresa .split-hero,
.page-hero.page-empresa .split-hero > div:first-child{
  max-width: 100% !important;
  width: 100% !important;
}

.page-hero.page-empresa .big-copy{
  max-width: 1120px !important;
  width: 1120px !important;
}

.page-hero.page-empresa .quote{
  max-width: 980px !important;
  width: 980px !important;
}

@media (max-width: 1200px){
  .page-hero.page-empresa .big-copy{
    width: 100% !important;
    max-width: 960px !important;
  }
  .page-hero.page-empresa .quote{
    width: 100% !important;
    max-width: 860px !important;
  }
}

@media (max-width: 900px){
  .page-hero.page-empresa .big-copy,
  .page-hero.page-empresa .quote{
    width: 100% !important;
    max-width: 100% !important;
  }
}


/* FIX spacing left while keeping width */
.page-hero.page-empresa .split-hero > div:first-child{
  padding-left: 80px !important;
}

@media (max-width: 1200px){
  .page-hero.page-empresa .split-hero > div:first-child{
    padding-left: 40px !important;
  }
}

@media (max-width: 768px){
  .page-hero.page-empresa .split-hero > div:first-child{
    padding-left: 20px !important;
  }
}


/* FINAL LEFT SPACING (desktop) */
.page-hero.page-empresa .split-hero > div:first-child{
  padding-left: 200px !important;
}

@media (max-width: 1200px){
  .page-hero.page-empresa .split-hero > div:first-child{
    padding-left: 80px !important;
  }
}

@media (max-width: 768px){
  .page-hero.page-empresa .split-hero > div:first-child{
    padding-left: 24px !important;
  }
}


/* PRODUCTS HERO = SAME AS EMPRESA */
.page-hero.page-productos{
  min-height: 85vh !important;
  display: flex;
  align-items: center;
}

.page-hero.page-productos .split-hero > div:first-child{
  padding-left: 200px !important;
}

.page-hero.page-productos .big-copy{
  max-width: 1050px !important;
}

.page-hero.page-productos .hero-content{
  max-width: 1050px;
}

@media (max-width: 1200px){
  .page-hero.page-productos .split-hero > div:first-child{
    padding-left: 80px !important;
  }
}

@media (max-width: 768px){
  .page-hero.page-productos .split-hero > div:first-child{
    padding-left: 24px !important;
  }
}


/* PRODUCTS HERO FINAL FIX */
.page-hero.page-productos{
  min-height: 820px !important;
  padding-top: 140px !important;
  padding-bottom: 130px !important;
  display: flex !important;
  align-items: center !important;
}

.page-hero.page-productos .page-hero-inner{
  width: 100% !important;
}

.page-hero.page-productos .split-hero{
  grid-template-columns: .78fr 1.22fr !important;
  align-items: center !important;
}

.page-hero.page-productos .split-hero > div:first-child{
  padding-left: 200px !important;
}

.page-hero.page-productos .big-copy{
  max-width: 880px !important;
  width: 880px !important;
}

.page-hero.page-productos .split-title{
  font-family: 'Inter', sans-serif !important;
  font-weight: 800 !important;
  font-size: 90px !important;
  line-height: .95 !important;
  letter-spacing: -.03em !important;
}

@media (max-width: 1200px){
  .page-hero.page-productos{
    min-height: 760px !important;
    padding-top: 120px !important;
    padding-bottom: 110px !important;
  }
  .page-hero.page-productos .split-hero > div:first-child{
    padding-left: 80px !important;
  }
  .page-hero.page-productos .big-copy{
    width: 100% !important;
    max-width: 760px !important;
  }
}

@media (max-width: 900px){
  .page-hero.page-productos .split-hero{
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px){
  .page-hero.page-productos{
    min-height: 620px !important;
    padding-top: 96px !important;
    padding-bottom: 90px !important;
  }
  .page-hero.page-productos .split-hero > div:first-child{
    padding-left: 24px !important;
  }
  .page-hero.page-productos .big-copy{
    width: 100% !important;
    max-width: 100% !important;
  }
}


/* PRODUCTS HERO MATCH EMPRESA */
.page-hero.page-productos{
  min-height: 820px !important;
  padding-top: 140px !important;
  padding-bottom: 130px !important;
  display:flex !important;
  align-items:center !important;
}

.page-hero.page-productos .page-hero-inner{
  width:100% !important;
}

.page-hero.page-productos .split-hero{
  grid-template-columns: 0.86fr 0.74fr !important;
  align-items:center !important;
  gap: 48px !important;
}

.page-hero.page-productos .split-hero > div:first-child{
  padding-left: 200px !important;
  justify-self:start !important;
}

.page-hero.page-productos .split-title{
  font-family:'Inter', sans-serif !important;
  font-weight:800 !important;
  font-size: 70px !important;
  line-height: 0.95 !important;
  letter-spacing: -0.03em !important;
  margin: 0 0 26px !important;
}

.page-hero.page-productos .big-copy{
  max-width: 760px !important;
  width: 760px !important;
  font-size: 20px !important;
  line-height: 1.55 !important;
}

.page-hero.page-productos .btn{
  min-width: 280px !important;
  min-height: 72px !important;
  font-size: 20px !important;
}

.page-hero.page-productos .logo-grid{
  width: 560px !important;
  max-width: 560px !important;
  justify-self:end !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 22px !important;
}

.page-hero.page-productos .brand-box{
  height: 140px !important;
  border-radius: 22px !important;
}

@media (max-width: 1200px){
  .page-hero.page-productos{
    min-height: 760px !important;
    padding-top: 120px !important;
    padding-bottom: 110px !important;
  }
  .page-hero.page-productos .split-hero{
    grid-template-columns: 1fr 0.9fr !important;
    gap: 32px !important;
  }
  .page-hero.page-productos .split-hero > div:first-child{
    padding-left: 80px !important;
  }
  .page-hero.page-productos .big-copy{
    width: 100% !important;
    max-width: 680px !important;
  }
  .page-hero.page-productos .logo-grid{
    width: 460px !important;
    max-width: 460px !important;
  }
  .page-hero.page-productos .brand-box{
    height: 120px !important;
  }
}

@media (max-width: 900px){
  .page-hero.page-productos .split-hero{
    grid-template-columns: 1fr !important;
  }
  .page-hero.page-productos .logo-grid{
    justify-self:start !important;
    width: 100% !important;
    max-width: 560px !important;
  }
}

@media (max-width: 768px){
  .page-hero.page-productos{
    min-height: 620px !important;
    padding-top: 96px !important;
    padding-bottom: 90px !important;
  }
  .page-hero.page-productos .split-hero > div:first-child{
    padding-left: 24px !important;
  }
  .page-hero.page-productos .split-title{
    font-size: 56px !important;
  }
  .page-hero.page-productos .big-copy{
    width: 100% !important;
    max-width: 100% !important;
    font-size: 18px !important;
  }
  .page-hero.page-productos .btn{
    min-width: 220px !important;
    min-height: 58px !important;
    font-size: 16px !important;
  }
  .page-hero.page-productos .logo-grid{
    max-width: 100% !important;
    gap: 16px !important;
  }
  .page-hero.page-productos .brand-box{
    height: 108px !important;
  }
}


/* PRODUCTS HERO ALIGN WITH EMPRESA */
.page-hero.page-productos .page-hero-inner{
  max-width: none !important;
  width: calc(100% - 48px) !important;
  margin: 0 auto !important;
}

.page-hero.page-productos .split-hero{
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 48px !important;
  align-items: center !important;
}

.page-hero.page-productos .split-hero > div:first-child{
  padding-left: 175px !important;
  max-width: 980px !important;
  width: 100% !important;
}

.page-hero.page-productos .big-copy{
  width: 100% !important;
  max-width: 820px !important;
}

.page-hero.page-productos .logo-grid{
  justify-self: end !important;
  width: 560px !important;
  max-width: 560px !important;
  margin-right: 70px !important;
}

@media (max-width: 1200px){
  .page-hero.page-productos .page-hero-inner{
    width: calc(100% - 40px) !important;
  }
  .page-hero.page-productos .split-hero > div:first-child{
    padding-left: 80px !important;
    max-width: 760px !important;
  }
  .page-hero.page-productos .logo-grid{
    width: 460px !important;
    max-width: 460px !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 900px){
  .page-hero.page-productos .split-hero{
    grid-template-columns: 1fr !important;
  }
  .page-hero.page-productos .split-hero > div:first-child{
    max-width: 100% !important;
  }
  .page-hero.page-productos .logo-grid{
    justify-self: start !important;
    width: 100% !important;
    max-width: 560px !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 768px){
  .page-hero.page-productos .page-hero-inner{
    width: calc(100% - 32px) !important;
  }
  .page-hero.page-productos .split-hero > div:first-child{
    padding-left: 24px !important;
  }
}


/* FIX HERO LINE WITHOUT REMOVING OVERLAY */
.page-hero.page-productos{
  position: relative;
  overflow: hidden;
}

/* adjust overlay to avoid visible cut line */
.page-hero.page-productos::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,8,18,0.0) 0%,
    rgba(5,8,18,0.2) 70%,
    rgba(5,8,18,0.6) 90%,
    rgba(5,8,18,1) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* ensure content stays above overlay */
.page-hero.page-productos > *{
  position: relative;
  z-index: 2;
}


/* FINAL FIX: remove green line at bottom of productos hero */
.page-hero.page-productos{
  border-bottom: 0 !important;
  box-shadow: none !important;
  isolation: isolate;
}

.page-hero.page-productos::before{
  bottom: -2px !important;
}

.page-hero.page-productos::after{
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: -1px !important;
  top: auto !important;
  height: 140px !important;
  background: linear-gradient(
    180deg,
    rgba(5,6,15,0) 0%,
    rgba(5,6,15,0.18) 35%,
    rgba(5,6,15,0.55) 68%,
    #05060f 100%
  ) !important;
  pointer-events: none !important;
  z-index: 3 !important;
}

.page-hero.page-productos + section,
.page-hero.page-productos + .section{
  border-top: 0 !important;
  box-shadow: none !important;
  position: relative;
  z-index: 4;
  background: #05060f;
}


/* CONTACT PAGE TARGETED FIXES */
.page-hero.page-contacto{
  border-bottom:none !important;
  overflow:hidden;
}
.page-hero.page-contacto::before{
  inset:-2px 0 -2px 0 !important;
}
.page-hero.page-contacto::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:120px;
  background:linear-gradient(180deg, rgba(5,6,15,0) 0%, rgba(5,6,15,.18) 36%, rgba(5,6,15,.58) 72%, #05060f 100%);
  pointer-events:none;
  z-index:1;
}
.page-hero.page-contacto > *{
  position:relative;
  z-index:2;
}

.contact-title{
  font-size:70px !important;
  line-height:1.02 !important;
  letter-spacing:-0.04em !important;
}

.rrss-heading{
  font-size:36px !important;
  line-height:1 !important;
  letter-spacing:-0.03em !important;
  max-width:560px;
  margin:0 0 18px !important;
}

.contact-layout .contact-copy p{
  max-width:640px;
}

.social-row{
  display:flex !important;
  gap:28px !important;
  margin-top:28px !important;
  align-items:flex-start !important;
  flex-wrap:nowrap !important;
}
.social-link{
  text-decoration:none;
}
.social-card{
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  gap:12px !important;
  color:#fff !important;
  width:96px !important;
  min-width:96px !important;
  text-align:center !important;
}
.social-card > div:last-child{
  font-size:18px !important;
  font-weight:500 !important;
}
.social-icon{
  width:72px !important;
  height:72px !important;
  border-radius:22px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  background:linear-gradient(180deg, rgba(19,23,42,.92), rgba(13,15,28,.92)) !important;
  border:1px solid rgba(255,255,255,.07) !important;
  box-shadow:0 20px 60px rgba(0,0,0,.22) !important;
  font-size:0 !important;
}
.social-icon svg{
  width:28px !important;
  height:28px !important;
  stroke-width:1.8 !important;
}
.social-linkedin{color:#28a2ff !important;}
.social-instagram{color:#ff2f91 !important;}
.social-telegram{color:#2aa7ff !important;}

@media (max-width: 768px){
  .contact-title{
    font-size:48px !important;
  }
  .rrss-heading{
    font-size:32px !important;
  }
  .social-row{
    gap:18px !important;
    flex-wrap:wrap !important;
  }
}


/* === TIMELINE YEARS FINAL FIX === */
.timeline-item .detail-card h3{
  color:#6C7BFF !important;
  font-size:48px !important;
  font-weight:800 !important;
  letter-spacing:-0.03em !important;
  margin-bottom:8px !important;
  line-height:1 !important;
}

/* make subtitle a bit clearer */
.timeline-item .detail-card .muted{
  font-size:18px !important;
  color:#ffffff !important;
  opacity:.9;
}

/* spacing fix inside card */
.timeline-item .detail-card{
  padding:32px 36px !important;
}


/* === TIMELINE DOTS ANIMATION (LATEST BASE) === */
.timeline-item::before{
  animation: timelineDotPulse 2.6s ease-in-out infinite !important;
  transform: translateY(-50%) scale(1);
  will-change: transform, box-shadow, opacity;
}

.timeline-item:nth-child(2)::before{ animation-delay: .2s !important; }
.timeline-item:nth-child(3)::before{ animation-delay: .4s !important; }
.timeline-item:nth-child(4)::before{ animation-delay: .6s !important; }
.timeline-item:nth-child(5)::before{ animation-delay: .8s !important; }
.timeline-item:nth-child(6)::before{ animation-delay: 1s !important; }

@keyframes timelineDotPulse {
  0% {
    transform: translateY(-50%) scale(1);
    opacity: 0.92;
    box-shadow:
      0 0 0 7px rgba(108,123,255,.10),
      0 0 18px rgba(108,123,255,.32);
  }
  50% {
    transform: translateY(-50%) scale(1.18);
    opacity: 1;
    box-shadow:
      0 0 0 11px rgba(108,123,255,.18),
      0 0 30px rgba(108,123,255,.62);
  }
  100% {
    transform: translateY(-50%) scale(1);
    opacity: 0.92;
    box-shadow:
      0 0 0 7px rgba(108,123,255,.10),
      0 0 18px rgba(108,123,255,.32);
  }
}


/* === HOME CTA SUBTLE EFFECTS === */
.btn-soft-pulse{
  position: relative;
  animation: softButtonBreathStrong 3.2s ease-in-out infinite;
  will-change: transform, box-shadow, filter;
}

.btn-soft-pulse::after{
  content:"";
  position:absolute;
  inset:-8px;
  border-radius:999px;
  background: radial-gradient(circle, rgba(108,123,255,.26) 0%, rgba(108,123,255,.10) 45%, rgba(108,123,255,0) 72%);
  opacity:.55;
  z-index:-1;
  filter: blur(10px);
  animation: softButtonHaloStrong 3.2s ease-in-out infinite;
  pointer-events:none;
}

.btn-soft-pulse:hover{
  animation-play-state: paused;
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(95,118,255,.30);
}

.btn-products-cta{
  min-width: 630px;
}

@keyframes softButtonBreathStrong{
  0%{
    transform: translateY(0) scale(1);
    box-shadow: 0 10px 28px rgba(95,118,255,.18);
    filter: brightness(1);
  }
  50%{
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 16px 36px rgba(95,118,255,.28);
    filter: brightness(1.03);
  }
  100%{
    transform: translateY(0) scale(1);
    box-shadow: 0 10px 28px rgba(95,118,255,.18);
    filter: brightness(1);
  }
}

@keyframes softButtonHaloStrong{
  0%{
    transform: scale(.94);
    opacity:.30;
  }
  50%{
    transform: scale(1.04);
    opacity:.52;
  }
  100%{
    transform: scale(.94);
    opacity:.30;
  }
}

@media (prefers-reduced-motion: reduce){
  .btn-soft-pulse,
  .btn-soft-pulse::after{
    animation:none !important;
  }
}

@media (max-width: 768px){
  .btn-products-cta{
    min-width: auto;
    width: 100%;
    max-width: 100%;
  }
}


/* === STRONGER BUTTON EFFECT === */
@keyframes softButtonBreathStrong{
  0%{
    transform: translateY(0) scale(1);
    box-shadow: 0 10px 28px rgba(95,118,255,.25);
    filter: brightness(1);
  }
  50%{
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 22px 55px rgba(95,118,255,.45);
    filter: brightness(1.08);
  }
  100%{
    transform: translateY(0) scale(1);
    box-shadow: 0 10px 28px rgba(95,118,255,.25);
    filter: brightness(1);
  }
}

@keyframes softButtonHaloStrong{
  0%{
    transform: scale(.9);
    opacity:.35;
  }
  50%{
    transform: scale(1.15);
    opacity:.75;
  }
  100%{
    transform: scale(.9);
    opacity:.35;
  }
}


/* === LIGHT ONLY BUTTON EFFECT (NO SCALE) === */
.btn-soft-pulse{
  animation: buttonLightOnly 3s ease-in-out infinite !important;
}

.btn-soft-pulse::after{
  animation: buttonHaloOnly 3s ease-in-out infinite !important;
}

@keyframes buttonLightOnly{
  0%{
    transform: none;
    box-shadow: 0 10px 25px rgba(95,118,255,.25);
    filter: brightness(1);
  }
  50%{
    transform: none;
    box-shadow: 0 18px 45px rgba(95,118,255,.45);
    filter: brightness(1.08);
  }
  100%{
    transform: none;
    box-shadow: 0 10px 25px rgba(95,118,255,.25);
    filter: brightness(1);
  }
}

@keyframes buttonHaloOnly{
  0%{
    transform: scale(0.95);
    opacity: .35;
  }
  50%{
    transform: scale(1.1);
    opacity: .7;
  }
  100%{
    transform: scale(0.95);
    opacity: .35;
  }
}


/* === REFINED BUTTON LIGHT (SUBTLE CTA) === */
.btn-soft-pulse{
  animation: buttonLightRefined 2s ease-in-out infinite !important;
}

.btn-soft-pulse::after{
  animation: buttonHaloRefined 2s ease-in-out infinite !important;
}

@keyframes buttonLightRefined{
  0%{
    box-shadow: 0 8px 20px rgba(95,118,255,.18);
    filter: brightness(1);
  }
  50%{
    box-shadow: 0 14px 30px rgba(95,118,255,.28);
    filter: brightness(1.04);
  }
  100%{
    box-shadow: 0 8px 20px rgba(95,118,255,.18);
    filter: brightness(1);
  }
}

@keyframes buttonHaloRefined{
  0%{
    transform: scale(0.97);
    opacity: .25;
  }
  50%{
    transform: scale(1.05);
    opacity: .45;
  }
  100%{
    transform: scale(0.97);
    opacity: .25;
  }
}


/* MATCH PRODUCTOS HERO CTA TO EMPRESA HERO CTA */
.page-hero.page-empresa .hero-company-btn,
.page-hero.page-productos .hero-products-btn{
  min-width: 220px !important;
  min-height: 56px !important;
  padding: 0 28px !important;
  font-size: 16px !important;
  line-height: 1 !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
}

@media (max-width: 768px){
  .page-hero.page-empresa .hero-company-btn,
  .page-hero.page-productos .hero-products-btn{
    min-width: 220px !important;
    min-height: 56px !important;
    font-size: 16px !important;
  }
}


/* === CTA EFFECTS REUSED FROM HOME === */
.btn-soft-pulse{
  position: relative;
  animation: buttonLightRefined 2s ease-in-out infinite !important;
  will-change: box-shadow, filter;
}

.btn-soft-pulse::after{
  content:"";
  position:absolute;
  inset:-6px;
  border-radius:999px;
  background: radial-gradient(circle, rgba(108,123,255,.22) 0%, rgba(108,123,255,.08) 48%, rgba(108,123,255,0) 72%);
  opacity:.38;
  z-index:-1;
  filter: blur(8px);
  animation: buttonHaloRefined 2s ease-in-out infinite !important;
  pointer-events:none;
}

.btn-soft-pulse:hover{
  box-shadow: 0 14px 30px rgba(95,118,255,.28);
  filter: brightness(1.04);
}

@keyframes buttonLightRefined{
  0%{
    box-shadow: 0 8px 20px rgba(95,118,255,.18);
    filter: brightness(1);
  }
  50%{
    box-shadow: 0 14px 30px rgba(95,118,255,.28);
    filter: brightness(1.04);
  }
  100%{
    box-shadow: 0 8px 20px rgba(95,118,255,.18);
    filter: brightness(1);
  }
}

@keyframes buttonHaloRefined{
  0%{
    transform: scale(0.97);
    opacity: .25;
  }
  50%{
    transform: scale(1.05);
    opacity: .45;
  }
  100%{
    transform: scale(0.97);
    opacity: .25;
  }
}

@media (prefers-reduced-motion: reduce){
  .btn-soft-pulse,
  .btn-soft-pulse::after{
    animation:none !important;
  }
}


/* === CONTACT RRSS HOVER BLUE STATE === */
.social-link,
.social-card{
  transition: color .22s ease, transform .22s ease;
}

.social-card > div:last-child{
  transition: color .22s ease;
}

.social-icon{
  transition:
    background .22s ease,
    border-color .22s ease,
    box-shadow .22s ease,
    color .22s ease,
    transform .22s ease;
}

.social-link:hover .social-icon,
.social-card:hover .social-icon{
  background: linear-gradient(180deg, rgba(108,123,255,.22), rgba(52,62,132,.22)) !important;
  border-color: rgba(108,123,255,.45) !important;
  box-shadow:
    0 16px 38px rgba(95,118,255,.24),
    0 0 0 1px rgba(108,123,255,.12) inset !important;
  color: #dfe5ff !important;
  transform: translateY(-1px);
}

.social-link:hover .social-linkedin,
.social-card:hover .social-linkedin,
.social-link:hover .social-instagram,
.social-card:hover .social-instagram,
.social-link:hover .social-telegram,
.social-card:hover .social-telegram{
  color: #eef2ff !important;
}

.social-link:hover > div:last-child,
.social-card:hover > div:last-child{
  color: #7B8CFF !important;
}


/* ==== MENU FIX CLEAN ==== */
.burger-btn{
  display:none;
  width:48px;
  height:48px;
  border:none;
  background:transparent;
  padding:0;
  cursor:pointer;
  position:relative;
  z-index:1102;
  flex:0 0 auto;
}
.burger-btn span{
  display:block;
  width:22px;
  height:2px;
  background:#eef2ff;
  border-radius:999px;
  margin:5px auto;
  transition:transform .22s ease, opacity .22s ease;
}
.mobile-menu{
  position:fixed;
  inset:0;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  z-index:1100;
}
.mobile-menu-backdrop{
  position:absolute;
  inset:0;
  background:rgba(4,6,15,.62);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}
.mobile-menu-panel{
  position:absolute;
  top:0;
  right:0;
  width:min(86vw, 360px);
  height:100%;
  background:linear-gradient(180deg, rgba(11,15,33,.98), rgba(6,8,18,.98));
  border-left:1px solid rgba(255,255,255,.08);
  box-shadow:-20px 0 50px rgba(0,0,0,.28);
  padding:96px 24px 24px;
  display:flex;
  flex-direction:column;
  gap:18px;
}
.mobile-menu-panel a{
  color:#eef2ff;
  text-decoration:none;
  font-size:18px;
  font-weight:500;
}
.mobile-menu-actions{
  display:grid;
  gap:12px;
  margin-top:22px;
}
.mobile-menu-close{
  position:absolute;
  top:18px;
  right:18px;
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
  color:#eef2ff;
  font-size:28px;
  line-height:1;
  cursor:pointer;
  z-index:1103;
}
body.menu-open .mobile-menu{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}
body.menu-open .burger-btn span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}
body.menu-open .burger-btn span:nth-child(2){
  opacity:0;
}
body.menu-open .burger-btn span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

@media (min-width: 981px){
  .burger-btn,
  .mobile-menu{
    display:none !important;
  }
  .nav-links{
    display:flex !important;
  }
  .nav-right{
    display:flex !important;
    align-items:center !important;
    gap:14px !important;
  }
}
@media (max-width: 980px){
  .nav-links,
  .nav-right{
    display:none !important;
  }
  .burger-btn{
    display:block !important;
  }
  .nav{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
  }
}

/* ==== HOME METRICS MOBILE FIX ONLY ==== */
@media (max-width: 768px){
  .metrics-grid{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:16px !important;
  }

  .metric-intro{
    display:block !important;
    padding:24px 20px !important;
    min-height:auto !important;
  }
  .metric-intro .eyebrow{
    display:inline-flex !important;
    margin-bottom:12px !important;
  }
  .metric-intro h3{
    font-size:34px !important;
    line-height:1 !important;
    margin:0 0 10px !important;
  }
  .metric-intro p{
    max-width:100% !important;
    font-size:16px !important;
    line-height:1.45 !important;
  }

  .metric-wide{
    display:flex !important;
    flex-direction:column !important;
    align-items:flex-start !important;
    justify-content:flex-start !important;
    gap:18px !important;
    padding:24px 20px !important;
    min-height:auto !important;
  }
  .metric-wide > div{
    width:100% !important;
  }
  .metric-wide .metric-number{
    font-size:68px !important;
    line-height:.92 !important;
    margin-bottom:6px !important;
    text-align:left !important;
  }
  .metric-wide .metric-label{
    font-size:18px !important;
    letter-spacing:.18em !important;
    text-align:left !important;
  }
  .metric-wide .btn{
    width:auto !important;
    min-width:0 !important;
    align-self:flex-start !important;
    margin:0 !important;
  }

  .metric-small{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    text-align:center !important;
    min-height:160px !important;
    padding:20px !important;
  }
  .metric-small .metric-number{
    font-size:62px !important;
    line-height:.95 !important;
    margin:0 0 8px !important;
    width:100% !important;
    text-align:center !important;
  }
  .metric-small .metric-label{
    font-size:18px !important;
    letter-spacing:.18em !important;
    width:100% !important;
    text-align:center !important;
  }
}

@media (max-width: 480px){
  .metric-wide .metric-number{
    font-size:58px !important;
  }
  .metric-small .metric-number{
    font-size:54px !important;
  }
}


@media (max-width: 980px){
  .page-hero.page-empresa,
  .page-hero.page-empresa::before,
  .page-hero.page-empresa::after{
    z-index:0 !important;
  }

  .mobile-menu{
    z-index:5000 !important;
  }
  .mobile-menu-backdrop{
    z-index:5001 !important;
  }
  .mobile-menu-panel{
    z-index:5002 !important;
  }
  .mobile-menu-close{
    z-index:5003 !important;
  }
}


/* === ROBUST MOBILE MENU PANEL VISIBILITY FIX === */
@media (max-width: 980px){
  .mobile-menu{
    display:block !important;
    position:fixed !important;
    inset:0 !important;
    z-index:6000 !important;
  }

  .mobile-menu-backdrop{
    position:fixed !important;
    inset:0 !important;
    z-index:6001 !important;
  }

  .mobile-menu-panel{
    position:fixed !important;
    top:0 !important;
    right:0 !important;
    bottom:0 !important;
    width:min(86vw, 360px) !important;
    max-width:360px !important;
    transform:translateX(100%) !important;
    transition:transform .28s ease !important;
    z-index:6002 !important;
    overflow-y:auto !important;
  }

  .mobile-menu-close{
    position:fixed !important;
    top:18px !important;
    right:18px !important;
    z-index:6003 !important;
  }

  body.menu-open .mobile-menu-panel{
    transform:translateX(0) !important;
  }
}





/* === FIX HORIZONTAL SCROLL ON MOBILE === */
html, body{
  max-width: 100%;
  overflow-x: hidden !important;
}

body.menu-open{
  overflow: hidden !important;
}

@media (max-width: 980px){
  .mobile-menu,
  .mobile-menu-panel,
  .mobile-menu-backdrop{
    max-width: 100vw !important;
  }

  .mobile-menu-panel{
    right: 0 !important;
    width: min(86vw, 360px) !important;
    overflow-x: hidden !important;
  }

  .page-hero,
  .hero,
  .section,
  .container,
  .timeline,
  .timeline-item,
  .detail-card{
    max-width: 100% !important;
  }
}
