/* ========== RESET & VARIABLES ========== */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  @import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


  :root {
    --brand: #5366ad;
    --brand-dark: #3d4f96;
    --dark-bg: #1a1a2e;
    --footer-bg: #111122;
    --text-light: #e8e8e8;
    --text-dark: #222;
    --accent: #c8002c;
    --white: #ffffff;
    --font-heading: 'Exo', sans-serif;
    --font-roboto: "Roboto", sans-serif;
    --max-w: 1200px;
    --header-h: 80px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-roboto);
    color: var(--text-dark);
    background: #fff;
    overflow-x: hidden;
  }
  h1, h2, h3, h4, h5, h6{
    font-family: var(--font-heading);
  }

  img { display: block; width: 100%; height: 100%; object-fit: cover; }
  a { text-decoration: none; color: inherit; }
  ul { list-style: none; }


  /* ========== HEADER ========== */
  #header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(26, 26, 46, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(83,102,173,0.3);
    transition: background 0.3s;
  }
  

  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
  }

  .logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
  }

  nav ul {
    display: flex;
    gap: 8px;
  }

  nav ul li a {
    color: var(--text-light);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 3px;
    transition: color 0.2s, background 0.2s;
    position: relative;
  }

  nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 14px; right: 14px;
    height: 2px;
    background: var(--brand);
    transform: scaleX(0);
    transition: transform 0.2s;
  }

  nav ul li a:hover { color: #fff; }
  nav ul li a:hover::after { transform: scaleX(1); }

  /* ========== HERO SLIDER ========== */
  .hero {
    position: relative;
    width: 100%;
    padding-top: calc(var(--header-h) + 0px);
    background: var(--dark-bg);
    overflow: hidden;
  }

  .hero-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 8s ease-out forwards;
  }

  @keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1); }
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26,26,46,0.2) 0%, rgba(26,26,46,0.5) 100%);
  }

  /* ========== INTRO TEXT ========== */
  .intro-section {
    background: #fff;
    text-align: center;
    padding: 60px 30px 40px;
  }

  .intro-section p {
    font-family: var(--font-roboto);
    font-weight: 900;
    font-size: clamp(28px, 4vw, 48px);
    color: var(--brand);
    /* letter-spacing: 3px; */
    /* text-transform: uppercase; */
    margin-bottom: 16px;
  }

  .intro-section .uno {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(22px, 2.5vw, 32px);
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    line-height: 1.2;
  }

  .intro-section h1 {
    font-family: var(--font-roboto);
    font-size: clamp(18px, 2.5vw, 28px);
    color: #444;
    /* border: 2px solid red; */
    /* font-style: italic; */
    font-weight: 600;
    text-align: center;
  }

  .intro-section .intro-descripcion {
  font-size: clamp(16px, 1.8vw, 22px);
  /* text-transform: lowercase; */
  color: #555;
  font-weight: 400;
  max-width: 1000px;
  margin: 0 auto 20px;
}



  /* ========== TWO-COL SECTION ========== */
  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
  }

  .two-col.reverse { direction: rtl; }
  .two-col.reverse > * { direction: ltr; }

  .two-col .img-side {
    overflow: hidden;
    position: relative;
  }

  .two-col .img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .two-col .img-side:hover img { transform: scale(1.04); }

  .two-col .text-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 80px;
    background: #fff;
  }

  .two-col .text-side h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(22px, 2.5vw, 32px);
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    line-height: 1.2;
  }

  .two-col .text-side h2 strong {
    font-weight: 900;
    display: block;
  }

  .two-col .text-side p {
    font-size: clamp(16px, 1.8vw, 22px);
    color: #444;
    line-height: 1.6;
    margin-bottom: 32px;
    font-family: var(--font-body);
  }

  /* ========== BUTTON ========== */
  .btn {
    display: inline-block;
    padding: 14px 32px;
    background: #b8860b;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 3px;
    border: 2px solid #b8860b;
    transition: background 0.3s, color 0.3s, transform 0.2s;
    align-self: flex-start;
  }

  .btn:hover {
    background: transparent;
    color: #b8860b;
    transform: translateY(-2px);
  }

  /* ========== DIVIDER ========== */
  .divider {
    height: 1px;
    background: #e8e8e8;
    margin: 0;
  }

  /* ========== DARK FOOTER GRID ========== */
  .footer-info {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 50px 0;
  }

  .footer-info .container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 20px;
  }

  .footer-col h3 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .footer-col p, .footer-col li, .footer-col a {
    font-size: 14px;
    color: #bbb;
    line-height: 1.9;
  }

  .footer-col a:hover { color: var(--brand); }

  .footer-col .hours-item { margin-bottom: 2px; }
  .footer-col .hours-item.closed { color: var(--accent); font-weight: 700; }

  /* ========== SOCKET / COPYRIGHT ========== */
  .socket {
    background: var(--footer-bg);
    padding: 20px 30px;
    text-align: center;
    font-size: 13px;
    color: #666;
    font-family: var(--font-heading);
    letter-spacing: 1px;
  }

  /* ========== MOBILE MENU ========== */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-light);
    transition: transform 0.3s, opacity 0.3s;
  }

  .mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: rgba(26,26,46,0.98);
    padding: 20px 0;
    z-index: 998;
    flex-direction: column;
    border-top: 1px solid rgba(83,102,173,0.3);
  }

  .mobile-nav.open { display: flex; }
  .mobile-nav li a {
    display: block;
    padding: 12px 30px;
    color: var(--text-light);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.2s, padding-left 0.2s;
  }

  .mobile-nav li a:hover { color: var(--brand); padding-left: 40px; }

  /* ========== RESPONSIVE ========== */
  @media (max-width: 900px) {
    nav { display: none; }
    .hamburger { display: flex; }

    .two-col {
      display: flex;
      flex-direction: column;
      min-height: auto;
    }

    /* Imagen siempre arriba, texto siempre abajo */
    .two-col .img-side  { order: 1; aspect-ratio: 4/3; height: auto; }
    .two-col .text-side { order: 2; padding: 40px 30px; }

    /* Anula el truco rtl que ya no hace falta en móvil */
    .two-col.reverse     { direction: ltr; }
    .two-col.reverse > * { direction: ltr; }

    .footer-info .container {
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }
  }

  @media (max-width: 600px) {
    .hero-image { aspect-ratio: 4/3; }
    .footer-info .container {
      grid-template-columns: 1fr;
      text-align: center;
      flex-direction: column;
      align-items: center;
    }
    .footer-col { width: 100%; }
    .footer-col-whatsapp { justify-content: center; }
    .intro-section { padding: 40px 20px 30px; }
  }

  /* ========== FADE-IN ANIMATION ========== */
  .fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  /* ========== WHATSAPP BUTTON (footer) ========== */
  .footer-col-whatsapp {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .whatsapp-btn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #b8860b;
    color: #fff !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 3px;
    border: 2px solid #b8860b;
    line-height: 1;
    transition: background 0.3s, color 0.3s, transform 0.2s;
  }

  .whatsapp-btn:hover {
    background: transparent;
    color: #b8860b !important;
    transform: translateY(-2px);
  }

  .whatsapp-btn svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
  }

  @media (max-width: 900px) {
    .footer-col-whatsapp {
      justify-content: center;
    }
  }

  .hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-slogan {
  font-family: 'Roboto', serif;
  color: #fff;
  font-size: 5rem;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.mobile-break { display: none; }

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.btn-hero {
  padding: 12px 32px;
  width: 220px;
  text-align: center;
}

@media (max-width: 600px) {
  .hero-image {
    aspect-ratio: unset;
    height: calc(100vh - var(--header-h));
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
  }

  .hero-slogan {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 16px;
  }

  .mobile-break { display: inline; }

  .hero-buttons {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-top: 24px;
  }

  .btn-hero {
    align-self: center;
    padding: 10px 18px;
    font-size: 0.85rem;
    width: 200px;
    text-align: center;
  }

  .ocultar-movil {
    display: none;
  }
}

.reviews-title {
  text-align: center;
  padding: 40px 20px 20px;
  font-family: var(--font-roboto);
  font-size: 32px;
  color: #222; /* ajusta a tu paleta */
}

@media (max-width: 768px) {
  #cookie-script-banner {
    display: block !important;
    width: 100% !important;
    bottom: 0 !important;
    left: 0 !important;
    position: fixed !important;
    z-index: 999999 !important;
  }

  .reviews-title {
    padding: 30px 15px 15px;
    font-size: 26px;
  }
}
/* ========== COOKIESCRIPT - BOTÓN ACEPTAR TODO ========== */
#cookiescript_accept,
.cookiescript_accept {
  background: #b8860b !important;
  border-color: #b8860b !important;
  color: #fff !important;
}

#cookiescript_accept:hover,
.cookiescript_accept:hover {
  background: transparent !important;
  color: #b8860b !important;
}