/* Start custom CSS */*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --black: #080808;
    --dark: #111111;
    --card: #161616;
    --border: #222222;
    --amber: #E8A030;
    --amber-dim: #7A4F10;
    --white: #F2EDE6;
    --grey: #888888;
    --light-grey: #BBBBBB;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    cursor: none;
  }

  /* Custom cursor */
  .cursor {
    position: fixed;
    width: 10px; height: 10px;
    background: var(--amber);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
  }
  .cursor-ring {
    position: fixed;
    width: 36px; height: 36px;
    border: 1px solid rgba(232,160,48,0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.25s ease;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 28px 60px;
    background: linear-gradient(to bottom, rgba(8,8,8,0.95), transparent);
  }
  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 4px;
    color: var(--white);
    text-decoration: none;
  }
  .nav-logo span { color: var(--amber); }
  .nav-links { display: flex; gap: 40px; list-style: none; }
  .nav-links a {
    color: var(--grey);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--amber); }
  .nav-cta {
    background: var(--amber);
    color: var(--black);
    padding: 10px 24px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
  }
  .nav-cta:hover { background: var(--white); }

  /* HERO */
  .hero {
    height: 100vh;
    position: relative;
    display: flex; align-items: flex-end;
    padding: 0 60px 80px;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 80% at 70% 40%, rgba(232,160,48,0.07) 0%, transparent 60%),
      radial-gradient(ellipse 40% 60% at 20% 80%, rgba(232,160,48,0.04) 0%, transparent 50%),
      linear-gradient(180deg, #0d0d0d 0%, #080808 100%);
  }
  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(232,160,48,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(232,160,48,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
  }
  .hero-noise {
    position: absolute; inset: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 256px 256px;
  }
  .hero-label {
    position: absolute; top: 120px; right: 60px;
    font-size: 11px; letter-spacing: 3px;
    text-transform: uppercase; color: var(--amber);
    writing-mode: vertical-rl;
    display: flex; align-items: center; gap: 12px;
  }
  .hero-label::before {
    content: '';
    display: block; width: 1px; height: 60px;
    background: var(--amber);
  }
  .hero-content { position: relative; z-index: 1; max-width: 900px; }
  .hero-tag {
    font-size: 11px; letter-spacing: 4px;
    text-transform: uppercase; color: var(--amber);
    margin-bottom: 24px;
    display: flex; align-items: center; gap: 16px;
  }
  .hero-tag::before {
    content: ''; display: block;
    width: 40px; height: 1px; background: var(--amber);
  }
  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(72px, 10vw, 140px);
    line-height: 0.9;
    letter-spacing: 2px;
    margin-bottom: 32px;
  }
  .hero-title em {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    color: var(--amber);
    letter-spacing: 0;
  }
  .hero-sub {
    font-size: 15px; color: var(--light-grey);
    line-height: 1.7; max-width: 480px;
    margin-bottom: 48px;
  }
  .hero-actions { display: flex; gap: 20px; align-items: center; }
  .btn-primary {
    background: var(--amber); color: var(--black);
    padding: 16px 36px;
    font-size: 12px; letter-spacing: 2px;
    text-transform: uppercase; text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--white); transform: translateY(-2px); }
  .btn-ghost {
    color: var(--grey);
    font-size: 12px; letter-spacing: 2px;
    text-transform: uppercase; text-decoration: none;
    display: flex; align-items: center; gap: 10px;
    transition: color 0.3s;
  }
  .btn-ghost:hover { color: var(--white); }
  .btn-ghost::after {
    content: '→'; font-size: 16px;
    transition: transform 0.3s;
  }
  .btn-ghost:hover::after { transform: translateX(4px); }

  .hero-stats {
    position: absolute; right: 60px; bottom: 80px;
    display: flex; flex-direction: column; gap: 24px;
    z-index: 1;
  }
  .stat { text-align: right; }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px; color: var(--amber);
    line-height: 1;
  }
  .stat-label { font-size: 11px; color: var(--grey); letter-spacing: 2px; text-transform: uppercase; }

  /* SECTION COMMONS */
  section { padding: 120px 60px; }
  .section-tag {
    font-size: 11px; letter-spacing: 4px;
    text-transform: uppercase; color: var(--amber);
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 20px;
  }
  .section-tag::before { content: ''; display: block; width: 40px; height: 1px; background: var(--amber); }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1;
    letter-spacing: 1px;
    margin-bottom: 16px;
  }
  .section-title em {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    color: var(--amber);
  }
  .section-sub { font-size: 15px; color: var(--grey); line-height: 1.7; max-width: 500px; }

  /* GALLERY */
  #galeria { background: var(--dark); }
  .gallery-header {
    display: flex; justify-content: space-between;
    align-items: flex-end; margin-bottom: 60px;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 280px 280px;
    gap: 12px;
  }
  .gallery-item {
    position: relative; overflow: hidden;
    background: var(--card);
  }
  .gallery-item:nth-child(1) { grid-column: 1 / 6; grid-row: 1; }
  .gallery-item:nth-child(2) { grid-column: 6 / 9; grid-row: 1; }
  .gallery-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 3; }
  .gallery-item:nth-child(4) { grid-column: 1 / 4; grid-row: 2; }
  .gallery-item:nth-child(5) { grid-column: 4 / 9; grid-row: 2; }

  .gallery-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 12px;
    transition: transform 0.5s ease;
  }
  .gallery-item:hover img { transform: scale(1.03); }

  .gp-1 { background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%); }
  .gp-2 { background: linear-gradient(135deg, #141414 0%, #1c1c1c 100%); }
  .gp-3 { background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%); }
  .gp-4 { background: linear-gradient(135deg, #181818 0%, #0d0d0d 100%); }
  .gp-5 { background: linear-gradient(135deg, #131313 0%, #1b1b1b 100%); }

  .gallery-icon { font-size: 48px; opacity: 0.15; }
  .gallery-label {
    font-size: 11px; letter-spacing: 3px;
    text-transform: uppercase; color: var(--grey);
  }
  .gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    opacity: 0; transition: opacity 0.3s;
    display: flex; align-items: flex-end; padding: 20px;
  }
  .gallery-item:hover .gallery-overlay { opacity: 1; }
  .gallery-overlay-text { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--amber); }

  /* EQUIPMENT */
  #equipamento { background: var(--black); }
  .equipment-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 80px; }
  .equipment-category { }
  .eq-cat-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px; letter-spacing: 2px;
    color: var(--amber); margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 12px;
  }
  .eq-cat-icon { font-size: 20px; }
  .equipment-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
  .equipment-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 14px; color: var(--light-grey);
    transition: color 0.2s;
  }
  .equipment-list li:hover { color: var(--white); }
  .eq-badge {
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--amber); background: rgba(232,160,48,0.1);
    padding: 3px 10px;
  }

  /* PRICING */
  #precos { background: var(--dark); }
  .pricing-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
  .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .price-card {
    background: var(--card);
    padding: 48px 40px;
    position: relative;
    transition: background 0.3s;
    border: 1px solid var(--border);
  }
  .price-card.featured {
    background: var(--amber);
    border-color: var(--amber);
  }
  .price-card.featured * { color: var(--black) !important; }
  .price-badge {
    position: absolute; top: -1px; right: 32px;
    background: var(--amber);
    color: var(--black) !important;
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    padding: 4px 14px;
    font-weight: 500;
  }
  .price-card.featured .price-badge { background: var(--black); color: var(--amber) !important; }
  .price-plan {
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--grey); margin-bottom: 8px;
  }
  .price-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px; letter-spacing: 2px;
    margin-bottom: 24px;
  }
  .price-amount {
    display: flex; align-items: baseline; gap: 4px;
    margin-bottom: 8px;
  }
  .price-currency { font-size: 18px; color: var(--grey); }
  .price-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px; line-height: 1; letter-spacing: -1px;
  }
  .price-period { font-size: 13px; color: var(--grey); }
  .price-divider {
    height: 1px; background: rgba(255,255,255,0.1);
    margin: 28px 0;
  }
  .price-card.featured .price-divider { background: rgba(0,0,0,0.15); }
  .price-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
  .price-features li {
    font-size: 13px; color: var(--light-grey);
    display: flex; align-items: center; gap: 10px;
  }
  .price-features li::before {
    content: '✓';
    color: var(--amber);
    font-size: 12px; font-weight: bold;
    flex-shrink: 0;
  }
  .price-card.featured .price-features li::before { color: var(--black); }
  .btn-price {
    display: block; width: 100%;
    padding: 14px;
    text-align: center;
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    text-decoration: none; font-weight: 500;
    border: 1px solid currentColor;
    transition: all 0.3s;
    color: var(--amber);
  }
  .btn-price:hover { background: var(--amber); color: var(--black); border-color: var(--amber); }
  .price-card.featured .btn-price {
    background: var(--black); color: var(--amber);
    border-color: var(--black);
  }
  .price-card.featured .btn-price:hover { background: var(--dark); }

  /* CONTACT */
  #contacto { background: var(--black); }
  .contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; margin-top: 80px; }
  .contact-info { display: flex; flex-direction: column; gap: 40px; }
  .contact-item { }
  .contact-item-label {
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--amber); margin-bottom: 8px;
  }
  .contact-item-value { font-size: 16px; color: var(--light-grey); line-height: 1.6; }
  .contact-hours { }
  .hours-row {
    display: flex; justify-content: space-between;
    padding: 10px 0; border-bottom: 1px solid var(--border);
    font-size: 13px; color: var(--grey);
  }
  .hours-row span:last-child { color: var(--light-grey); }

  .contact-form { display: flex; flex-direction: column; gap: 20px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 8px; }
  .form-label {
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--grey);
  }
  .form-input, .form-select, .form-textarea {
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--white);
    padding: 14px 16px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    transition: border-color 0.3s;
    outline: none;
    width: 100%;
    appearance: none;
  }
  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--amber);
  }
  .form-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
  .form-textarea { resize: vertical; min-height: 120px; }
  .form-input::placeholder, .form-textarea::placeholder { color: #444; }
  .btn-submit {
    background: var(--amber); color: var(--black);
    padding: 16px 36px;
    font-size: 12px; letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    border: none; cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
  }
  .btn-submit:hover { background: var(--white); transform: translateY(-2px); }

  /* FOOTER */
  footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 48px 60px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px; letter-spacing: 4px;
    color: var(--white);
  }
  .footer-logo span { color: var(--amber); }
  .footer-copy { font-size: 12px; color: var(--grey); }
  .footer-links { display: flex; gap: 28px; }
  .footer-links a {
    font-size: 12px; color: var(--grey); text-decoration: none;
    letter-spacing: 1px; text-transform: uppercase;
    transition: color 0.3s;
  }
  .footer-links a:hover { color: var(--amber); }

  /* Divider line */
  .section-line {
    width: 100%; height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
  }

  /* Animations */
  .fade-in {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .fade-in.visible { opacity: 1; transform: translateY(0); }

  .hero-content > * {
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
  }
  .hero-tag { animation-delay: 0.2s; }
  .hero-title { animation-delay: 0.4s; }
  .hero-sub { animation-delay: 0.6s; }
  .hero-actions { animation-delay: 0.8s; }

  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-stats > * {
    opacity: 0; animation: fadeUp 0.8s ease forwards;
  }
  .hero-stats > *:nth-child(1) { animation-delay: 0.9s; }
  .hero-stats > *:nth-child(2) { animation-delay: 1.0s; }
  .hero-stats > *:nth-child(3) { animation-delay: 1.1s; }

  /* Scrollbar */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--black); }
  ::-webkit-scrollbar-thumb { background: var(--amber-dim); }

  @media (max-width: 900px) {
    nav { padding: 24px 24px; }
    .nav-links { display: none; }
    section { padding: 80px 24px; }
    .hero { padding: 0 24px 60px; }
    .hero-stats { display: none; }
    .hero-label { display: none; }
    .gallery-grid { display: flex; flex-direction: column; }
    .gallery-item { height: 220px; }
    .equipment-layout { grid-template-columns: 1fr; gap: 40px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; gap: 60px; }
    .form-row { grid-template-columns: 1fr; }
    footer { flex-direction: column; gap: 20px; text-align: center; }
  }/* End custom CSS */