:root {
  --mako-black: #000000;
  --mako-red: #e30613;
  --idea-yellow: #ffc629;
  --mako-white: #ffffff;
  --mako-dark: #080808;
  --mako-gray: #111111;
  --mako-soft-white: rgba(255,255,255,0.82);
  --mako-border: rgba(255,255,255,0.16);
  --mako-red-soft: rgba(227,6,19,0.22);
  --font-main: Arial, Helvetica, sans-serif;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Basics */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    background-color: var(--mako-black);
    color: var(--mako-white);
    font-family: var(--font-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4 {
    font-family: 'Arial Black', sans-serif;
    text-transform: uppercase;
}

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

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.mako-red-text { color: var(--mako-red); }
.center-text { text-align: center; }
.text-left { text-align: left; }
.center-block { margin-left: auto; margin-right: auto; }
.mt-40 { margin-top: 40px; }
.btn-main {
    display: inline-block;
    padding: 18px 45px;
    background-color: var(--mako-red);
    color: var(--mako-white);
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.4s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    letter-spacing: 1px;
}

.btn-main:hover {
    background-color: var(--mako-white);
    color: var(--mako-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.d-flex-center { display: flex; justify-content: center; align-items: center; }
.d-inline-block { display: inline-block; }
.mb-20 { margin-bottom: 20px; }
.mb-60 { margin-bottom: 60px; }
.mb-40 { margin-bottom: 40px; }
.bg-black { background-color: var(--mako-black) !important; }

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--mako-red);
    transform-origin: 0% 50%;
    transform: scaleX(0);
    z-index: 9999;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-logo {
    height: 60px;
    width: auto;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 5% 0 5%; /* Added padding top as requested */
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35; /* Oscurecido para mayor contraste */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.92) 100%);
    z-index: 1;
}

.hero-title {
    font-size: clamp(3.8rem, 6.2vw, 7.6rem);
    line-height: 0.9;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    max-width: 74vw;
}

.hero-line-light {
    font-weight: 760;
}

.hero-line-medium {
    font-weight: 860;
}

.hero-line-heavy {
    font-weight: 950;
}

.hero-idea-word {
    color: var(--idea-yellow);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 1.7vw, 1.7rem);
    line-height: 1.55;
    color: var(--mako-soft-white);
    max-width: 560px;
    position: relative;
    z-index: 2;
}

.hero-talk-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    color: var(--mako-white);
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.hero-talk-link::after {
    content: "";
    width: 72px;
    height: 3px;
    background: var(--mako-red);
    transition: width 0.35s ease, background-color 0.35s ease;
}

.hero-talk-link:hover::after {
    width: 112px;
    background: var(--idea-yellow);
}

.montra-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
    align-items: end;
    gap: 56px;
    width: 100%;
}

.hero-side-panel {
    align-self: end;
    margin-bottom: 72px;
}

.hero-client-stack {
    display: flex;
    align-items: center;
    margin-bottom: 26px;
}

.hero-client-avatar,
.hero-client-more {
    width: 58px;
    height: 58px;
    border: 5px solid var(--mako-red);
    border-radius: 50%;
    background: var(--mako-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-left: -13px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.32);
}

.hero-client-avatar:first-child {
    margin-left: 0;
}

.hero-client-avatar img {
    width: 78%;
    height: 78%;
    object-fit: contain;
}

.hero-client-more {
    color: var(--mako-white);
    background: var(--mako-red);
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 1.9rem;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.28s ease, background-color 0.28s ease, color 0.28s ease;
}

.hero-client-more:hover {
    transform: translateY(-3px) scale(1.04);
    background: var(--mako-black);
    color: var(--mako-white);
    border-color: var(--mako-red);
}

.hero-baseline {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 4px;
    background: var(--mako-white);
    margin-top: 46px;
    opacity: 0.96;
}

/* Sections Base */
.section-panel {
    padding: 120px 0;
    position: relative;
}

.huge-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 40px;
    line-height: 1;
    white-space: normal;
    text-transform: uppercase;
}

.subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 30px;
    color: var(--mako-red);
}

.description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--mako-soft-white);
    margin-bottom: 40px;
    max-width: 800px;
}

.areas-section {
    padding: 100px 0;
    background: var(--mako-black);
}

