  :root {
    --black: #080808;
    --white: #ffffff;
    --gold: #c9a84c;
    --gold-light: #e8c96a;
    --gold-dim: rgba(201,168,76,0.15);
    --gold-border: rgba(201,168,76,0.35);
    --text-bright: #ffffff;
    --text-mid: rgba(255,255,255,0.88);
    --text-low: rgba(255,255,255,0.65);
    --smoke: #0f0f0d;
  }

  * { margin:0; padding:0; box-sizing:border-box; }
  html { scroll-behavior:smooth; }

  body {
    background: var(--black);
    color: var(--text-bright);
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    overflow-x: hidden;
  }

  /* Estilo general para enlaces */
a {
  color: #d4af37; /* tono dorado clásico */
  text-decoration: none; /* opcional: quita el subrayado */
}

.lang-logo a {
  all: unset;
  font: inherit;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.lang-logo a:hover,
.lang-logo a:focus,
.lang-logo a:visited,
.lang-logo a:active {
  color: inherit;          /* mantiene el color del texto */
  text-decoration: none;   /* evita subrayado u otros estilos */
}

/* Al pasar el mouse */
a:hover,
a:focus {
  color: #ffd700; /* dorado más brillante */
  text-decoration: underline; /* opcional: subrayado al hover */
}
  /* ── HERO ──      min-height: 100vh;*/
  .hero {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    padding: 3rem 2rem 3rem;
    position: relative; overflow: hidden;
  }
  
  .hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
      radial-gradient(ellipse 70% 55% at 50% -10%, rgba(201,168,76,0.18) 0%, transparent 65%),
      radial-gradient(ellipse 40% 30% at 50% 100%, rgba(201,168,76,0.08) 0%, transparent 60%);
  }

  .hero-lines {
    position: absolute; inset: 0; z-index: 0; overflow: hidden;
  }
  .hero-lines::before, .hero-lines::after {
    content: '';
    position: absolute; left: 50%; top: 0; bottom: 0;
    width: 1px; background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.12), transparent);
  }
  .hero-lines::before { transform: translateX(-320px); }
  .hero-lines::after { transform: translateX(320px); }

  .hero > * { position: relative; z-index: 1; }

  .hero-eyebrow {
    font-size: 10px; font-weight: 600; letter-spacing: .32em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 2rem;
    opacity: 0; animation: fadeUp .8s ease forwards .3s;
  }
  .hero-eyebrow2 {
    font-size: 15px; font-weight: 600; letter-spacing: .32em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 2rem;
    opacity: 0; animation: fadeUp .8s ease forwards .3s;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 20vw, 10rem);
    font-weight: 300; line-height: .85; letter-spacing: -.02em;
    color: var(--text-bright);
    opacity: 0; animation: fadeUp .8s ease forwards .5s;
  }

  .hero-title .gold-letter {
    color: var(--gold);
  }
  
  .hero-title2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.2rem, 20vw, 10rem);
    font-weight: 300; line-height: .85; letter-spacing: -.02em;
    color: var(--text-bright);
    opacity: 0; animation: fadeUp .8s ease forwards .5s;
  }

  .hero-tagline {
    margin-top: 1.2rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.5rem, 3.8vw, 2.2rem);
    font-weight: 300; font-style: italic;
    color: var(--text-bright);
    opacity: 0; animation: fadeUp .8s ease forwards .8s;
  }

  .hero-sub {
    margin-top: 1rem;
    font-size: 12px; font-weight: 500; letter-spacing: .15em;
    color: var(--text-low); text-transform: uppercase;
    opacity: 0; animation: fadeUp .8s ease forwards 1s;
  }


  .hero-sub em { color: var(--gold); font-style: normal; font-weight: 600; }


  .hero-date {
    margin-top: 2.5rem;
    display: inline-flex; align-items: center; gap: 1.5rem;
    border: 1px solid var(--gold-border);
    padding: 1rem 2.5rem; font-size: 11px; font-weight: 600;
    letter-spacing: .2em; text-transform: uppercase; color: var(--gold-light);
    opacity: 0; animation: fadeUp .8s ease forwards 1.2s;
  }
  .hero-date-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }

  .hero-cta {
    margin-top: 2.5rem;
    opacity: 0; animation: fadeUp .8s ease forwards 1.4s;
  }


/* hero adicional */

.hero-info {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(255,255,255,0.05); /* leve contraste */
  border-radius: 2px;
}

.hero-info .info-item {
  flex: 1;
  text-align: center;
}

