:root {
  --primary-gold: #C9A34E;
  --gold-hover: #E1B965;
  --dark-gray: #1C1C1C;
  --neutral-gray: #2A2A2A;
  --white: #FFFFFF;
  --light-gray: #DDDDDD;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--dark-gray);
  color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/** {
  outline: 1px solid red !important;
}*/

/* =================== HEADER =================== */
.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  background: transparent;
}

.header-box {
  width: 90%;
  max-width: 1200px;
  background-color: rgba(28, 28, 28, 0.75);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
}

.logo img {
  height: 40px;
}

nav {
  display: flex;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold-hover);
}
/* CALL NOW BOTTON*/

.nav-call {
  display: flex;
  align-items: center;
}

.call-now-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--primary-gold);
  color: var(--dark-gray);
  font-weight: 800;
  text-decoration: none;
  line-height: 1;
  transition: transform 0.2s, background-color 0.2s;
}

.call-now-nav:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}

/*HIDDEN ONLY FULL SCREEN*/
.call-now-icon {
  display: none;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}

/* SUBMENU ESTILO TRANSPARENTE */

.dropdown {
  position: relative; /* <== Clave para que el submenu se alinee bien */
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgba(28, 28, 28, 0.9); /* transparente como el header */
  top: 100%;
  left: -100px;
  min-width: 160px;
  border-radius: 6px;
  z-index: 999;
  padding: 10px 0;
  backdrop-filter: blur(6px);
}

.dropdown-content li {
  padding: 8px 16px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* === MOBILE HEADER === */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  }

.nav-links {
  flex-direction: column;
  background-color: rgba(28, 28, 28, 0.9);
  backdrop-filter: blur(6px);
  border-radius: 0 0 12px 12px;
  display: none;
  padding: 20px;
  text-align: center;
  width: 100%;
  max-width: 320px;
  margin: 0 auto; /* Esto centra el menú en pantallas pequeñas */
}

  .nav-links.show {
    display: flex;
  }

  .dropdown-content {
    position: static;
    background-color: transparent;
    padding-left: 0;
  }

  .dropdown-content li {
    padding: 6px 0;
  }

  /*VISIBLE MOBILE*/
  .nav-call {
    display: none;
  }
}
/*BOTTON VISIBLE ON MOBILE*/
@media (max-width: 768px) {
  /* En mobile, el header-box ahora centra controles */
  .header-box {
    gap: 10px;
  }

  /* Mostrar icono */
  .call-now-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 28px;
    border-radius: 999px;
    background: rgba(201, 163, 78, 0.14);
    border: 1px solid rgba(201, 163, 78, 0.35);
    color: var(--primary-gold);
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
  }

  /* Para que quede "en medio" visualmente: switch + icon juntos */
  .lang-switch {
    margin-left: auto;
  }

  .call-now-icon {
    margin-right: auto;
  }
}

/* Switch lang*/
/* CONTENEDOR */
.lang-switch{
  display:inline-flex;
  align-items:center;
}

/* OCULTAR CHECKBOX REAL */
.lang-toggle{
  position:absolute;
  opacity:0;
  width:1px;
  height:1px;
}

