/* =============================================
   JUANCHA PRODUCCIONES & EVENTOS — styles.css
   ============================================= */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #c8a84b;
  --gold-light: #e8c96d;
  --gold-dark: #a07830;
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --gray: #555555;
  --light-gray: #888888;
  --white: #ffffff;
  --font-main: 'Montserrat', sans-serif;
  --font-alt: 'Raleway', sans-serif;
  --transition: 0.35s ease;
  --header-h: 80px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--black);
  color: var(--white);
  font-size: 14px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gold { color: var(--gold); }

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200,168,75,0.15);
  transition: background var(--transition);
}

.site-header.scrolled {
  background: rgba(0,0,0,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: auto;
  height: 52px;
  object-fit: contain;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav ul li a {
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  padding: 6px 12px;
  position: relative;
  transition: color var(--transition);
}

.main-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 12px; right: 12px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.main-nav ul li a:hover,
.main-nav ul li a.active { color: var(--gold); }

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after { transform: scaleX(1); }

.main-nav ul li a.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 7px 18px;
  border-radius: 2px;
  transition: all var(--transition);
}

.main-nav ul li a.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}
.main-nav ul li a.nav-cta::after { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 36px;
  height: 36px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO SLIDER === */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
}

.slides-container { position: relative; height: 100%; }

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active { opacity: 1; z-index: 1; }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.6) 60%,
    rgba(0,0,0,0.75) 100%
  );
}

.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.slide-title {
  font-family: var(--font-main);
  font-size: clamp(2.2rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--white);
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
  margin-bottom: 36px;
  line-height: 1.1;
  animation: heroFadeUp 0.9s ease both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.btn-hero {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
  transition: all var(--transition);
  animation: heroFadeUp 0.9s 0.2s ease both;
}

.btn-hero:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 44px;
  height: 44px;
  font-size: 18px;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.dot.active { background: var(--gold); transform: scale(1.3); }

/* === SOMOS SECTION === */
.somos-section {
  background: var(--dark-2);
  padding: 90px 0;
}

.somos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.somos-image img {
  border-radius: 2px;
  object-fit: cover;
  height: 360px;
}

.somos-text h2 {
  font-family: var(--font-main);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.25;
  margin-bottom: 24px;
  color: var(--white);
}

.somos-text p {
  font-size: 12.5px;
  color: #aaaaaa;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  line-height: 1.8;
}

/* === SECTION TITLES === */
.section-title {
  font-family: var(--font-main);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  margin-bottom: 14px;
}

.section-title.left { text-align: left; }

.section-divider {
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 50px;
}

.section-divider.left { margin: 0 0 30px; }

/* === EVENTOS RECIENTES === */
.eventos-recientes {
  background: var(--dark);
  padding: 90px 0;
}

.eventos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.evento-card { text-align: center; }

.evento-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 18px;
}

.evento-img-wrap img {
  height: auto;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.evento-card:hover .evento-img-wrap img { transform: scale(1.06); }

.evento-overlay {
  position: absolute;
  inset: 0;
  background: rgba(200,168,75,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.evento-img-wrap:hover .evento-overlay { opacity: 1; }

.evento-link {
  width: 46px; height: 46px;
  border: 2px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  transition: all var(--transition);
}

.evento-link:hover {
  background: var(--white);
  color: var(--gold);
}

.evento-card h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--white);
  text-transform: uppercase;
}

/* === EVENTOS ESPECIALES === */
.eventos-especiales { background: var(--dark-2); }

.eventos-especiales-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.esp-image img {
  height: 480px;
  object-fit: cover;
}

.esp-content {
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--dark-2);
}

.esp-content p {
  font-size: 13px;
  color: #aaaaaa;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

/* === ARTISTAS PROFESIONALES === */
.artistas-section { background: var(--dark-3); }

.artistas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.artistas-content {
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--dark-3);
}

.artistas-content p {
  font-size: 13px;
  color: #aaaaaa;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.artistas-image img {
  height: 480px;
  object-fit: cover;
}

/* === GALLERY STRIP === */
.gallery-strip { background: var(--black); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.gallery-item {
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(200,168,75,0);
  transition: background var(--transition);
}

.gallery-item:hover::after { background: rgba(200,168,75,0.2); }

/* === FOOTER === */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(200,168,75,0.15);
  padding: 50px 0;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  width: auto;
  height: 56px;
  object-fit: contain;
}

