/* ==========================================
   MESA DE AYUDA - SOLO ESTILOS PROPIOS
========================================== */

/* ==========================================
   SOSTENIBILIDAD PAGE
   Solo estilos propios de esta sección
   ========================================== */

/* ===== Variables ===== */
:root {
  /* Colores de marca */
  --brand: #1189a6;
  --brand-dark: #0e6e86;
  --bip: #1572b1;
  --brand-2: #ff8a00;
  --brand-3: #01678a;
  --brand-4:#e60024;
  --brand-5: #6ebd44;

  /* Colores de interfaz */
  --ink: #1f2a33;
  --muted: #6b7a86;
  --bg: #f5f7f9;
  --card: #ffffff;
}

/* ===== Base ===== */
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--ink);
}

img { display:block; max-width:100%; }

/* ===== Header ===== */
header{
  position:fixed;
  top:0;
  width:100%;
  z-index:50;
  height:90px;
  display:flex;
  align-items:center;
  transition:.3s;
  background:transparent;
}

header.scrolled{
  background:var(--brand);
  height:64px;
  box-shadow:var(--shadow);
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  width:100%;
  max-width:1400px;
  margin:0 auto;
}

.logo-img{ height:24px; }

.menu{
  display:flex;
  gap:32px;
}

.menu a{
  color:#fff;
  font-weight:400;
}

/* ===== Cabecera verde ===== */

.cabecera-color {
  width: 100%;
  height: 280px;
  background: var(--brand);
  display: flex;
  align-items: flex-end;
  padding: 90px 5vw 0;
}

.cabecera-titulo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: -0.8rem;
}

.cabecera-color h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -1px;
  margin: 0;
}

.flecha-icono {
  width: clamp(28px, 3.5vw, 48px);
  height: auto;
}

@media (max-width: 768px) {
  .cabecera-color {
    height: 210px;
    padding: 90px 5vw 1.8rem;
  }
  .cabecera-titulo {
    margin-bottom: 0;
  }
  .cabecera-color h1 {
    font-size: clamp(2.6rem, 6vw, 5rem);
  }
}

/* =========================
   MESA DE AYUDA
   ========================= */

.section {
  padding: 4rem 1rem;
  display: flex;
  justify-content: center;
}

.iframe-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.text-dark {
  color: #111;
}

.text-orange {
  color: var(--brand-2);
}

.reclamos {
  width: 100%;
  max-width: 900px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  margin: 0 auto 2rem;
}

.mesa-iframe {
  width: 100%;
  height: 700px;
  border: none;
  display: block;
}

.muted {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Caja contenedora */
.mesa-de-ayuda .reclamos {
  width: 100%;
  max-width: 820px;
  height: 700px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  background: rgb(255, 255, 255);
  margin: 0 auto 2rem;
  overflow: hidden;
  height: 600px;
}

/* Iframe */
.mesa-de-ayuda .mesa-iframe {
  width: 70%;
  height: 100%;
  border: none;
  margin: 50px 170px;
  height: 600px;
}

/* Texto inferior */
.mesa-de-ayuda .muted {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .mesa-de-ayuda .mesa-iframe{
  width: 90%;
  border: none;
  margin: 20px auto;
  }
}