/* TRACK (fondo del switch) */
.lang-label{
  width:72px;              /* ⬅ más pequeño */
  height:28px;
  border-radius:999px;
  display:inline-block;
  cursor:pointer;
  position:relative;
  overflow:hidden;
  user-select:none;

  box-shadow: inset 0 0 0 1px rgba(255,255,255,.15);

  /* Estado default: EN (USA) */
  background:
    radial-gradient(circle at 14px 14px, rgba(255,255,255,.85) 0 1.5px, transparent 2px),
    radial-gradient(circle at 22px 9px, rgba(255,255,255,.85) 0 1.5px, transparent 2px),
    radial-gradient(circle at 26px 18px, rgba(255,255,255,.85) 0 1.5px, transparent 2px),
    linear-gradient(90deg, #0A3161 0 42%, transparent 42%),
    repeating-linear-gradient(
      0deg,
      #B31942 0 4px,
      #FFFFFF 4px 8px
    );
}

/* KNOB (círculo que se mueve) */
.lang-knob{
  position:absolute;
  top:4px;
  left:4px;
  width:30px;
  height:20px;
  border-radius:999px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 4px 10px rgba(0,0,0,.25);
  display:flex;
  align-items:center;
  justify-content:center;
  transition: transform .25s ease;
}

/* TEXTO DENTRO DEL KNOB */
.lang-text{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: .4px;
  font-size: 11px;          /* ⬅ más pequeño */
  color:#111;
  text-transform: uppercase;
}

/* Estado checked: ES (España) */
.lang-toggle:checked + .lang-label{
  background:
    linear-gradient(
      0deg,
      #AA151B 0 30%,
      #F1BF00 30% 70%,
      #AA151B 70% 100%
    );
}

/* Mover knob a la derecha cuando ES */
.lang-toggle:checked + .lang-label .lang-knob{
  transform: translateX(36px);
}


/* =================== HERO SPLIT LAYOUT =================== */
.hero-split {
  position: relative;
  min-height: 100vh;
  padding-top: 90px; /* account for header */
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;

  background-image: url('/autorepair/resources/autorepair\(1\).jpg'); /* cambia ruta */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay oscuro elegante */
.hero-bg::after{
  content:"";
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      to right,
      rgba(18,18,18,0.85) 0%,
      rgba(18,18,18,0.65) 40%,
      rgba(18,18,18,0.75) 100%
    );

  backdrop-filter: blur(1px);
}

.hero-glow {
  position: absolute;
  width: 900px;
  height: 900px;
  left: -240px;
  top: -240px;
  background: radial-gradient(circle, rgba(201, 163, 78, 0.18), rgba(201, 163, 78, 0) 60%);
  filter: blur(10px);
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

/* LEFT */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: clamp(2.2rem, 3.4vw, 3.6rem);
  color: var(--primary-gold);
  text-shadow: 0 6px 22px rgba(0,0,0,0.45);
  margin: 0 0 10px 0;
  letter-spacing: 0.3px;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--light-gray);
  opacity: 0.95;
  text-shadow: 0 6px 22px rgba(0,0,0,0.45);
  margin: 0;
  line-height: 1.5;
}

/* POS Showcase */
.hero-showcase {
  position: relative;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0);
  border: 1px solid rgba(255, 255, 255, 0);
  overflow: hidden;
  padding: 18px 56px; /* space for nav buttons */
  min-height: 560px;
}

.hero-slider {
  position: relative;
  height: 560px;
  display: grid;
  place-items: center;
}

.hero-model {
  width: 100%;
  height: 100%;
  display: none;
}

.hero-model.active {
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.35);
  color: var(--light-gray);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}

.slider-btn:hover {
  background: rgba(0,0,0,0.55);
  border-color: rgba(201,163,78,0.45);
  transform: translateY(-50%) scale(1.05);
}

.prev-btn { left: 12px; }
.next-btn { right: 12px; }


/* Call Now under showcase */
.hero-call {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.call-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  background: rgba(201, 163, 78, 0.12);
  color: var(--primary-gold);
  border: 1px solid rgba(201, 163, 78, 0.35);
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}

.call-button:hover {
  transform: translateY(-1px);
  background: rgba(201, 163, 78, 0.18);
  border-color: rgba(201, 163, 78, 0.55);
}

.hero-hint {
  color: var(--light-gray);
  opacity: 0.85;
  font-size: 0.95rem;
}

/* RIGHT (form card) */
.hero-right {
  display: block;
}

.hero-form-card {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0);
  border: 1px solid rgba(255, 255, 255, 0);
  overflow: hidden;
}

/* Make the form usable on shorter screens */
.hero-form-card .form-wrapper {
  padding: 22px;
  max-height: none; /* header + padding */
  overflow: visible;
}

/* Tighten the H2 a bit (optional) */
.hero-form-card .form-wrapper h2 {
  margin-top: 0;
}