.mobile-motion-divider {
    --motion-x: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 260px;
    margin: 0;
    background:
        radial-gradient(circle at center, rgba(227,6,19,0.12) 0%, transparent 42%),
        var(--mako-black);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.mobile-motion-divider > svg {
    width: min(62vw, 720px);
    height: auto;
    opacity: 0.95;
    transition: transform 0.45s ease, opacity 0.45s ease;
}

.motion-caption {
    position: absolute;
    top: 26px;
    z-index: 2;
    color: rgba(255,255,255,0.72);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    transition: color 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}

.motion-caption-left {
    left: clamp(48px, 12vw, 190px);
    color: var(--idea-yellow);
    opacity: 0.95;
}

.motion-caption-right {
    right: clamp(48px, 12vw, 190px);
}

.motion-orb {
    position: absolute;
    left: var(--motion-x);
    top: 50%;
    z-index: 4;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--mako-white);
    background: rgba(0,0,0,0.74);
    border: 1px solid rgba(255,255,255,0.62);
    box-shadow: 0 0 0 5px rgba(227,6,19,0.07), 0 0 24px rgba(227,6,19,0.32);
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: left 0.16s ease-out, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.orb-icon {
    position: absolute;
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.orb-result {
    width: 14px;
    height: 14px;
    opacity: 1;
    transform: scale(1) rotate(0);
}

.motion-line {
    fill: none;
    stroke: var(--mako-red);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-dasharray: 48 18;
    animation: motionDash 5.2s linear infinite;
    filter: drop-shadow(0 0 6px rgba(227,6,19,0.25));
    transition: stroke-width 0.35s ease, filter 0.35s ease, opacity 0.35s ease;
}

.motion-line-b {
    stroke: rgba(255,255,255,0.72);
    stroke-width: 1.2;
    animation-duration: 6.4s;
    animation-direction: reverse;
}

.motion-dot {
    fill: var(--mako-red);
    transform-box: fill-box;
    transform-origin: center;
    animation: motionPulse 1.6s ease-in-out infinite;
    transition: filter 0.35s ease;
}

.motion-dot-b {
    fill: var(--mako-white);
    animation-delay: 0.45s;
}

.mobile-motion-divider:hover svg {
    transform: scale(1.06);
    opacity: 1;
}

.mobile-motion-divider:hover .motion-line {
    stroke-width: 3.2;
    animation-duration: 1.8s;
    filter: drop-shadow(0 0 16px rgba(227,6,19,0.8));
}

.mobile-motion-divider:hover .motion-line-b {
    stroke: rgba(255,255,255,0.95);
    stroke-width: 1.8;
    animation-duration: 2.1s;
    filter: drop-shadow(0 0 14px rgba(255,255,255,0.5));
}

.mobile-motion-divider:hover .motion-dot {
    animation-duration: 0.75s;
    filter: drop-shadow(0 0 12px rgba(227,6,19,0.95));
}

.idea-motion-divider:hover .motion-orb,
.idea-motion-divider.is-active .motion-orb {
    background: rgba(227,6,19,0.82);
    border-color: var(--mako-white);
    box-shadow: 0 0 0 7px rgba(227,6,19,0.1), 0 0 30px rgba(227,6,19,0.64);
}

.idea-motion-divider.is-active .motion-caption-left {
    color: var(--idea-yellow);
    opacity: 1;
}

.idea-motion-divider.is-result .motion-caption-right {
    color: var(--mako-red);
    opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
    .idea-motion-divider.is-ready:hover {
        cursor: none;
    }
}

@keyframes motionDash {
    to { stroke-dashoffset: -132; }
}

@keyframes motionPulse {
    0%, 100% { opacity: 0.35; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.25); }
}

.areas-accordion {
    display: flex;
    width: 100%;
    height: 75vh;
    overflow: hidden;
    gap: 0;
}

.area-panel {
    position: relative;
    flex: 1;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.area-panel:last-child {
    border-right: none;
}

.area-panel.active {
    flex: 3.5;
}

/* Video Background */
.panel-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.panel-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Oscuro por defecto */
    transition: opacity 0.8s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(1.1);
}

.area-panel.active .panel-video-bg video {
    opacity: 1;
    transform: scale(1);
}

/* Overlay cristalino para contenido */
.panel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
    z-index: 1;
    transition: opacity 0.8s ease;
}

/* Content Panel */
.panel-content {
    position: relative;
    z-index: 2;
    padding: 50px;
    width: 100%;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.panel-number {
    font-size: 1rem;
    color: var(--mako-red);
    font-weight: 900;
    margin-bottom: 15px;
    display: block;
    letter-spacing: 2px;
}

.panel-title {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 950;
    color: var(--mako-white);
    margin: 0;
    text-transform: uppercase;
    line-height: 1;
    font-family: 'Arial Black', sans-serif;
}

.panel-description {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.8s ease, opacity 0.8s ease, margin-top 0.8s ease;
    max-width: 500px;
    color: var(--mako-white);
}

.area-panel.active .panel-description {
    max-height: 200px;
    opacity: 1;
    margin-top: 25px;
}

.area-panel:not(.active):hover .panel-video-bg video {
    opacity: 0.6;
}

/* Split Section */
.split-section {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}

.split-left, .split-right {
    flex: 1;
    min-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-block, .sticky-content {
    padding: 100px 5%;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.visual-element-static {
    width: 100%;
    height: 100%;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.visual-element-static img, .visual-element-static video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* MEDIA COLLAGE - EVENTOS */
.media-collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 50vh);
    width: 100%;
    height: 100vh;
}

.media-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--mako-border);
}

.media-steps-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10% 8%; /* Más aire lateral */
    pointer-events: none;
}

.media-steps-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px 40px; /* El "Sweet Spot" de equilibrio */
    pointer-events: none;
}

.media-steps-overlay .step-box:last-child {
    margin-bottom: 5px; /* Elimina el empuje extra del último elemento */
}

.media-steps-overlay .step-box {
    display: flex;
    align-items: center;
    gap: 15px; /* Menos gap */
    margin-bottom: 25px; /* Spacing más contenido */
}

.media-steps-overlay .step-num {
    font-size: 1.8rem; /* Tamaño mucho más elegante y contenido */
    font-weight: 950;
    color: var(--mako-red);
    line-height: 1;
    font-family: 'Arial Black', sans-serif;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    flex-shrink: 0;
}

.media-steps-overlay h4 {
    font-size: 0.75rem; /* Tamaño pequeño tipo "etiqueta de lujo" */
    font-weight: 900;
    color: var(--mako-white);
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 1.5px;
    line-height: 1.2;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
    max-width: 140px; /* Ancho controlado para que no desborde */
}

.media-item:hover .media-steps-overlay {
    background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.4) 100%);
}

.media-item:hover .step-num {
    transform: translateX(10px);
    text-shadow: 0 0 20px rgba(227, 6, 19, 0.8);
}

.media-item:hover h4 {
    transform: translateX(15px);
    color: var(--mako-white);
}

