*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --red:    #C0392B;
      --red-d:  #A93226;
      --dark:   #1A1A1A;
      --ink:    #2D2D2D;
      --mid:    #555;
      --steel:  #777;
      --border: #D8D8D8;
      --bg:     #F7F7F5;
      --bg2:    #FFFFFF;
      --white:  #FFFFFF;
      --radius: 3px;
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: 'Barlow', sans-serif;
      background: var(--bg);
      color: var(--ink);
      line-height: 1.6;
      overflow-x: hidden;
    }
    .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
    }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 64px;
    }
    .nav-logo { text-decoration: none; display: flex; align-items: center; }
    .nav-logo-img { height: 85px; width: auto; display: block; }
    .nav-links { display: flex; gap: 32px; list-style: none; }
    .nav-links a {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem; font-weight: 600;
      letter-spacing: .08em; text-transform: uppercase;
      color: var(--steel); text-decoration: none; transition: color .2s;
    }
    .nav-links a:hover,
    .nav-links a.active { color: var(--red); }
    .nav-cta {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--dark); color: var(--white);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .88rem; font-weight: 700;
      letter-spacing: .1em; text-transform: uppercase;
      padding: 9px 20px; border-radius: var(--radius);
      text-decoration: none; transition: background .2s;
      white-space: nowrap;
    }
    .nav-cta:hover { background: var(--red); }

    .page-hero {
      background: var(--dark);
      padding: 140px 0 72px;
      position: relative; overflow: hidden;
    }
    .page-hero::before {
      content: ''; position: absolute; inset: 0;
      background: repeating-linear-gradient(
        -55deg, transparent, transparent 60px,
        rgba(192,57,43,.04) 60px, rgba(192,57,43,.04) 61px
      );
    }
    .page-hero-inner { position: relative; z-index: 1; }
    .page-hero-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .82rem; font-weight: 700;
      letter-spacing: .2em; text-transform: uppercase;
      color: var(--red); margin-bottom: 16px;
      display: flex; align-items: center; gap: 10px;
    }
    .page-hero-label::before { content: ''; width: 28px; height: 2px; background: var(--red); }
    .page-hero h1 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(3rem, 7vw, 6rem);
      font-weight: 800; text-transform: uppercase;
      line-height: .95; color: var(--white);
    }
    .page-hero h1 span { color: var(--red); }
    .page-hero-sub {
      margin-top: 20px; font-size: 1.05rem;
      color: rgba(255,255,255,.65);
      max-width: 440px;
    }

    .contact-page { padding: 80px 0 96px; }

    .contact-top {
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      gap: 80px;
      align-items: start;
      margin-bottom: 64px;
    }

    .aside-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.7rem; font-weight: 800;
      text-transform: uppercase; color: var(--dark);
      margin-bottom: 32px;
    }
    .aside-title span { color: var(--red); }
    .info-block { margin-bottom: 28px; }
    .info-block-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .92rem; font-weight: 700;
      letter-spacing: .15em; text-transform: uppercase;
      color: var(--red); margin-bottom: 8px;
    }
    .info-row { display: flex; align-items: flex-start; gap: 10px; }
    .info-row svg { color: var(--red); margin-top: 3px; flex-shrink: 0; }
    .info-block-value {
      font-size: 1rem; color: var(--ink); line-height: 1.75;
    }
    .info-block-value a { color: var(--ink); text-decoration: none; transition: color .2s; }
    .info-block-value a:hover { color: var(--red); }
    .divider-h { width: 40px; height: 3px; background: var(--red); margin: 28px 0; }
    .horario-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
    .horario-table td {
      padding: 7px 0; font-size: .98rem;
      border-bottom: 1px solid var(--border);
      color: var(--ink);
    }
    .horario-table td:first-child { color: var(--steel); font-weight: 600; padding-right: 16px; }

    .form-logo { margin-bottom: 24px; }
    .form-logo-img { height: 64px; width: auto; display: block; }

    .form-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.7rem; font-weight: 800;
      text-transform: uppercase; color: var(--dark);
      margin-bottom: 8px;
    }
    .form-title span { color: var(--red); }
    .form-subtitle { font-size: .98rem; color: var(--steel); margin-bottom: 32px; }

    .contact-form { display: flex; flex-direction: column; gap: 16px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-field { display: flex; flex-direction: column; gap: 6px; }
    .form-field label {
      font-size: .92rem; font-weight: 600;
      letter-spacing: .05em; text-transform: uppercase;
      color: var(--steel);
    }
    .form-field label .req { color: var(--red); margin-left: 2px; }
    .form-field input,
    .form-field textarea,
    .form-field select {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 12px 16px;
      color: var(--ink);
      font-family: 'Barlow', sans-serif;
      font-size: .98rem;
      outline: none;
      transition: border-color .2s, box-shadow .2s;
      resize: vertical;
    }
    .form-field input:focus,
    .form-field textarea:focus,
    .form-field select:focus {
      border-color: var(--red);
      box-shadow: 0 0 0 3px rgba(192,57,43,.09);
    }
    .form-field input.error,
    .form-field textarea.error,
    .form-field select.error {
      border-color: var(--red);
      background: #FFF8F8;
    }
    .field-error {
      font-size: .84rem; color: var(--red); margin-top: 2px; display: none;
    }
    .char-count {
      font-size: .8rem; color: var(--steel);
      text-align: right; margin-top: 2px;
    }
    .char-count.warn { color: #E67E22; }
    .char-count.over { color: var(--red); }
    .form-field select { appearance: none; 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' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

    .form-submit {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--dark); color: var(--white);
      border: none; cursor: pointer;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.05rem; font-weight: 700;
      letter-spacing: .1em; text-transform: uppercase;
      padding: 15px 36px; border-radius: var(--radius);
      align-self: flex-start;
      transition: background .2s, transform .15s;
    }
    .form-submit:hover:not(:disabled) { background: var(--red); transform: translateY(-1px); }
    .form-submit:disabled { opacity: .6; cursor: not-allowed; }
    .form-note {
      font-size: .86rem; color: var(--steel); margin-top: 6px;
      display: flex; align-items: center; gap: 6px;
    }
    .form-note svg { color: var(--red); flex-shrink: 0; }

    .form-alert {
      display: none;
      padding: 14px 18px;
      border-radius: var(--radius);
      font-size: .98rem;
      font-weight: 500;
      margin-bottom: 8px;
    }
    .form-alert.success {
      background: #EDF7EE;
      border: 1px solid #A8D5AB;
      color: #2E7D32;
    }
    .form-alert.error {
      background: #FFF3F2;
      border: 1px solid #FCCFCC;
      color: #B71C1C;
    }

    .map-section { margin-top: 0; }
    .map-section-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.1rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: .1em;
      color: var(--steel); margin-bottom: 16px;
      display: flex; align-items: center; gap: 10px;
    }
    .map-section-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }
    .map-embed {
      width: 100%;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: 0 4px 20px rgba(0,0,0,.06);
    }
    .map-embed iframe { display: block; width: 100%; }

    footer { background: var(--dark); padding: 0; }
    .footer-top { padding: 56px 0 40px; border-bottom: 1px solid rgba(255,255,255,.09); }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 48px; align-items: start;
    }
    .footer-logo { display: flex; align-items: flex-start; justify-content: flex-start; margin-bottom: 16px; }
    .footer-logo-img { height: 140px; width: auto; display: block; }
    .footer-tagline { font-size: 1rem; color: rgba(255,255,255,.75); line-height: 1.6; max-width: 220px; }
    .footer-contact-list { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
    .footer-contact-list li { display: flex; align-items: center; gap: 8px; }
    .footer-contact-list svg { color: var(--red); flex-shrink: 0; }
    .footer-contact-list a { font-size: .98rem; color: rgba(255,255,255,.75); text-decoration: none; transition: color .2s; }
    .footer-contact-list a:hover { color: var(--red); }
    .footer-col-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .82rem; font-weight: 700;
      letter-spacing: .16em; text-transform: uppercase;
      color: rgba(255,255,255,.5); margin-bottom: 20px;
    }
    .footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-nav-list a { font-size: 1rem; color: rgba(255,255,255,.75); text-decoration: none; transition: color .2s; }
    .footer-nav-list a:hover { color: var(--red); }
    .footer-hours-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .footer-hours-list li { font-size: .98rem; color: rgba(255,255,255,.75); display: flex; justify-content: space-between; gap: 16px; }
    .footer-hours-list .day { color: rgba(255,255,255,.5); }
    .footer-bottom { padding: 20px 0; }
    .footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
    .footer-copy { font-size: .94rem; color: rgba(255,255,255,.45); }
    .footer-bottom-links { display: flex; gap: 20px; list-style: none; }
    .footer-bottom-links a { font-size: .94rem; color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
    .footer-bottom-links a:hover { color: var(--red); }

    @media (max-width: 860px) {
      .contact-top { grid-template-columns: 1fr; gap: 48px; }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    }
    @media (max-width: 768px) { .nav-links { display: none; } }
    @media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

    .reveal { opacity: 0; transform: translateY(20px); }
    .footer-dev { font-size: .88rem; color: rgba(255,255,255,.35); }
    .footer-dev a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
    .footer-dev a:hover { color: var(--red); }

.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: stretch;
  background: rgba(26,26,26,.09);
  border-radius: var(--radius);
  padding: 2px;
  flex-shrink: 0;
}
.lang-slide {
  position: absolute;
  top: 2px; left: 0;
  height: calc(100% - 4px);
  background: var(--dark);
  border-radius: calc(var(--radius) - 1px);
  transition: transform .22s cubic-bezier(.4,0,.2,1), width .22s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  z-index: 0;
}
.lang-btn {
  position: relative; z-index: 1;
  background: none; border: none; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .73rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--steel);
  padding: 5px 9px;
  border-radius: calc(var(--radius) - 1px);
  transition: color .22s;
  line-height: 1;
  white-space: nowrap;
}
.lang-btn.active { color: var(--white); }
.lang-btn:hover:not(.active) { color: var(--ink); }

.goog-te-banner-frame,
.skiptranslate,
.goog-te-balloon-frame,
#goog-gt-tt,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf { display: none !important; }
body { top: 0 !important; }