@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
        --yellow: #ffd900;
        --dark: #0d0d0d;
        --dark2: #161616;
        --dark3: #1f1f1f;
        --white: #fff;
        --muted: rgba(255, 255, 255, 0.5);
        --border: rgba(255, 255, 255, 0.07);
      }
      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        font-family: "Inter", sans-serif;
        background: var(--dark);
        color: var(--white);
        overflow-x: hidden;
      }

      header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        height: 72px;
        display: flex;
        align-items: center;
        padding: 0 40px;
        background: rgba(13, 13, 13, 0.92);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(255, 217, 0, 0.12);
        justify-content: space-between;
      }
      .logo-wrap {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
      }
      .logo-icon {
        width: 44px;
        height: 44px;
        background: var(--yellow);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
      }
      .logo-text {
        font-family: "Inter", sans-serif;
        font-weight: 800;
        font-size: 1.1rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        line-height: 1.1;
        color: var(--white);
      }
      .logo-text span {
        display: block;
        font-size: 0.65rem;
        letter-spacing: 0.2em;
        color: var(--yellow);
        font-weight: 600;
      }
      nav {
        display: flex;
        gap: 36px;
        align-items: center;
      }
      nav a {
        font-family: "Inter", sans-serif;
        font-weight: 700;
        font-size: 0.9rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
        transition: color 0.2s;
        position: relative;
        padding-bottom: 4px;
      }
      nav a::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--yellow);
        transition: width 0.3s;
      }
      nav a:hover,
      nav a.active {
        color: var(--white);
      }
      nav a:hover::after,
      nav a.active::after {
        width: 100%;
      }
      nav a.active {
        color: var(--yellow);
      }
      .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 6px;
      }
      .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--white);
      }
      .mobile-overlay {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 200;
        background: var(--dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      }
      .mobile-overlay.open {
        transform: translateX(0);
      }
      .mobile-close {
        position: absolute;
        top: 20px;
        right: 24px;
        font-family: "Inter", sans-serif;
        font-weight: 700;
        font-size: 0.85rem;
        letter-spacing: 0.15em;
        background: rgba(255, 255, 255, 0.08);
        color: var(--white);
        border: none;
        padding: 10px 20px;
        border-radius: 6px;
        cursor: pointer;
        text-transform: uppercase;
      }
      .mobile-nav-a {
        font-family: "Inter", sans-serif;
        font-weight: 900;
        font-size: 2.2rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: rgba(255, 255, 255, 0.5);
        text-decoration: none;
        padding: 10px 40px;
        border-radius: 8px;
        transition: all 0.25s;
        width: 80%;
        text-align: center;
      }
      .mobile-nav-a:hover,
      .mobile-nav-a.active {
        color: var(--dark);
        background: var(--yellow);
      }

      .hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        overflow: hidden;
      }
      .hero-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
      }
      .hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }
      .hero-bg-placeholder {
        width: 100%;
        height: 100%;
        background: linear-gradient(
          135deg,
          #0a1520 0%,
          #0d1a2a 40%,
          #0d0d0d 100%
        );
        display: flex;
        align-items: center;
        justify-content: center;
        background-image: url("../img/bg-taller.webp");
        background-size: cover;
        background-position: center;
      }
      .hero-overlay-l {
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(
          105deg,
          rgba(13, 13, 13, 0.93) 0%,
          rgba(13, 13, 13, 0.6) 50%,
          rgba(13, 13, 13, 0.15) 100%
        );
      }
      .hero-overlay-b {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 45%;
        z-index: 2;
        background: linear-gradient(
          to top,
          rgba(13, 13, 13, 1) 0%,
          transparent 100%
        );
      }
      .hero-content {
        position: relative;
        z-index: 10;
        padding: 100px 60px 90px;
        max-width: 820px;
        animation: fadeUp 0.9s ease both;
      }
      @keyframes fadeUp {
        from {
          opacity: 0;
          transform: translateY(28px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      .hero-tag {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-family: "Inter", sans-serif;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--yellow);
        margin-bottom: 18px;
      }
      .hero-tag-line {
        width: 32px;
        height: 2px;
        background: var(--yellow);
      }
      .hero-title {
        font-family: "Inter", sans-serif;
        font-weight: 900;
        font-size: clamp(3.2rem, 8vw, 7rem);
        line-height: 0.88;
        letter-spacing: -0.01em;
        text-transform: uppercase;
        margin-bottom: 24px;
      }
      .hero-title .accent {
        color: var(--yellow);
      }
      .hero-title .outline {
        -webkit-text-stroke: 2px rgba(255, 255, 255, 0.4);
        color: transparent;
      }
      .hero-divider {
        width: 60px;
        height: 3px;
        background: var(--yellow);
        margin-bottom: 20px;
      }
      .hero-sub {
        font-size: clamp(1rem, 2vw, 1.2rem);
        color: rgba(255, 255, 255, 0.75);
        line-height: 1.65;
        max-width: 560px;
        margin-bottom: 36px;
      }
      .hero-actions {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
      }
      .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: "Inter", sans-serif;
        font-weight: 800;
        font-size: 0.95rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        background: var(--yellow);
        color: var(--dark);
        border: none;
        padding: 14px 32px;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.25s;
        text-decoration: none;
      }
      .btn-primary:hover {
        background: var(--white);
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(255, 217, 0, 0.25);
      }
      .btn-outline {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: "Inter", sans-serif;
        font-weight: 700;
        font-size: 0.95rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        background: transparent;
        color: var(--white);
        border: 2px solid rgba(255, 255, 255, 0.3);
        padding: 12px 28px;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.25s;
        text-decoration: none;
      }
      .btn-outline:hover {
        border-color: var(--yellow);
        color: var(--yellow);
      }
      .hero-promo-bar {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 10;
        background: var(--yellow);
        padding: 14px 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
      }
      .promo-text {
        font-family: "Inter", sans-serif;
        font-weight: 900;
        font-size: 1.1rem;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--dark);
      }
      .promo-badge {
        background: var(--dark);
        color: var(--yellow);
        font-family: "Inter", sans-serif;
        font-weight: 800;
        font-size: 0.75rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        padding: 5px 14px;
        border-radius: 50px;
      }

      section {
        padding: 90px 60px;
      }
      .section-label {
        font-family: "Inter", sans-serif;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        color: var(--yellow);
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .section-label::before {
        content: "";
        display: block;
        width: 24px;
        height: 2px;
        background: var(--yellow);
      }
      .section-title {
        font-family: "Inter", sans-serif;
        font-weight: 900;
        font-size: clamp(2.2rem, 4.5vw, 3.6rem);
        text-transform: uppercase;
        line-height: 0.95;
        letter-spacing: -0.01em;
        margin-bottom: 48px;
      }
      .section-title .dim {
        color: rgba(255, 255, 255, 0.2);
      }

      /* SERVICES TOP 5 */
      .services-section {
        background: var(--dark2);
      }
      .services-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 3px;
      }
      .service-card {
        background: var(--dark);
        padding: 32px 24px;
        text-align: center;
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
      }
      .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--yellow);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.3s;
      }
      .service-card:hover::before {
        transform: scaleX(1);
      }
      .service-card:hover {
        background: var(--dark3);
        transform: translateY(-4px);
      }
      .service-rank {
        font-family: "Inter", sans-serif;
        font-weight: 900;
        font-size: 3rem;
        color: rgba(255, 217, 0, 0.1);
        line-height: 1;
        margin-bottom: 12px;
      }
      .service-icon {
        font-size: 2rem;
        margin-bottom: 14px;
      }
      .service-name {
        font-family: "Inter", sans-serif;
        font-weight: 800;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        margin-bottom: 8px;
      }
      .service-desc {
        font-size: 0.8rem;
        color: var(--muted);
        line-height: 1.5;
      }

      /* SPLIT */
      .split-section {
        background: var(--dark);
      }
      .split-wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
      }
      .split-wrap.reverse {
        direction: rtl;
      }
      .split-wrap.reverse > * {
        direction: ltr;
      }
      .split-img {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        aspect-ratio: 4/3;
      }
      .split-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }
      .split-img-placeholder {
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #0a1520, #0d0d0d);
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 320px;
        border-radius: 16px;
      }
      .split-img-placeholder span {
        font-size: 6rem;
        opacity: 0.15;
      }
      .img-badge {
        position: absolute;
        bottom: 20px;
        left: 20px;
        background: var(--yellow);
        color: var(--dark);
        font-family: "Inter", sans-serif;
        font-weight: 800;
        font-size: 0.8rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        padding: 8px 16px;
        border-radius: 6px;
      }
      .split-body p {
        font-size: 0.97rem;
        color: rgba(255, 255, 255, 0.65);
        line-height: 1.8;
        margin-bottom: 14px;
      }
      .split-body p:last-child {
        margin-bottom: 0;
      }
      .split-body strong {
        color: rgba(255, 255, 255, 0.9);
      }
      .split-quote {
        font-family: "Inter", sans-serif;
        font-weight: 800;
        font-size: clamp(1.3rem, 2.5vw, 1.9rem);
        text-transform: uppercase;
        line-height: 1.1;
        color: var(--white);
        margin-bottom: 20px;
      }
      .split-quote .accent {
        color: var(--yellow);
        font-style: italic;
      }

      /* PLANS */
      .plans-section {
        background: var(--dark2);
      }
      .plans-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 3px;
      }
      .plan-card {
        background: var(--dark);
        padding: 44px 36px;
        position: relative;
        transition: all 0.3s;
      }
      .plan-card.featured {
        background: var(--dark3);
        border-top: 4px solid var(--yellow);
      }
      .plan-card:hover {
        transform: translateY(-4px);
      }
      .plan-badge {
        display: inline-block;
        font-family: "Inter", sans-serif;
        font-weight: 700;
        font-size: 0.7rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        padding: 4px 12px;
        border-radius: 50px;
        margin-bottom: 20px;
      }
      .plan-badge.bronze {
        background: rgba(205, 127, 50, 0.15);
        color: #cd7f32;
        border: 1px solid rgba(205, 127, 50, 0.3);
      }
      .plan-badge.silver {
        background: rgba(192, 192, 192, 0.15);
        color: #c0c0c0;
        border: 1px solid rgba(192, 192, 192, 0.3);
      }
      .plan-badge.gold {
        background: rgba(255, 217, 0, 0.15);
        color: var(--yellow);
        border: 1px solid rgba(255, 217, 0, 0.3);
      }
      .plan-name {
        font-family: "Inter", sans-serif;
        font-weight: 900;
        font-size: 2.2rem;
        text-transform: uppercase;
        margin-bottom: 8px;
      }
      .plan-price {
        font-family: "Inter", sans-serif;
        font-weight: 900;
        font-size: 3rem;
        color: var(--yellow);
        line-height: 1;
        margin-bottom: 4px;
      }
      .plan-price span {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--muted);
      }
      .plan-promo {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.5);
        margin-bottom: 28px;
        font-style: italic;
      }
      .plan-divider {
        height: 1px;
        background: var(--border);
        margin-bottom: 24px;
      }
      .plan-features {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 32px;
      }
      .plan-features li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 0.88rem;
        color: rgba(255, 255, 255, 0.65);
        line-height: 1.5;
      }
      .plan-features li::before {
        content: "✓";
        color: var(--yellow);
        font-weight: 800;
        flex-shrink: 0;
        margin-top: 1px;
      }
      .plan-features li.disabled {
        color: rgba(255, 255, 255, 0.25);
      }
      .plan-features li.disabled::before {
        content: "—";
        color: rgba(255, 255, 255, 0.2);
      }
      .btn-plan {
        width: 100%;
        font-family: "Inter", sans-serif;
        font-weight: 800;
        font-size: 0.9rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        padding: 13px;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.25s;
        text-decoration: none;
        display: block;
        text-align: center;
      }
      .btn-plan.outline {
        border: 2px solid rgba(255, 255, 255, 0.2);
        color: rgba(255, 255, 255, 0.5);
        background: none;
      }
      .btn-plan.outline:hover {
        border-color: var(--yellow);
        color: var(--yellow);
      }
      .btn-plan.filled {
        background: var(--yellow);
        color: var(--dark);
        border: none;
      }
      .btn-plan.filled:hover {
        background: var(--white);
        transform: translateY(-1px);
      }
      .featured-tag {
        position: absolute;
        top: -1px;
        right: 24px;
        background: var(--yellow);
        color: var(--dark);
        font-family: "Inter", sans-serif;
        font-weight: 800;
        font-size: 0.7rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        padding: 5px 14px;
        border-radius: 0 0 6px 6px;
      }

      /* REGISTRO */
      .register-section {
        background: var(--dark);
      }
      .register-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
      }
      .register-steps {
        display: flex;
        flex-direction: column;
        gap: 24px;
      }
      .reg-step {
        display: flex;
        gap: 20px;
        align-items: flex-start;
      }
      .reg-step-num {
        width: 44px;
        height: 44px;
        background: rgba(255, 217, 0, 0.12);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Inter", sans-serif;
        font-weight: 900;
        font-size: 1.1rem;
        color: var(--yellow);
        flex-shrink: 0;
      }
      .reg-step-title {
        font-family: "Inter", sans-serif;
        font-weight: 800;
        font-size: 1.05rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 4px;
      }
      .reg-step-desc {
        font-size: 0.87rem;
        color: var(--muted);
        line-height: 1.6;
      }
      .register-cta {
        background: var(--dark2);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 40px;
      }
      .register-cta h3 {
        font-family: "Inter", sans-serif;
        font-weight: 900;
        font-size: 1.8rem;
        text-transform: uppercase;
        margin-bottom: 14px;
      }
      .register-cta p {
        font-size: 0.9rem;
        color: var(--muted);
        line-height: 1.7;
        margin-bottom: 24px;
      }
      .register-cta .contacts {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 28px;
      }
      .contact-item {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 0.88rem;
        color: rgba(255, 255, 255, 0.65);
      }
      .contact-icon {
        width: 36px;
        height: 36px;
        background: rgba(255, 217, 0, 0.1);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        flex-shrink: 0;
      }
      .contact-item a {
        color: var(--yellow);
        text-decoration: none;
      }

      /* GALLERY */
      .gallery-section {
        background: var(--dark2);
        padding: 0;
      }
      .gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 3px;
      }
      .gallery-item {
        position: relative;
        aspect-ratio: 1;
        overflow: hidden;
        background: var(--dark3);
      }
      .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
        display: block;
      }
      .gallery-item:hover img {
        transform: scale(1.06);
      }
      .gallery-item-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: background 0.3s;
        background: var(--dark3);
      }
      .gallery-item:hover .gallery-item-placeholder {
        background: #222;
      }
      .gallery-item-placeholder span {
        font-size: 2.5rem;
        opacity: 0.2;
      }
      .gallery-item-placeholder p {
        font-family: "Inter", sans-serif;
        font-size: 0.65rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.2);
      }
      .gallery-item.wide {
        grid-column: span 2;
        aspect-ratio: 2/1;
      }

      /* QUOTE BAND */
      .quote-band {
        background: var(--yellow);
        padding: 70px 60px;
        display: flex;
        gap: 60px;
        align-items: center;
        flex-wrap: wrap;
      }
      .quote-main {
        flex: 1;
        min-width: 280px;
      }
      .quote-text {
        font-family: "Inter", sans-serif;
        font-weight: 900;
        font-size: clamp(1.8rem, 3.5vw, 2.8rem);
        text-transform: uppercase;
        line-height: 1;
        color: var(--dark);
        margin-bottom: 14px;
      }
      .quote-sub-text {
        font-size: 0.95rem;
        color: rgba(13, 13, 13, 0.65);
        line-height: 1.6;
      }
      .quote-action {
        flex-shrink: 0;
      }
      .btn-dark {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: "Inter", sans-serif;
        font-weight: 800;
        font-size: 0.95rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        background: var(--dark);
        color: var(--yellow);
        border: none;
        padding: 16px 36px;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.25s;
        text-decoration: none;
      }
      .btn-dark:hover {
        background: #222;
        transform: translateY(-2px);
      }

      footer {
        background: #080808;
        padding: 48px 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
      }
      .footer-brand {
        font-family: "Inter", sans-serif;
        font-weight: 900;
        font-size: 1.5rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--white);
      }
      .footer-brand span {
        color: var(--yellow);
      }
      .footer-links {
        display: flex;
        gap: 28px;
        flex-wrap: wrap;
      }
      .footer-links a {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.4);
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-weight: 500;
        transition: color 0.2s;
      }
      .footer-links a:hover {
        color: var(--yellow);
      }
      .footer-copy {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.25);
      }

      @media (max-width: 1000px) {
        .services-grid {
          grid-template-columns: repeat(3, 1fr);
        }
        .plans-grid {
          grid-template-columns: 1fr;
          gap: 16px;
        }
      }
      @media (max-width: 900px) {
        section {
          padding: 60px 24px;
        }
        .split-wrap,
        .split-wrap.reverse {
          grid-template-columns: 1fr;
          direction: ltr;
        }
        .register-grid {
          grid-template-columns: 1fr;
        }
        .gallery-grid {
          grid-template-columns: 1fr 1fr;
        }
        .gallery-item.wide {
          grid-column: span 2;
        }
        .quote-band {
          padding: 50px 24px;
        }
      }
      @media (max-width: 600px) {
        header {
          padding: 0 20px;
        }
        nav {
          display: none;
        }
        .hamburger {
          display: flex;
        }
        .mobile-overlay {
          display: flex;
        }
        .hero-content {
          padding: 100px 24px 100px;
        }
        .services-grid {
          grid-template-columns: 1fr 1fr;
        }
        .gallery-grid {
          grid-template-columns: 1fr;
        }
        .gallery-item.wide {
          grid-column: span 1;
          aspect-ratio: 4/3;
        }
        footer {
          padding: 40px 24px;
          flex-direction: column;
        }
      }