.hero-info em {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.hero-info p {
  font-size: 11px; font-weight: 500; letter-spacing: .15em;  
  line-height: 1.4;
  color: var(--text-low); text-transform: uppercase;
  opacity: 0; animation: fadeUp .8s ease forwards 1s;  
}



  .btn-gold {
    display: inline-block; background: var(--gold); color: var(--black);
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif; font-size: 13px; font-weight: 700;
    letter-spacing: .25em; text-transform: uppercase;
    padding: 1rem 3rem; border: none; cursor: pointer;
    transition: all .3s; text-decoration: none;
  }
  .btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

  .hero-seats {
    margin-top: 1.5rem;
    font-size: 12px; color: var(--text-low); letter-spacing: .1em;
    opacity: 0; animation: fadeUp .8s ease forwards 1.6s;
  }
  .hero-seats em { color: var(--gold); font-style: normal; font-weight: 600; }

  .scroll-cue {
    position: absolute; bottom: 2.5rem; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: .6rem;
    opacity: 0; animation: fadeUp .8s ease forwards 2s;
  }
  .scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); }
  .scroll-cue span { font-size: 9px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--text-low); }

  /* ── GOLD BAR ── */
  .gold-bar {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
  }

.gold-rule {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 22px;
}


  /* ── VISION SECTION ── */
  .vision {
    padding: 6rem 2rem;
    max-width: 820px; margin: 0 auto;
    text-align: center;
  }

  .label {
    font-size: 9px; font-weight: 700; letter-spacing: .32em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.5rem; display: block;
  }

  .vision-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 300;
    line-height: 1.2; color: var(--text-bright); margin-bottom: 1.5rem;
  }
  .vision-title em { color: var(--gold-light); font-style: italic; }

  .vision-body {
    font-size: 15px; font-weight: 400; line-height: 1.9;
    color: var(--text-mid); max-width: 640px; margin: 0 auto;
  }

  /* ── THREE PILLARS ── */
  .pillars-section {
    background: var(--smoke);
    border-top: 1px solid rgba(201,168,76,0.12);
    border-bottom: 1px solid rgba(201,168,76,0.12);
    padding: 5rem 2rem;
  }

  .pillars-inner { margin: 0 auto; }

  .pillars-title {
    text-align: center;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 300;
    color: var(--text-bright); margin-bottom: 3.5rem;
  }
  .pillars-title em { color: var(--gold-light); font-style: italic; }

  .pillars-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: rgba(201,168,76,0.12);
  }

  .pillar {
    background: var(--smoke); padding: 2.5rem 2rem;
    position: relative;
  }
  .pillar::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0; transition: opacity .4s;
  }
  .pillar:hover::before { opacity: 1; }

  .pillar-num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3.5rem; font-weight: 300; line-height: 1;
    color: rgba(201,168,76,0.5); margin-bottom: .8rem;
  }

  .pillar-label {
    font-size: 9px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
    color: var(--gold); margin-bottom: .6rem; display: block;
  }

  .pillar-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem; font-weight: 400; color: var(--text-bright);
    margin-bottom: .8rem; line-height: 1.2;
  }

  .pillar-body {
    font-size: 13px; font-weight: 400; line-height: 1.85; color: var(--text-mid);
  }

  @media(max-width:700px){ .pillars-grid { grid-template-columns: 1fr; } }


  /* ── THREE PILLARS INFO── */
  .pillarsinfo-section {
    background: var(--smoke);
    border-top: 1px solid rgba(201,168,76,0.12);
    border-bottom: 1px solid rgba(201,168,76,0.12);
    padding: 1rem 1rem;
  }


  .pillarsinfo-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px; background: rgba(201,168,76,0.12);
  }

  .pillarinfo {
    background: var(--smoke); padding: 2.5rem 2rem;
    position: relative;
  }
  .pillarinfo::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0; transition: opacity .4s;
  }
  .pillarinfo:hover::before { opacity: 1; }

  .pillarinfo-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem; font-weight: 400; color: var(--gold);
    margin-bottom: .8rem; line-height: 1.2;
  }

  .pillarinfo-body {
    font-size: 13px; font-weight: 400; line-height: 1.85; color: var(--text-mid);
  }

  .pillarinfo-body a{
    color: var(--text-bright);
  }

  @media(max-width:700px){ .pillarsinfo-grid { grid-template-columns: 1fr; } }


  /* ── NARRATIVE QUOTE ── */
  .quote-section {
    padding: 6rem 2rem; text-align: center;
    max-width: 780px; margin: 0 auto;
  }

  .quote-mark {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 5rem; color: var(--gold); line-height: .5;
    margin-bottom: 1.5rem; display: block; opacity: .7;
  }

  .quote-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 300; font-style: italic;
    line-height: 1.25; color: var(--text-bright);
  }

  .quote-attr {
    margin-top: 1.5rem;
    font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
    color: var(--gold); display: flex; align-items: center; justify-content: center; gap: 1rem;
  }
  .quote-attr::before, .quote-attr::after { content: ''; flex: 0 0 40px; height: 1px; background: var(--gold-border); }

  /* ── WHAT AWAITS ── */
  .awaits-section {
    background: var(--smoke);
    border-top: 1px solid rgba(201,168,76,0.12);
    padding: 5rem 2rem;
  }
  .awaits-inner { max-width: 860px; margin: 0 auto; }

  .awaits-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2rem; margin-top: 3rem;
  }