/* Reuse your CTA style, but make it consistent in cards */
.hero-form-card .cta-button {
  width: 100%;
  text-align: center;
}

/* =================== MOBILE / SMALL SCREENS =================== */
@media (max-width: 980px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-split {
    padding-top: 80px;
    min-height: auto;
    padding-bottom: 28px;
  }

  .hero-showcase {
    padding: 16px 52px;
    min-height: 320px;
  }

  .hero-slider,
  .hero-model {
    height: 320px;
  }

  .hero-form-card .form-wrapper {
    max-height: none; /* let it flow normally on mobile */
    overflow: visible;
  }

  .hero-call {
    align-items: center;
  }

  .call-button {
    width: min(200px, 100%);  /* full width, pero con límite */
    padding: 12px 16px;       /* reduce altura */
    font-size: 0.98rem;       /* reduce texto */
    border-radius: 12px;
  }
}

@media (max-width: 520px) {
  .hero-showcase {
    padding: 14px 48px;
    border-radius: 16px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
}

/* _____________________Laptops_________________________*/

/* ====== BASE: deja tu diseño como está ====== */

/* ====== Ajuste automático cuando la pantalla NO es alta ====== */
@media (max-height: 820px) {
  /* Reduce el alto total útil del hero */
  .hero-split {
    padding-top: 80px; /* un poco menos si el header ocupa mucho */
  }

  /* Reduce el showcase/modelo */
  .hero-showcase {
    min-height: 460px;
  }
  .hero-slider {
    height: 460px;
  }

  /* Reduce paddings del formulario para ganar altura */
  .hero-form-card .form-wrapper {
    padding: 8px;
  }

  /* Reduce un poco inputs y espaciados */
  .form-group {
    margin-bottom: 8px;
  }
  .form-group input {
    padding: 6px 8px; /* si tu CSS lo permite */
  }

  /* Texto un poco más compacto */
  .hero-title {
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  }
  .hero-subtitle {
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  }
}

/* Pantallas aún más bajas */
@media (max-height: 640px) {
  .hero-showcase {
    min-height: 380px;
    padding: 14px 52px;
  }
  .hero-slider {
    height: 380px;
  }

  .hero-form-card .form-wrapper {
    padding: 14px;
  }

  /* Si aquí ya no cabe, puedes permitir scroll interno solo en casos extremos */
  .hero-form-card .form-wrapper {
    max-height: calc(100svh - 140px);
    overflow: auto;
  }

  /* Reduce aún más tipografías */
  .hero-title {
    font-size: clamp(1.7rem, 2.8vw, 2.8rem);
  }
}

/* Caso extremo (muy poca altura) */
@media (max-height: 540px) {
  .hero-container {
    gap: 18px;
  }
  .hero-showcase {
    min-height: 320px;
  }
  .hero-slider {
    height: 320px;
  }
}


/*soultion SECTION*/
.benefit-wrapper {
  padding: 50px 20px;
  background: 
    linear-gradient(to bottom, #1C1C1C, #2A2A2A);
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  background-position: left center, top center;
  text-align: center;
  color: var(--white);
}


.benefit-cards {
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.card img {
  width: 40px;
  height: auto;
  margin-bottom: 16px;
  filter: brightness(3) sepia(1) hue-rotate(15deg) saturate(8) contrast(1.2);
}

@media (max-width: 900px) {
  .benefit-cards {
    grid-template-columns: repeat(2, 1fr); /* Pantallas medianas: 2 columnas */
  }
  .benefit-wrapper {
    background:
      url('/Food_truck/resources/Food\ truck.jpg') no-repeat center center,
      linear-gradient(to bottom, #2A2A2A, #1C1C1C);
    background-size: cover, cover;
  }
}

@media (max-width: 600px) {
  .benefit-cards {
    grid-template-columns: 1fr; /* Móvil: 1 por fila */
  }
  .benefit-wrapper {
    background:
      url('/Food_truck/resources/Food\ truck.jpg') no-repeat center center,
      linear-gradient(to bottom, #2A2A2A, #1C1C1C);
    background-size: cover, cover;
  }
}

.card {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.card img {
  width: 40px;
  height: auto;
  margin-bottom: 16px;
}

.card p {
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}

/* seccion ft */

/* =================== FT FEATURES (SOBRIO) =================== */
.ft-features{
  padding: 70px 0;
  background: linear-gradient(to bottom, var(--neutral-gray), var(--dark-gray));
}

.ft-features__head{
  text-align: center;
  margin-bottom: 34px;
}

.ft-features__title{
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 38px);
  color: var(--primary-gold);
  text-shadow: 2px 2px 4px rgba(0,0,0,.6);
}

.ft-features__subtitle{
  margin: 0 auto;
  max-width: 760px;
  color: var(--light-gray);
  line-height: 1.5;
}

.ft-features__grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.ft-feature{
  grid-column: span 12;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.45);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.ft-feature:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.55);
  border-color: rgba(201,163,78,0.35);
}

@media (min-width: 900px){
  .ft-feature{ grid-column: span 4; }
}

.ft-feature__icon{
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(201,163,78,0.10);
  border: 1px solid rgba(201,163,78,0.25);
  margin-bottom: 14px;
}

.ft-feature__icon img{
  width: 34px;
  height: 34px;
  object-fit: contain;
  /* el mismo “gold” vibe sin exagerar */
  filter: brightness(2.2) sepia(1) hue-rotate(12deg) saturate(6) contrast(1.1);
}

.ft-feature__name{
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.2px;
}

.ft-feature__desc{
  margin: 0 0 14px;
  color: var(--light-gray);
  line-height: 1.5;
  font-size: 15px;
}

.ft-feature__meta{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ft-chip{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}

.ft-chip--soft{
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  background: rgba(201,163,78,0.08);
  border-color: rgba(201,163,78,0.20);
}

/* mini “menu ticket” sobrio */
.ft-ticket{
  margin-top: 12px;
  border-radius: 14px;
  padding: 12px 12px 10px;
  background: rgba(28,28,28,0.7);
  border: 1px dashed rgba(201,163,78,0.28);
}

.ft-ticket__row{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-weight: 800;
  color: var(--white);
}

.ft-ticket__item{
  max-width: 70%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ft-ticket__price{
  color: var(--primary-gold);
  letter-spacing: 0.02em;
}

.ft-ticket__chips{
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ================= SAME DAY FUNDING ================= */

.sdf-section{
  position: relative;
  padding: 100px 0;
  background: linear-gradient(to bottom, var(--neutral-gray), var(--primary-gold));
}

.sdf-container{
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT TEXT */
.sdf-text h2{
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  color: var(--primary-gold);
  margin-bottom: 20px;
  text-shadow: 0 10px 25px rgba(0,0,10,0.25);
}

.sdf-main{
  font-size: 1.1rem;
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 20px;
  text-shadow: 0 10px 25px rgba(0,0,10,0.25);
}

.sdf-highlight{
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 10px 25px rgba(0,0,10,0.25);
}

.sdf-disclaimer{
  font-size: 0.85rem;
  color: #aaa;
  margin-bottom: 30px;
}

.sdf-btn{
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--primary-gold);
  color: #111;
  font-weight: 800;
  text-decoration: none;
  transition: 0.3s ease;
}

.sdf-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* RIGHT SLIDER */
.sdf-slider{
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.sdf-slide{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.sdf-slide.active{
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 980px){
  .sdf-container{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sdf-slider{
    height: 300px;
  }
}




/*Calendly*/

.calendar-section {
  background: linear-gradient(to bottom, var(--dark-gray), var(--primary-gold));
  padding: 80px 20px;
  color: var(--white);
}

.calendar-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.calendar-text {
  flex: 1;
  min-width: 280px;
}

.calendar-text h2 {
  font-size: 2rem;
  color: var(--primary-gold);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); 
  margin-bottom: 16px;
}

.calendar-text p {
  font-size: 1.1rem;
  color: var(--light-gray);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); 
}

.calendar-widget {
  flex: 1;
  min-width: 320px;
}



/*Form*/

/* ===== CONTACT FORM ===== */

.contact-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, #C9A34E, #1C1C1C);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
}

.contact-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  min-height: 500px;
}


.form-wrapper {
  flex: 1;
  max-width: 500px;
  background-color: var(--dark-gray);
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 40px 20px;
  margin-right: 5%;
  z-index: 2;
  box-shadow: 0 0 20px rgba(201, 163, 78, 0.4);
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: bold;
  color: var(--primary-gold);
}

.form-group input {
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid var(--primary-gold);
  background-color: #1c1c1c;
  color: var(--white);
  font-size: 16px;
}

.form-group input:focus {
  outline: none;
  border-color: #e1c16f;
}

.cta-button {
  padding: 14px 24px;
  background-color: var(--primary-gold);
  color: var(--dark-gray);
  border: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  align-self: center;
}

.cta-button:hover {
  background-color: #e1b965;
}

.success-message {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  border: 2px solid var(--primary-gold);
  background-color: #1f1f1f;
  color: var(--primary-gold);
  font-family: "Libre Baskerville", serif;
  font-size: 16px;
  border-radius: 8px;
  text-align: center;
}

/* ===== SMS CONSENT BLOCK ===== */
.sms-consent {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(225, 185, 101, 0.35);
}

.sms-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  user-select: none;
}

.sms-checkbox input[type="checkbox"]{
  width: 18px;
  height: 18px;
  accent-color: var(--primary-gold);
}

.sms-disclaimer {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255,255,255,0.82);
}

.sms-disclaimer a {
  color: var(--primary-gold);
  text-decoration: underline;
}

.sms-consent-error {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  background: rgba(200, 40, 40, 0.85);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 10px 12px;
  border-radius: 8px;
}

/* ===== TERMS CONSENT ===== */
.terms-consent {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(225, 185, 101, 0.35);
}

.terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  cursor: pointer;
  user-select: none;
}

.terms-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--primary-gold);
}