.footer-logo p {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-align: center;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--light-gray);
  transition: all var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .somos-grid { gap: 40px; }
  .eventos-especiales-grid,
  .artistas-grid { grid-template-columns: 1fr; }
  .esp-content, .artistas-content { padding: 60px 40px; }
  .artistas-image { order: -1; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }

  .hamburger { display: flex; }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(0,0,0,0.97);
    padding: 24px 0;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(200,168,75,0.2);
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav ul li a {
    display: block;
    padding: 14px 32px;
    font-size: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .main-nav ul li a::after { display: none; }

  .somos-grid { grid-template-columns: 1fr; gap: 30px; }
  .somos-image img { height: 260px; }

  .eventos-grid { grid-template-columns: 1fr; }
  .evento-img-wrap img { height: 220px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .esp-content, .artistas-content { padding: 50px 24px; }
}

@media (max-width: 480px) {
  .slide-title { letter-spacing: 0.08em; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   PAGE HERO BANNER (inner pages)
   ============================================= */
.page-hero {
  position: relative;
  height: 280px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--header-h);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero-content h1 {
  font-family: var(--font-main);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 0.22em;
  color: var(--white);
  margin-bottom: 10px;
}

.page-hero-breadcrumb {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  display: inline-block;
  padding-bottom: 4px;
}

/* =============================================
   PRODUCCIÓN BLOCKS
   ============================================= */
.prod-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--dark);
}

.prod-block--right { }
.prod-block--left  { }

.prod-block__image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.prod-block__image--large img {
  min-height: 460px;
}

.prod-block__content {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--dark);
}

.prod-block--left .prod-block__content {
  background: var(--dark-2);
}