.awaits-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

  .await-item {
    border-left: 1px solid var(--gold-border);
    padding-left: 1.5rem;
  }

  .await-tag {
    font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: .5rem; display: block;
    display: none;

  }

  .await-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    /*font-size: 1.25rem; font-weight: 400; color: var(--text-bright);*/
    font-size: 1.25rem; font-weight: 400; color: var(--gold);
    margin-bottom: .5rem;
  }

  .await-body {
    font-size: 13px; font-weight: 400; line-height: 1.85; color: var(--text-mid);
  }

  @media(max-width:600px){ .awaits-grid { grid-template-columns: 1fr; } }

  /* ── SEATS COUNTER ── */
  .seats-section {
    padding: 5rem 2rem; text-align: center;
    max-width: 600px; margin: 0 auto;
  }

  .seats-num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(5rem, 15vw, 9rem); font-weight: 300; line-height: 1;
    color: var(--gold-light);
  }

  .seats-label {
    font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
    color: var(--text-low); margin-top: 1.5rem; display: block;
  }

  .seats-body {
    margin-top: 1.5rem;
    font-size: 15px; font-weight: 400; line-height: 1.85; color: var(--text-mid);
  }
  .seats-body em { color: var(--gold-light); font-style: italic; }

  /* ── TALLY EMBED SECTION ── */
  .form-lang-tabs {
    display: flex; gap: 0; margin-bottom: 2rem;
    border: 1px solid var(--gold-border); overflow: hidden;
    width: fit-content;
  }
  .form-lang-btn {
    background: transparent; border: none;
    color: var(--text-low); font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: 10px; font-weight: 600; letter-spacing: .16em;
    text-transform: uppercase; padding: .7rem 1.6rem;
    cursor: pointer; transition: all .25s;
  }
  .form-lang-btn.active { background: var(--gold); color: var(--black); }

  .tally-wrap { width: 100%; }

  /* Tally iframe styling — forces dark theme match */
  .tally-wrap iframe {
    width: 100% !important;
    border: none !important;
    background: transparent !important;
    min-height: 600px;
  }

  .tally-placeholder {
    border: 1px dashed var(--gold-border);
    padding: 3rem 2rem; text-align: center;
    margin-bottom: 1.5rem;
  }
  .tally-placeholder-icon {
    font-size: 2rem; color: var(--gold); margin-bottom: 1rem; display: block;
  }
  .tally-placeholder-text {
    font-size: 13px; color: var(--text-low); line-height: 1.7;
  }

  /* ── SOCIAL FOLLOW AFTER FORM ── */
  .social-follow-section {
    margin-top: 3rem;
    border-top: 1px solid var(--gold-border);
    padding-top: 3rem;
  }
  .social-follow-divider {
    text-align: center; margin-bottom: 1rem;
  }
  .social-follow-label {
    font-size: 9px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase;
    color: var(--gold); display: block;
  }
  .social-follow-body {
    font-size: 13px; font-weight: 400; color: var(--text-low);
    text-align: center; line-height: 1.7; margin-bottom: 2.5rem;
    max-width: 460px; margin-left: auto; margin-right: auto;
  }
  .social-qr-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1.5rem; max-width: 480px; margin: 0 auto;
  }
  .social-qr-card {
    border: 1px solid var(--gold-border);
    padding: 1.8rem 1.2rem; text-align: center;
    transition: border-color .3s;
  }
  .social-qr-card:hover { border-color: var(--gold); }
  .social-qr-wrap {
    width: 120px; height: 120px; margin: 0 auto 1rem;
    background: var(--black); padding: 8px;
    border: 1px solid var(--gold-border);
  }
  .social-qr-img { width: 100%; height: 100%; display: block; }
  .social-qr-icon { color: var(--gold); margin-bottom: .4rem; display: flex; justify-content: center; }
  .social-qr-handle {
    font-size: 11px; font-weight: 600; color: var(--text-bright);
    margin-bottom: .3rem; letter-spacing: .02em;
  }
  .social-qr-cta {
    font-size: 11px; color: var(--text-low); margin-bottom: .5rem; line-height: 1.5; font-weight: 500;
  }
  .social-qr-link {
    font-size: 10px; color: var(--gold); text-decoration: none;
    letter-spacing: .08em; font-weight: 500;
  }
  .social-qr-link:hover { text-decoration: underline; }
  @media(max-width:480px){ .social-qr-grid { grid-template-columns: 1fr; max-width: 240px; } }

  /* ── SPEECH QR SLIDE ── */
  .speech-qr-section {
    background: var(--black);
    border-top: 1px solid rgba(201,168,76,0.2);
    padding: 5rem 2rem;
    text-align: center;
  }
  .speech-qr-inner { max-width: 500px; margin: 0 auto; }
  .speech-qr-eyebrow {
    font-size: 9px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 2.5rem; display: block;
  }
  .speech-qr-code-wrap {
    position: relative; display: inline-block;
    margin: 0 auto 2rem; padding: 16px;
    background: #0a0a0a; border: 1px solid var(--gold-border);
  }
  .speech-qr-code { width: 200px; height: 200px; display: block; }
  .speech-qr-corner {
    position: absolute; width: 16px; height: 16px;
    border-color: var(--gold); border-style: solid;
  }
  .speech-qr-corner.tl { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
  .speech-qr-corner.tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
  .speech-qr-corner.bl { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; }
  .speech-qr-corner.br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
  .speech-qr-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3.5rem; font-weight: 300; color: var(--text-bright);
    letter-spacing: .05em; line-height: 1; margin-bottom: .3rem;
  }
  .speech-qr-sub {
    font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
    color: var(--text-low); margin-bottom: 1rem;
  }
  .speech-qr-url {
    font-size: 13px; font-weight: 600; letter-spacing: .1em;
    color: var(--gold); margin-bottom: 1.5rem;
  }
  .speech-qr-raffle {
    font-size: 12px; font-weight: 400; letter-spacing: .08em;
    color: var(--text-mid); line-height: 1.6;
  }
  .url-customizer { margin-top: 2.5rem; border-top: 1px solid rgba(201,168,76,0.12); padding-top: 1.5rem; }
  .url-customizer-label { font-size: 11px; color: var(--text-low); margin-bottom: .8rem; display: block; font-weight: 500; }
  .url-customizer-row { display: flex; gap: .5rem; }
  .url-input {
    flex: 1; background: rgba(255,255,255,0.04); border: 1px solid var(--gold-border);
    color: var(--text-bright); font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: 11px; padding: .6rem 1rem; outline: none;
  }
  .url-input:focus { border-color: var(--gold); }
  .url-btn {
    background: var(--gold); color: var(--black); border: none;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif; font-size: 9px; font-weight: 700;
    letter-spacing: .15em; text-transform: uppercase; padding: .6rem 1.2rem;
    cursor: pointer; white-space: nowrap; transition: background .2s;
  }
  .url-btn:hover { background: var(--gold-light); }
  .form-section {
    background: var(--smoke);
    border-top: 1px solid rgba(201,168,76,0.2);
    padding: 6rem 2rem 7rem;
  }
  .form-inner { max-width: 660px; margin: 0 auto; }
  .raffle-badge {
    display: inline-flex; align-items: center; gap: .75rem;
    border: 1px solid var(--gold-border); padding: .6rem 1.4rem;
    margin-bottom: 2rem;
  }
  .raffle-badge-icon { font-size: 1rem; }
  .raffle-badge-text { font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
  .form-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3rem); font-weight: 300;
    color: var(--text-bright); line-height: 1.15; margin-bottom: .8rem;
  }
  .form-title em { color: var(--gold-light); font-style: italic; }
  .form-body { font-size: 13px; font-weight: 400; line-height: 1.85; color: var(--text-mid); margin-bottom: 2rem; }
  .form-body strong { color: var(--gold-light); font-weight: 500; }
  .form-note { margin-top: 1.5rem; font-size: 12px; color: var(--text-low); text-align: center; line-height: 1.7; font-weight: 400; }
  .form-note em { color: var(--gold); font-style: normal; }

  /* ── FOOTER ── */
  footer {
    border-top: 1px solid rgba(201,168,76,0.15);
    padding: 3rem 2rem; text-align:center;
  }
  .footer-logo {
    font-family:'Cormorant Garamond',Georgia,serif; font-size:1.4rem; font-weight:300;
    color:var(--gold-light); letter-spacing:.08em; margin-bottom:.5rem;
  }
  .footer-sub { font-size:11px; font-weight:500; letter-spacing:.16em; text-transform:uppercase; color:var(--text-low); }

  /* ── ANIMATION ── */
  @keyframes fadeUp { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }

  /* LANG */
  [lang="es"] .en { display:none!important; }
  [lang="en"] .es { display:none!important; }

  /* LANG BAR */
  .lang-bar {
    position:fixed; top:0; left:0; right:0; z-index:100;
    display:flex; justify-content:space-between; align-items:center;
    padding:.75rem 2rem;
    background:rgba(8,8,8,0.92); border-bottom:1px solid rgba(201,168,76,0.15);
    backdrop-filter:blur(12px);
  }
  .lang-logo { font-family:'Cormorant Garamond',Georgia,serif; font-size:1rem; font-weight:400; color:var(--text-bright); letter-spacing:.1em; }
  .lang-logo b { color:var(--gold); }
  .lang-toggle { display:flex; border:1px solid var(--gold-border); overflow:hidden; }
  .lbtn { background:transparent; border:none; color:var(--text-low); font-family:'Montserrat','Segoe UI',Arial,sans-serif; font-size:10px; font-weight:700; letter-spacing:.18em; padding:5px 14px; cursor:pointer; transition:all .2s; text-transform:uppercase; }
  .lbtn.active { background:var(--gold); color:var(--black); }