.media-steps-overlay .step-num, .media-steps-overlay h4 {
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.media-item video, .media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.media-item:hover video, .media-item:hover img {
    transform: scale(1.1);
}

/* AUDIO CONTROL OVERLAY */
.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.audio-toggle {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.audio-toggle:hover {
    background: var(--mako-red);
    transform: scale(1.1);
}

.audio-toggle svg {
    width: 18px;
    height: 18px;
    fill: white;
}

.audio-toggle.is-muted .unmute-icon { display: block; }
.audio-toggle.is-muted .mute-icon { display: none; }
.audio-toggle:not(.is-muted) .unmute-icon { display: none; }
.audio-toggle:not(.is-muted) .mute-icon { display: block; }

/* VISION GRID - NUEVO BLOQUE BAJO HERO */
.vision-grid-section {
    padding: 100px 5%;
    background: var(--mako-black);
    overflow: hidden;
}

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

.vision-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.vision-card img, .vision-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vision-card:hover img, .vision-card:hover video {
    transform: scale(1.1);
}

.vision-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 92px 30px 30px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.82) 44%,
        rgba(0, 0, 0, 0.46) 72%,
        rgba(0, 0, 0, 0) 100%
    );
    color: var(--mako-white);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 10; /* Asegura que el texto esté sobre el video de hover */
}

.vision-card:hover .vision-info {
    transform: translateY(0);
    opacity: 1;
}

.vision-info h4 {
    color: var(--mako-red);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* ANIMACIONES LATERALES Y PROTAGONISMO */
.vision-card.from-left {
    transform: translateX(-100px);
    opacity: 0;
    transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.vision-card.from-right {
    transform: translateX(100px);
    opacity: 0;
    transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.vision-card.reveal.active {
    transform: translateX(0);
    opacity: 1;
}

.vision-video-card {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease, border 0.6s ease !important;
}

.vision-video-card.is-active {
    transform: scale(1.1) !important;
    z-index: 20;
    border: 2px solid var(--mako-red);
}

/* HOVER VIDEO CARD EFFECT */
.hover-video-card .card-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    object-fit: cover;
    z-index: 1;
}

.hover-video-card .card-image {
    transition: opacity 0.5s ease;
}

.hover-video-card:hover .card-video {
    opacity: 1;
}

.hover-video-card:hover .card-image {
    opacity: 0;
}

/* FOOTER IMPONENTE - ESTILO MONTRA */
.mako-footer {
    background: var(--mako-red);
    color: var(--mako-white);
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px 0 0 0; /* Fondo full width, sin padding lateral ni inferior */
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.footer-keywords {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-top: 20px;
    padding: 0 5%;
}

.keyword-item {
    font-size: clamp(1.5rem, 4vw, 5rem);
    font-weight: 950;
    text-transform: uppercase;
    opacity: 0.3;
    transition: opacity 0.5s ease;
    cursor: default;
}

.keyword-item:hover {
    opacity: 1;
}

.footer-main-content {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Logo y Menú en la misma línea */
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
    width: 100%;
    padding: 0 5%;
}

.footer-brand-side {
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer-nav-side ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-side ul li {
    margin-bottom: 10px;
}

.footer-nav-side ul li a {
    color: var(--mako-white);
    font-weight: 700;
    font-size: 1.1rem;
    transition: opacity 0.3s ease;
}

.footer-nav-side ul li a:hover {
    opacity: 0.7;
}

.footer-big-title {
    font-family: 'Arial Black', sans-serif;
    font-size: clamp(4rem, 10vw, 15rem); /* Reducido para evitar desborde */
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.85;
    margin-top: auto;
    margin-bottom: 0;
    text-align: center;
    letter-spacing: -3px;
    width: 100%;
    pointer-events: none;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
}

.footer-big-title .line {
    display: block;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding: 20px 5%;
    font-size: 0.9rem;
}

.footer-logo-white {
    height: 120px;
    filter: brightness(0) invert(1);
    margin-bottom: 30px;
}

/* CTA ROJO Y TESTIMONIOS - ESTILOS MONTRA */
.section-cta-contact {
    background: var(--mako-red);
    border-radius: 40px;
    margin: 60px 2%;
    padding: 80px 5%;
    overflow: hidden;
}

.contact-cta-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 30px;
}

.heading-stroke {
    -webkit-text-stroke: 1px var(--mako-white);
    color: transparent;
}

.card-testimonial {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-testimonial:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--mako-red);
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.card-testimonial:hover .testimonial-image img {
    filter: grayscale(0%) !important;
}

.card-testimonial p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--mako-white);
    opacity: 0.8;
}

.testimonial-heading {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--mako-red);
}

.testimonial-image {
    width: 72px;
    height: 72px;
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 4px;
    background: var(--mako-white);
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--mako-red);
    flex-shrink: 0;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
    filter: none;
    transform: scale(1.25);
    transition: transform 0.5s ease;
}

.card-testimonial h6 {
    margin-bottom: 5px;
    font-weight: 900;
    color: white;
    font-family: 'Arial Black', sans-serif;
}

.testimonial-designation {
    font-size: 0.75rem;
    color: var(--mako-red);
    font-weight: 700;
    margin-bottom: 0;
    text-transform: uppercase;
}

/* CLEAN COUNTER SECTION - ELEGANT VERSION */
.clean-counter-section {
    padding: 120px 5%;
    background: var(--mako-black);
    text-align: center;
    border-bottom: 1px solid var(--mako-border);
}

.counter-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.counter-number {
    font-size: clamp(8rem, 20vw, 15rem);
    font-weight: 900;
    color: var(--mako-white);
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Arial Black', sans-serif;
}