.prod-title {
  font-family: var(--font-main);
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.prod-divider {
  width: 44px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 28px;
}

.prod-block__content p {
  font-size: 12.5px;
  color: #aaaaaa;
  line-height: 1.85;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}

.prod-block__content p:last-child { margin-bottom: 0; }

/* =============================================
   PHOTO STRIP (4 cols)
   ============================================= */
.photo-strip { background: var(--black); }

.photo-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.photo-strip__item {
  overflow: hidden;
  position: relative;
}

.photo-strip__item img {
  width: 100%;
  height: 370px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.photo-strip__item:hover img { transform: scale(1.07); }

.photo-strip__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(200,168,75,0);
  transition: background var(--transition);
  pointer-events: none;
}

.photo-strip__item:hover::after { background: rgba(200,168,75,0.18); }

/* =============================================
   RESPONSIVE — inner pages
   ============================================= */
@media (max-width: 1024px) {
  .prod-block__content { padding: 56px 40px; }
}

@media (max-width: 768px) {
  .prod-block {
    grid-template-columns: 1fr;
  }

  .prod-block--right .prod-block__image { order: -1; }
  .prod-block--left  .prod-block__image { order: -1; }

  .prod-block__image img,
  .prod-block__image--large img { min-height: 280px; }

  .prod-block__content { padding: 48px 24px; }

  .photo-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .photo-strip__item img { height: 200px; }

  .page-hero { height: 200px; }
}

/* =============================================
   CONTACT PAGE
   ============================================= */

/* Intro */
.contact-intro {
  background: var(--dark-2);
  padding: 80px 24px;
  text-align: center;
}

.contact-intro__inner { max-width: 700px; margin: 0 auto; }

.contact-intro h2 {
  font-family: var(--font-main);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 28px;
}

.contact-intro p {
  font-size: 13px;
  color: #aaaaaa;
  line-height: 1.85;
  letter-spacing: 0.03em;
}

/* Info Cards */
.contact-info {
  background: var(--dark-3);
  padding: 60px 24px;
}

.contact-info__grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.contact-info__card {
  text-align: center;
  padding: 10px 30px;
  border-right: 1px solid rgba(255,255,255,0.07);
}

.contact-info__card:last-child { border-right: none; }

.contact-info__card--center {
  border-left: 1px solid rgba(255,255,255,0.07);
}

.contact-info__card h3 {
  font-family: var(--font-alt);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.contact-info__card p {
  font-size: 13px;
  color: #aaaaaa;
  line-height: 1.7;
  letter-spacing: 0.03em;
}

/* Form Section */
.contact-form-section {
  background: var(--dark);
  padding: 70px 24px 80px;
}

.contact-form-wrap {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: none;
}

.contact-form__row--full {
  grid-template-columns: 1fr;
}

.contact-form__field { }

.cf-input,
.cf-textarea {
  width: 100%;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  padding: 16px 20px;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  display: block;
  border-radius: 0;
  -webkit-appearance: none;
}

.cf-input { height: 54px; }

.cf-input::placeholder,
.cf-textarea::placeholder { color: #666; }

.cf-input:focus,
.cf-textarea:focus {
  border-color: var(--gold);
  background: rgba(200,168,75,0.04);
}

.cf-input.cf-error,
.cf-textarea.cf-error {
  border-color: #e55;
}

.cf-textarea {
  resize: vertical;
  min-height: 180px;
}

/* reCAPTCHA mockup */
.cf-captcha {
  margin-top: 20px;
  grid-column: 1;
}

.cf-captcha__box {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 300px;
  padding: 14px 18px;
  background: #f9f9f9;
  border: 1px solid #d3d3d3;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.cf-captcha__check {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cf-captcha__checkbox {
  width: 22px; height: 22px;
  border: 2px solid #c1c1c1;
  border-radius: 2px;
  background: #fff;
  display: block;
  flex-shrink: 0;
  cursor: pointer;
  transition: all var(--transition);
}

.cf-captcha__checkbox:hover { border-color: var(--gold); }

.cf-captcha__label {
  font-family: var(--font-main);
  font-size: 13px;
  color: #333;
  letter-spacing: 0.02em;
}

.cf-captcha__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.cf-captcha__logo i {
  font-size: 22px;
  color: #4a90d9;
}

.cf-captcha__logo span {
  font-size: 9px;
  color: #555;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.cf-captcha__logo small {
  font-size: 7px;
  color: #aaa;
}

/* Submit Button */
.contact-form__submit {
  text-align: center;
  margin-top: 36px;
}

.cf-btn {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 54px;
  background: var(--gold);
  color: var(--black);
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: all var(--transition);
}

.cf-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200,168,75,0.35);
}

.cf-btn:active { transform: translateY(0); }

/* Map */
.contact-map {
  display: block;
  line-height: 0;
  background: var(--dark-3);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: none;
  filter: grayscale(20%);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-info__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-info__card {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding-bottom: 28px;
  }

  .contact-info__card:last-child { border-bottom: none; }
  .contact-info__card--center { border-left: none; }

  .contact-form__row { grid-template-columns: 1fr; }

  .cf-captcha__box { width: 100%; max-width: 300px; }

  .contact-map iframe { height: 300px; }
}


.slide-content h2 {
    margin: 0 0 10px;
    font-size: 4.5rem !important;
    font-weight: lighter;
}

.slide-content {
    padding-top: 15px;
    padding-right: 25px;
    padding-bottom: 15px;
    padding-left: 25px;
    max-width: 90%;
    background: none !important;
}

.slide-content a {
    display: inline-block;
    padding: 10px 20px;
    background: none !important;
    color: #fff !important;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    border: 2px solid;
    border-radius: 100px !important;
}

.slider {
    height: 88vh !important;
}


/* =============================================
   FORM — layout 2 columnas diseño Juancha
   ============================================= */

#contact_form-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}

/* Campos que ocupan las 2 columnas */
#contact_form-2 textarea.form-control,
#contact_form-2 select.form-control,
#contact_form-2 .btn.btn-primary,
#contact_form-2 input[type="hidden"] {
  grid-column: 1 / -1;
}

/* Quitar margin-bottom — lo maneja el gap del grid */
#contact_form-2 .form-control.mb-3 {
  margin-bottom: 0;
}

#contact_form-2 .form-control {
  width: 100%;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 15px 20px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color var(--transition), background var(--transition);
  box-shadow: none;
}

#contact_form-2 .form-control::placeholder {
  color: #555;
}

#contact_form-2 .form-control:focus {
  border-color: var(--gold);
  background: rgba(200,168,75,0.04);
  box-shadow: none;
  color: var(--white);
}

/* Textarea */
#contact_form-2 textarea.form-control {
  min-height: 180px;
  resize: vertical;
}

/* Select */
#contact_form-2 select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c8a84b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  color: #555;
}

#contact_form-2 select.form-control:focus {
  color: var(--white);
}

#contact_form-2 select.form-control option {
  background: var(--dark-2);
  color: var(--white);
}

/* Botón */
#contact_form-2 .btn.btn-primary {
  justify-self: center;
  margin-top: 6px;
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 15px 54px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: none;
}

#contact_form-2 .btn.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200,168,75,0.35);
}

#contact_form-2 .btn.btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Responsive — 1 columna en móvil */
@media (max-width: 600px) {
  #contact_form-2 {
    grid-template-columns: 1fr;
  }

  #contact_form-2 .btn.btn-primary {
    width: 100%;
    padding: 15px 24px;
  }
}