/*  -- contact form*/



.wpcf7 .hidden-fields-container {
  display: none !important;
}

.olympus-form {
  max-width: 900px;
  margin: 0 auto;
}

/* GRID */
.olympus-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.olympus-form .row.single {
  grid-template-columns: 1fr;
}

/* FIELD */
.olympus-form .field {
  display: flex;
  flex-direction: column;
}

/* LABELS */
.olympus-form label {
  font-size: 11px;
  letter-spacing: 2px;  
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

/* INPUTS CF7 FIX */
.olympus-form .wpcf7-form-control {
  width: 100%;
  padding: 14px 16px;
  background: var(--input-bg);
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--text);
  font-size: 14px;
  border-radius: 2px;
}


/* SELECT BASE */
.olympus-form select {
  width: 100%;
  padding: 14px 16px;
  background: #111;
  color: #fff;
  border: 1px solid rgba(201,168,76,0.5);
  appearance: none;
}

/* OPCIONES */
.olympus-form select option {
  background: #111;
  color: #fff;
}

/* HOVER EN OPCIONES (algunos navegadores lo respetan) */
.olympus-form select option:hover {
  background: #c9a84c;
  color: #000;
}

/* FOCUS */
.olympus-form .wpcf7-form-control:focus {
  outline: none;
  border-color: var(--gold-light);
}