.counter-label {
    font-size: 1.2rem;
    letter-spacing: 0.5rem;
    text-transform: uppercase;
    color: var(--mako-red);
    font-weight: 800;
}

/* CARRUSEL FLOTANTE LANZAMIENTOS */
.floating-images-wrap {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    position: relative;
    z-index: 999; /* Forzar posición sobre el video */
    /* Efecto de desvanecimiento a los lados */
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.floating-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: floatCarousel 40s linear infinite;
}

.floating-track img {
    height: 180px;
    width: auto;
    display: block; /* Asegura que no haya espacios extra */
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: brightness(0.9);
}

.floating-track img:hover {
    transform: scale(1.1) translateY(-10px);
    border-color: var(--mako-red);
    filter: brightness(1.1);
    box-shadow: 0 20px 40px rgba(227, 6, 19, 0.2);
}

/* SECCIÓN TELÓN (CURTAIN REVEAL) */
/* SECCIÓN TELÓN (CURTAIN REVEAL) */
.curtain-section {
    height: 125vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #000;
}

.curtain-container {
    height: 100%;
    width: 100%;
    position: relative;
    /* El efecto de clip-path se manejará por GSAP para suavidad */
}

.curtain-container::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 38%;
    z-index: 4;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.48) 62%,
        rgba(0,0,0,0.88) 100%
    );
}

.curtain-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.glass-curtain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.72) 52%,
        rgba(0, 0, 0, 0.58) 100%
    ); /* Negro cristalino con respiración arriba y abajo */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 5;
    pointer-events: none;
}

/* LANZAMIENTOS FOREGROUND (ELEMENTOS SOBRE EL VIDEO) */
.lanzamientos-foreground {
    position: relative;
    z-index: 999;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 5% 0 5%;
}

.horizontal-video-container {
    width: 100%;
    max-width: 1100px; /* Un poco más ancho para compensar el marco */
    aspect-ratio: 16/9;
    border-radius: 40px;
    overflow: hidden;
    padding: 15px; /* ESTO CREA EL MARCO CRISTALINO REAL */
    box-shadow: 0 50px 100px rgba(0,0,0,0.9);
    border: 1px solid rgba(255,255,255,0.3);
    position: relative;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

.horizontal-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 25px; /* Bordes redondeados internos para el video */
}

@keyframes floatCarousel {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); } /* Mueve la mitad del contenido duplicado */
}

/* LANZAMIENTOS FOREGROUND (ELEMENTOS SOBRE EL VIDEO) */
.lanzamientos-foreground {
    position: relative;
    z-index: 999;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 5% 0 5%;
}

.horizontal-video-container {
    width: 100%;
    max-width: 1100px; /* Un poco más ancho para compensar el marco */
    aspect-ratio: 16/9;
    border-radius: 40px;
    overflow: hidden;
    padding: 15px; /* ESTO CREA EL MARCO CRISTALINO REAL */
    box-shadow: 0 50px 100px rgba(0,0,0,0.9);
    border: 1px solid rgba(255,255,255,0.3);
    position: relative;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

.horizontal-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 25px; /* Bordes redondeados internos para el video */
}

.typewriter-box {
    background: rgba(0,0,0,0.8);
    padding: 15px 25px;
    border-left: 5px solid var(--mako-red);
    color: white;
    font-family: 'Arial Narrow', Arial, sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    backdrop-filter: blur(10px);
    border-radius: 0 10px 10px 0;
    letter-spacing: 1px;
}

/* Ajuste específico para el contador */
.counter-typewriter {
    background: rgba(255,255,255,0.03); /* Casi imperceptible, solo para estructura */
    border-left: 5px solid var(--mako-red);
    border-bottom: none;
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 0 15px 15px 0;
    margin-top: 30px;
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    display: inline-block;
    text-align: left;
}

.counter-typewriter .static-text {
    color: var(--mako-white); /* Blanco Puro */
    font-weight: 900; /* Negrita total */
}

.dynamic-text {
    color: var(--mako-red);
    display: inline-block;
    margin-left: 0;
    margin-top: 4px;
    min-height: 1.05em;
    line-height: 1.05;
    border-right: 3px solid var(--mako-red);
    padding-right: 5px;
    animation: blink 0.7s infinite;
}

.lanzamientos-fullscreen {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--mako-black);
    margin-top: 0;
    padding: 0;
}

.lanzamientos-fullscreen::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.68) 42%, rgba(0,0,0,0.22) 72%, rgba(0,0,0,0.1) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.08) 38%, rgba(0,0,0,0.58) 100%);
}

.lanzamientos-fullscreen .video-background {
    z-index: 0;
}

.lanzamientos-fullscreen .video-background video {
    opacity: 1;
    filter: saturate(1.08) contrast(1.08);
}

.lanzamientos-fullscreen .overlay {
    display: none;
}

.lanzamientos-content {
    position: relative;
    z-index: 2;
    width: min(1200px, 90vw);
    margin: 1000px auto 0;
    padding: 0 0 clamp(90px, 10vw, 150px);
    text-align: center;
    text-shadow: 0 4px 24px rgba(0,0,0,0.9);
}