.terms-checkbox a {
  color: var(--primary-gold);
  text-decoration: underline;
}

.terms-consent-error {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  background: rgba(200, 40, 40, 0.85);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 10px 12px;
  border-radius: 8px;
}

/*Captcha*/
.g-recaptcha {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 20px;
  transform: scale(1.05); /* Opcional: agranda un poco el captcha */
  transform-origin: center;
}

/* Llamar ahora */
.call-now {
  margin-top: 20px;
  text-align: center;
}

.call-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary-gold);
  color: var(--dark-gray);
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  border-radius: 30px;
  transition: box-shadow 0.3s ease;
}

.call-button:hover {
  box-shadow: 0 0 12px rgba(201, 163, 78, 0.7);
  background-color: #e1b965;
}

/* Responsive Mobile */
@media screen and (max-width: 1220px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
  }

  .form-image {
  display: none; /* Oculta imagen en mobile */
  }

  .contact-section {
      background: linear-gradient(to bottom, #C9A34E, #1C1C1C); 
  }

  .form-wrapper {
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
  }
}

/* Footer */
/* Footer */
/* ===== FOOTER ===== */
.site-footer {
  background-color: var(--dark-gray);
  color: var(--white);
  text-align: center;
  padding: 40px 20px;
}

.footer-content {
  max-width: 600px;
  margin: 0 auto;
}

.footer-link {
  color: var(--primary-gold);
  text-decoration: none;
  margin: 0 10px;
}

.footer-link:hover {
  text-decoration: underline;
}

.contact-title {
  color: var(--primary-gold);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

/* ===== SOCIAL ICONS ===== */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 20px 0;
}

.social-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  fill: var(--primary-gold);
  transition: transform 0.2s ease, fill 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.15);
  fill: var(--gold-hover);
}

/* Ajuste para pantallas pequeñas */
@media (max-width: 600px) {
  .social-icons {
    gap: 14px;
  }
}