/* PLACEHOLDER */
.olympus-form ::placeholder {
  color: rgba(255,255,255,0.4);
}

/* BOTÓN */
.olympus-form .wpcf7-submit {
  width: 100%;
  background: var(--gold);
  color: #000;
  border: none;
  padding: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  text-transform: uppercase;
  transition: 0.3s;
}

.olympus-form .wpcf7-submit:hover {
  background: var(--gold-light);
}

/* MENSAJES */
.olympus-form .wpcf7-response-output {
  margin-top: 20px;
  border: 1px solid var(--gold);
  color: white;
}

/* ERRORES */
.olympus-form .wpcf7-not-valid {
  border-color: red;
}

.olympus-form .wpcf7-not-valid-tip {
  font-size: 12px;
}

/* ELIMINAR ESPACIOS EXTRA CF7 */
.olympus-form p {
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .olympus-form .row {
    grid-template-columns: 1fr;
  }

  .olympus-form .wpcf7-form-control {
    font-size: 16px; /* evita zoom iOS */
  }
}


.logos-section {
  text-align: center;       /* centra el texto del <p> */
  margin: 40px 0;
}

.logos-section p {
  margin-bottom: 20px;      /* espacio entre el título y los logos */
}

.logos-section .logos {
  display: flex;
  justify-content: center;  /* centra los logos en bloque */
  flex-wrap: wrap;          /* permite varias filas si son muchos */
  gap: 20px;                /* espacio entre logos */
}

.logos-section .logos img {
  max-height: 100px;        /* altura máxima */
  height: auto;
  width: auto;
}

#ast-scroll-top {
 display: none;
}