.lanzamientos-content .huge-title {
    max-width: none;
    margin-bottom: 40px;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.lanzamientos-content .subtitle {
    max-width: 900px;
    margin: 0 auto 30px;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 1.2;
}

.lanzamientos-content .description {
    margin-left: auto;
    margin-right: auto;
    max-width: 720px !important;
    text-align: center;
    font-size: 1.2rem;
}

.lanzamientos-content .d-flex-center {
    justify-content: center;
}

.lanzamientos-content .bullets {
    padding-left: 20px;
}

@keyframes blink {
    50% { border-color: transparent; }
}

.counter-sublabel {
    font-size: 1rem;
    color: var(--mako-soft-white);
    max-width: 500px;
    margin-top: 20px;
    opacity: 0.8;
}

/* Fin de estilos existentes */
.step-num {
    color: var(--mako-red);
    font-family: 'Arial Black', sans-serif;
    font-size: 1.5rem;
    display: block;
    margin-bottom: 10px;
}

/* Marcas Grid */
.marcas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.marca-item img {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%) brightness(0.8);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.marca-item:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}


/* Ticker Manifiesto */
.ticker-wrap.red-ticker {
    background-color: var(--mako-red);
    padding: 30px 0;
    margin: 0;
    border: none;
    transform: none;
    width: 100%;
    overflow: hidden;
}

.ticker {
    display: flex;
    width: fit-content;
    animation: tickerAnim 40s linear infinite;
}

.ticker-wrap:hover .ticker {
    animation-play-state: paused;
}

.ticker-item {
    white-space: nowrap;
    padding: 0 30px;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 950;
    font-family: 'Arial Black', sans-serif;
    letter-spacing: -2px;
    color: var(--mako-white);
    text-transform: uppercase;
}

.ticker-wrap.dark-ticker {
    background: var(--mako-white);
    padding: 18px 0;
    border-top: 1px solid rgba(227, 6, 19, 0.16);
    border-bottom: 1px solid rgba(227, 6, 19, 0.16);
    overflow: hidden;
}

.dark-ticker .ticker {
    animation-duration: 85s;
}

.dark-ticker .ticker-item {
    color: var(--mako-red);
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(1.4rem, 3vw, 2.8rem);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    text-transform: none;
    padding: 0 22px;
}

.dark-ticker .ticker-light {
    font-weight: 400;
}

.dark-ticker .ticker-medium {
    font-weight: 700;
}

.dark-ticker .ticker-bold {
    font-weight: 900;
}

.dark-ticker .ticker-dot {
    margin: 0 18px;
    font-weight: 400;
    opacity: 0.65;
}

.outline-text {
    -webkit-text-stroke: 1.5px var(--mako-white);
    color: transparent;
}

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

/* Buttons */
.mako-button {
    display: inline-block;
    padding: 15px 40px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, background .25s ease, color .25s ease;
}

.btn-primary {
    background: var(--mako-red);
    color: var(--mako-white);
    border: 1px solid var(--mako-red);
}

.btn-primary:hover {
    background: var(--mako-white);
    color: var(--mako-black);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--mako-white);
    border: 1px solid var(--mako-white);
    margin-left: 15px;
}

.btn-secondary:hover {
    background: var(--mako-white);
    color: var(--mako-black);
    transform: translateY(-3px);
}

/* Footer */
.main-footer {
    padding: 60px 0;
    background: var(--mako-gray);
    text-align: center;
    border-top: 1px solid var(--mako-border);
}

.main-footer p {
    color: var(--mako-soft-white);
    margin-top: 10px;
}

/* Animations Base */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .9s cubic-bezier(0.16, 1, 0.3, 1), transform .9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.bullets {
    margin-bottom: 40px;
}

.bullets li {
    font-size: 1.1rem;
    color: var(--mako-soft-white);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: var(--mako-red);
    border-radius: 50%;
}

/* Floating Contact Widget */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
    transition: right 0.55s ease, bottom 0.55s ease, gap 0.55s ease, transform 0.55s ease;
}

.floating-btn {
    width: 50px;
    height: 50px;
    background-color: var(--mako-gray);
    border: 1px solid var(--mako-border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--mako-white);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.floating-btn svg {
    width: 24px;
    height: 24px;
    transition: var(--transition-smooth);
}

.floating-btn:hover {
    transform: translateY(-5px);
    border-color: var(--mako-red);
}

.web-btn:hover { background-color: var(--mako-red); }
.ig-btn:hover { background-color: #E1306C; border-color: #E1306C; }
.wp-btn:hover { background-color: #25D366; border-color: #25D366; }

.floating-contact.is-hero {
    right: 5%;
    bottom: 9vh;
    flex-direction: row;
    gap: 22px;
}

.floating-contact.is-hero .floating-btn {
    background-color: var(--mako-red);
    border-color: var(--mako-red);
}

/* Splitting overrides */
.word, .char {
    display: inline-block;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--mako-black);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.closed {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader__spinner {
    width: 60px;
    height: 60px;
    position: relative;
}

.preloader__double-bounce {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--mako-red);
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.preloader__double-bounce--delay {
    animation-delay: -1.0s;
}

@keyframes sk-bounce {
    0%, 100% { transform: scale(0.0); }
    50% { transform: scale(1.0); }
}

/* Number Counter for 10 Years */
.number-counter {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 20px;
}

.number-counter .js-counter {
    font-size: 8rem;
    font-family: 'Arial Black', Arial, sans-serif;
    color: var(--mako-red);
    line-height: 1;
}

.number-counter .counter-text {
    font-size: 3rem;
    font-family: 'Arial Black', Arial, sans-serif;
    color: var(--mako-white);
    letter-spacing: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* LOGO SLIDER - MARCAS ALIADAS */
.logo-slider {
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
    position: relative;
    background: transparent;
}

.logo-slider::before,
.logo-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(to right, rgba(0,0,0,1) 0%, transparent 100%);
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, rgba(0,0,0,1) 0%, transparent 100%);
}

.logo-track {
    display: flex;
    width: fit-content;
    animation: logoScroll 80s linear infinite;
    gap: 100px;
    align-items: center;
}

.logo-track img {
    height: 50px;
    width: auto;
    filter: grayscale(100%) brightness(1.8);
    opacity: 0.4;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.logo-track img:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.2);
}

/* CTA PREMIUM SECTION - BLOQUE 8 */
.cta-premium-section {
    background-color: var(--mako-black) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--mako-border);
    border-bottom: 1px solid var(--mako-border);
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    gap: 40px;
}

.cta-huge-text {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 950;
    color: var(--mako-white);
    line-height: 0.9;
    margin: 0;
    font-family: 'Arial Black', sans-serif;
    text-transform: uppercase;
}

.cta-text-side p {
    font-size: 1.1rem;
    color: var(--mako-soft-white);
    max-width: 400px;
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

.btn-cta-red {
    display: inline-block;
    background-color: var(--mako-red);
    color: var(--mako-white);
    padding: 25px 45px;
    font-weight: 950;
    text-decoration: none;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(227, 6, 19, 0.3);
}

.btn-cta-red:hover {
    background-color: #000;
    color: var(--mako-white);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.cta-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(227,6,19,0.05) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    pointer-events: none;
}

.mako-bridge-section {
    position: relative;
    z-index: 9999999999999;
    min-height: 58vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,0.03) 1px, transparent 1px),
        var(--mako-black);
    background-size: 120px 120px;
    border-bottom: 1px solid var(--mako-border);
    margin-top: 90px;
    padding-top: 11vh;
}

.bridge-line {
    position: absolute;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--mako-red), transparent);
    opacity: 0.8;
}

.bridge-line-top { top: 12%; }
.bridge-line-bottom { bottom: 12%; }

.bridge-kicker {
    position: relative;
    z-index: 2;
    width: min(1400px, 90%);
    margin: 0 auto 24px;
    color: var(--mako-red);
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(0.85rem, 1.4vw, 1.2rem);
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.bridge-marquee {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
}

.bridge-marquee-track {
    display: flex;
    width: max-content;
    animation: bridgeMarquee 42s linear infinite;
}

.bridge-marquee-track span {
    padding-right: clamp(36px, 5vw, 90px);
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,0.9);
    font-family: 'Arial Black', Arial, Helvetica, sans-serif;
    font-size: clamp(4rem, 13vw, 12rem);
    font-weight: 950;
    line-height: 0.9;
    text-transform: uppercase;
    white-space: nowrap;
}

.bridge-marquee-track span:nth-child(2n) {
    color: var(--mako-red);
    -webkit-text-stroke: 0;
}

.bridge-marquee-track span:nth-child(4n + 1) {
    color: var(--idea-yellow);
    -webkit-text-stroke: 0;
}

.bridge-content {
    position: relative;
    z-index: 2;
    width: min(1400px, 90%);
    margin: 28px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
}

.bridge-content p {
    max-width: 520px;
    margin: 0;
    color: var(--mako-soft-white);
    font-size: clamp(1.15rem, 2vw, 1.8rem);
    line-height: 1.25;
    font-weight: 700;
}

.bridge-steps {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.bridge-steps span {
    color: var(--mako-white);
    border-top: 2px solid var(--mako-red);
    padding-top: 10px;
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

/* Responsividad para el CTA */
@media (max-width: 992px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
    }
    .cta-text-side p {
        max-width: 100%;
    }

    .mako-bridge-section {
        min-height: 56vh;
    }

    .bridge-content {
        align-items: flex-start;
        flex-direction: column;
    }

    .bridge-steps {
        justify-content: flex-start;
    }
}

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

/* Mobile experience */
@media (max-width: 900px) {
    .container {
        padding: 0 6%;
    }

    .section-panel {
        padding: 72px 0;
    }

    .main-header {
        padding: 12px 6%;
    }

    .header-logo {
        height: 48px;
    }

    .contact-link {
        font-size: 0.82rem;
        font-weight: 800;
    }

    .hero-section {
        min-height: 92svh;
        height: auto;
        justify-content: flex-end;
        padding: 120px 6% 72px;
    }

    .montra-hero-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-title {
        font-size: clamp(2.25rem, 11.5vw, 3.7rem);
        line-height: 0.94;
        max-width: 100%;
    }

    .hero-subtitle,
    .description {
        font-size: 1rem;
        line-height: 1.55;
    }

    .hero-side-panel {
        margin-bottom: 0;
    }

    .hero-client-stack {
        margin-bottom: 18px;
    }

    .hero-talk-link {
        margin-top: 18px;
        font-size: 0.95rem;
    }

    .hero-client-avatar,
    .hero-client-more {
        width: 50px;
        height: 50px;
        border-width: 4px;
        margin-left: -11px;
    }

    .hero-client-more {
        font-size: 1.45rem;
    }

    .hero-baseline {
        margin-top: 34px;
        height: 3px;
    }

    .huge-title {
        font-size: clamp(2.25rem, 12vw, 4rem);
        margin-bottom: 24px;
    }

    .subtitle {
        font-size: clamp(1.35rem, 7vw, 2.2rem);
        line-height: 1.15;
    }

    .clean-counter-section {
        padding: 82px 6%;
    }

    .counter-number {
        font-size: clamp(6rem, 36vw, 10rem);
    }

    .counter-label {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 0.9rem;
        font-weight: 700;
        letter-spacing: 0.14rem;
        line-height: 1.25;
    }

    .typewriter-box {
        max-width: 100%;
        padding: 14px 16px;
        font-size: clamp(1.35rem, 8vw, 2rem);
        overflow: hidden;
    }

    .counter-typewriter {
        flex-wrap: wrap;
        justify-content: flex-start;
        row-gap: 4px;
        width: min(100%, 420px);
    }

    .curtain-section {
        height: 105svh;
    }

    .horizontal-impact-section {
        padding: 52px 6% 72px !important;
    }

    .horizontal-video-container {
        border-radius: 22px;
        padding: 8px;
    }

    .horizontal-video {
        border-radius: 16px;
    }

    .vision-grid-section {
        padding: 72px 6% 0;
    }

    .vision-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .vision-card {
        height: 430px;
        border-radius: 14px;
    }

    .vision-card.from-left,
    .vision-card.from-right {
        transform: translateY(28px);
    }

    .vision-info {
        opacity: 1;
        transform: none;
        padding: 24px;
        background: linear-gradient(to top, rgba(0,0,0,0.82), rgba(0,0,0,0));
    }

    .areas-section {
        padding: 72px 0 28px;
    }

    .areas-accordion {
        height: auto;
        flex-direction: column;
        gap: 32px;
        padding: 0 6%;
        overflow: visible;
    }

    .area-panel,
    .area-panel.active {
        min-height: 430px;
        flex: none;
        border: 1px solid var(--mako-border);
        border-radius: 14px;
    }

    .areas-accordion .panel-overlay {
        background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.44) 46%, rgba(0,0,0,0.08) 100%);
    }

    .panel-content {
        padding: 28px;
    }

    .panel-title {
        font-family: Arial, Helvetica, sans-serif;
        font-size: clamp(1.7rem, 8.4vw, 2.45rem);
        font-weight: 800;
        letter-spacing: 0;
        white-space: nowrap;
    }

    .panel-description,
    .area-panel.active .panel-description {
        max-height: none;
        opacity: 1;
        margin-top: 16px;
    }

    .panel-video-bg video {
        opacity: 0.7;
    }

    .split-section {
        display: block;
    }

    .mobile-motion-divider {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        height: 145px;
        margin: 0;
        padding-top: 42px;
        background: var(--mako-black);
        overflow: hidden;
    }

    .mobile-motion-divider > svg {
        width: min(86vw, 360px);
        height: auto;
        opacity: 0.95;
    }

    .motion-orb .orb-result {
        width: 14px;
        height: 14px;
    }

    .motion-caption {
        display: none;
    }

    .motion-orb {
        width: 44px;
        height: 44px;
    }

    .orb-icon {
        width: 22px;
        height: 22px;
    }

    .motion-line {
        fill: none;
        stroke: var(--mako-red);
        stroke-width: 3;
        stroke-linecap: round;
        stroke-dasharray: 48 18;
        animation: motionDash 2.8s linear infinite;
    }

    .motion-line-b {
        stroke: rgba(255,255,255,0.75);
        stroke-width: 1.5;
        animation-duration: 3.8s;
        animation-direction: reverse;
    }

    .motion-dot {
        fill: var(--mako-red);
        animation: motionPulse 1.6s ease-in-out infinite;
    }

    .motion-dot-b {
        fill: var(--mako-white);
        animation-delay: 0.45s;
    }

    @keyframes motionDash {
        to { stroke-dashoffset: -132; }
    }

    @keyframes motionPulse {
        0%, 100% { opacity: 0.35; transform: scale(0.8); }
        50% { opacity: 1; transform: scale(1.25); }
    }

    .congresos-section .huge-title {
        font-size: clamp(2rem, 9.6vw, 3.2rem);
        line-height: 1;
        white-space: nowrap;
        letter-spacing: 0;
        overflow-wrap: normal;
        word-break: keep-all;
    }

    .split-left,
    .split-right {
        min-width: 100%;
    }

    .text-block,
    .sticky-content {
        padding: 38px 6% 42px;
        max-width: none;
    }

    .congresos-section .sticky-content {
        padding-top: 8px;
    }

    .steps-container {
        padding: 0 6%;
        gap: 12px;
    }

    .step-item {
        padding: 18px;
    }

    .visual-element-static {
        min-height: 360px;
        height: 60svh;
    }

    .media-collage {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        height: auto;
    }

    .media-item {
        min-height: 320px;
    }

    .ticker-wrap.red-ticker,
    .ticker-wrap.dark-ticker {
        padding: 18px 0;
    }

    .ticker-item {
        font-size: clamp(2rem, 12vw, 3.4rem);
        letter-spacing: -1px;
        padding: 0 18px;
    }

    .dark-ticker .ticker-item {
        font-size: clamp(1.15rem, 7vw, 2rem);
    }

    .cta-premium-section {
        padding: 72px 6% !important;
    }

    .cta-container {
        gap: 28px;
        align-items: flex-start;
        text-align: left;
    }

    .cta-huge-text {
        font-size: clamp(2.1rem, 12vw, 3.8rem);
    }

    .btn-cta-red {
        width: 100%;
        padding: 18px 22px;
        text-align: center;
        font-size: 0.95rem;
    }

    .mako-bridge-section {
        min-height: 46svh;
        margin-top: 42px;
        padding-top: 9vh;
    }

    .bridge-marquee-track span {
        font-size: clamp(3.4rem, 22vw, 6rem);
        -webkit-text-stroke-width: 1px;
    }

    .bridge-content {
        gap: 24px;
        margin-top: 20px;
    }

    .bridge-content p {
        font-size: clamp(1.05rem, 5vw, 1.35rem);
    }

    .bridge-steps {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .bridge-steps span {
        width: 100%;
    }

    .lanzamientos-content {
        width: min(100%, 88vw);
        margin-top: 72svh;
        padding-bottom: 72px;
    }

    .lanzamientos-content .huge-title {
        font-size: clamp(2rem, 9.6vw, 3.2rem);
        line-height: 1;
        white-space: nowrap;
        letter-spacing: 0;
    }

    .lanzamientos-content .subtitle {
        font-size: clamp(1.25rem, 6.2vw, 1.8rem);
        line-height: 1.18;
    }

    .lanzamientos-content .description {
        font-size: 1rem;
        line-height: 1.45;
    }

    .floating-track {
        gap: 16px;
    }

    .floating-track img {
        height: 120px;
        border-radius: 10px;
    }

    .marcas-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .brands-section .huge-title {
        font-size: clamp(2rem, 9.8vw, 3.25rem);
        line-height: 0.98;
        letter-spacing: 0;
        overflow-wrap: normal;
        word-break: keep-all;
    }

    .marca-item img {
        max-width: 120px;
    }

    .card-testimonial {
        padding: 28px;
        border-radius: 16px;
    }

    .testimonials-section {
        padding: 72px 6% !important;
    }

    .testimonials-section .container {
        padding: 0;
    }

    .testimonials-section .huge-title {
        font-size: clamp(2.15rem, 11vw, 3.4rem);
        line-height: 0.95;
        white-space: nowrap;
        overflow-wrap: normal;
        word-break: keep-all;
        letter-spacing: 0;
    }

    .row {
        gap: 18px !important;
    }

    .col {
        flex: 1 1 100% !important;
        min-width: 0 !important;
        width: 100%;
    }

    .card-testimonial:hover {
        transform: none;
    }

    .card-testimonial p {
        font-size: 1rem;
    }

    .mako-footer {
        padding: 44px 0 0;
        min-height: auto;
    }

    .footer-keywords {
        display: none;
    }

    .keyword-item {
        font-size: clamp(1.4rem, 11vw, 3rem);
        opacity: 0.55;
    }

    .footer-main-content {
        flex-direction: column;
        align-items: stretch;
        gap: 36px;
        margin-top: 0;
        padding: 0 6%;
    }

    .footer-brand-side {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        text-align: center;
        width: 100%;
    }

    .footer-contact-info {
        width: 100%;
    }

    .footer-logo-white {
        height: 86px;
        margin-bottom: 0;
    }

    .footer-contact-info p {
        font-size: clamp(1.7rem, 9vw, 2.6rem) !important;
        line-height: 0.95;
        margin-bottom: 22px !important;
        text-align: center;
    }

    .footer-contact-info .btn-main {
        width: 100%;
        max-width: 460px;
        padding: 20px 22px;
        border-radius: 999px;
        text-align: center;
        font-size: clamp(0.95rem, 4.8vw, 1.4rem);
        letter-spacing: 0.12em;
    }

    .footer-nav-side {
        width: 100%;
        text-align: left;
        padding-top: 8px;
    }

    .footer-nav-side h4 {
        font-size: clamp(1.35rem, 7vw, 2rem) !important;
        margin-bottom: 18px !important;
    }

    .footer-links li {
        margin-bottom: 14px !important;
    }

    .footer-nav-side ul li a {
        font-size: clamp(1.15rem, 6vw, 1.75rem);
        font-weight: 900;
    }

    .footer-big-title {
        font-size: clamp(2.35rem, 13.6vw, 4.8rem);
        white-space: normal;
        letter-spacing: -1px;
        line-height: 0.88;
        margin-top: 46px;
        padding: 0 4%;
    }

    .footer-big-title .line {
        overflow-wrap: anywhere;
    }

    .footer-big-title .line:last-child {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 0.36em;
        font-weight: 400;
        letter-spacing: 0.08em;
        line-height: 1.1;
        margin-top: 8px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 20px 6% 34px;
        font-size: 0.96rem;
        line-height: 1.25;
    }

    .footer-bottom > div {
        flex-direction: column;
        gap: 8px !important;
    }

    .floating-contact {
        right: 14px;
        bottom: 28px;
        gap: 10px;
        opacity: 0.82;
        transition:
            opacity 0.35s ease 0.28s,
            transform 0.35s ease 0.28s,
            right 0.55s ease,
            bottom 0.55s ease,
            gap 0.55s ease;
    }

    .floating-contact.is-hero {
        right: 14px;
        bottom: 28px;
        flex-direction: column;
        gap: 10px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(14px);
        transition-delay: 0s;
    }

    .floating-contact.is-hero .floating-btn {
        background-color: var(--mako-gray);
        border-color: var(--mako-border);
    }

    .floating-btn {
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 520px) {
    .contact-link {
        font-size: 0.72rem;
    }

    .hero-title {
        font-size: clamp(1.85rem, 10.8vw, 2.95rem);
    }

    .areas-accordion {
        gap: 28px;
        padding: 0 5%;
    }

    .vision-grid {
        gap: 28px;
    }

    .congresos-section .huge-title {
        font-size: clamp(1.72rem, 8.2vw, 2.55rem);
    }

    .area-panel,
    .area-panel.active {
        min-height: 390px;
    }

    .vision-card {
        height: 390px;
    }

    .panel-content {
        padding: 22px;
    }

    .media-item {
        min-height: 280px;
    }

    .lanzamientos-content {
        margin-top: 68svh;
    }

    .lanzamientos-content .huge-title {
        font-size: clamp(1.72rem, 8.2vw, 2.55rem);
    }

    .lanzamientos-content .subtitle {
        font-size: clamp(1.05rem, 5.4vw, 1.45rem);
    }

    .testimonial-image {
        width: 64px;
        height: 64px;
    }

    .testimonials-section .huge-title {
        font-size: clamp(1.9rem, 10vw, 2.85rem);
    }

    .brands-section .huge-title {
        font-size: clamp(1.7rem, 8.8vw, 2.65rem);
    }
}
