body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f4f4f4;
  text-align: center;
}

header {
  background: #003366;
  color: white;
  padding: 20px;
}

h1, h2, h3 {
  margin: 10px 0;
}

/* PLANES */
.plan {
  border: 1px solid #ccc;
  padding: 15px;
  margin: 15px auto;
  width: 80%;
  max-width: 400px;
  border-radius: 8px;
  background: white;
}

/* CARRUSEL */
.carousel {
  width: 80%;
  max-width: 600px;
  margin: 20px auto;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.carousel img {
  width: 100%;
  display: none;
}

.carousel img.active {
  display: block;
}

/* FOOTER */
footer {
  background: #000080;
  color: white;
  text-align: center;
  padding: 50px;
}

/* MENÚ LATERAL */
.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #2271b3;
  overflow-x: hidden;
  transition: 0.3s;
  padding-top: 60px;
  z-index: 1000;
}

.sidebar.active {
  width: 200px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar li a {
  display: block;
  color: white;
  padding: 15px;
  text-decoration: none;
  font-size: 18px;
}

.sidebar li a:hover {
  background: #0055aa;
}

/* HAMBURGER */
.hamburger {
  position: fixed;
  top: 20px;
  left: 20px;
  font-size: 30px;
  background: none;
  color: #000000;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

/* BOTÓN CERRAR */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
}

/* ===== LOGO ===== */
.logo {
  max-width: 600px;
  width: 150%;
  height: auto;
  margin-bottom: 0px;
}

/* Responsive logo */
@media (max-width: 600px) {
  .logo {
    max-width: 100px;
  }
}

/* ===== CONTENIDO TEXTO ===== */
.content {
  max-width: 800px;   /* controla lo "expandido" */
  margin: 0 auto;     /* centra el bloque */
  padding: 20px;
  line-height: 1.6;   /* mejora lectura */
}

/* =========================
   POLÍTICAS DE LA EMPRESA
   ========================= */

.politicas {
  max-width: 720px;          /* MÁS angosto = más legible */
  margin: 60px auto;         /* centrado horizontal */
  padding: 35px 40px;        /* espacio interno tipo documento */
  background-color: #f9f9f9;
  border-left: 4px solid #1e73be;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.politicas h2 {
  font-size: 22px;
  margin-bottom: 25px;
  text-align: center;        /* título centrado */
  color: #1e73be;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.politicas h3 {
  font-size: 16px;
  margin-top: 25px;
  margin-bottom: 8px;
  color: #222;
}

.politicas p {
  font-size: 14.5px;
  line-height: 1.75;
  color: #444;
  text-align: justify;       /* estilo legal */
  margin-bottom: 14px;
}

/* SOLO afecta a la pestaña Planes */
.planes .plan {
  background-color: #00FFFF; /* color del cuadro */
  color: #00FFFF;
  border-radius: 16px;
  padding: 28px;
}

.planes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.planes .plan {
  width: 250px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #ffffff; /* cuadro blanco */
  text-align: center;
}

.planes .plan img {
  width: 100%;
  display: block;
  border-bottom: 1px solid #ddd;
}

.planes .plan-content {
  padding: 15px;
  color: #003c88;
}

.planes .plan-content h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.planes .plan-content p {
  margin: 5px 0;
  font-size: 1rem;
}

/* Hover flotante */
.planes .plan:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .planes .plan {
    width: 100%;
    max-width: 320px;
  }
}

/* ================== SOLO INDEX (HOME) ================== */

/* Ocultar logo solo en el index */
body.home .logo {
  display: none;
}

/* Banner solo en index */
body.home .home-banner {
  width: 100%;
  height: 85vh;          /* ajusta la altura si deseas */
  object-fit: contain;
  display: block;
}

/* Ajustes del header solo para el index */
body.home .home-header {
  padding: 0;
  position: relative;
}

/* Texto sobre el banner */
body.home .slogan {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  text-align: center;
}

/* ================== FIN SOLO INDEX ================== */

/* ===== GENERAL ===== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* HEADER */
.home-banner {
  width: 100%;
}

.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 140px;
}

/* CARRUSEL */
.carousel {
  position: relative;
  text-align: center;
  margin: 30px auto;
}

.carousel img {
  width: auto;
  max-width: 100%;
  max-height: 380px;
  display: none;
  margin: auto;
}

.carousel img.active {
  display: block;
}

/* Flechas sobre la imagen */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.55);
  color: #fff;
  border: none;
  font-size: 22px;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

/* BIENVENIDA */
#bienvenida {
  text-align: center;
  padding: 30px 20px;
}

/* FOOTER */
.footer-arcotel {
  background: #0f172a;
  color: #cbd5f5;
  padding: 40px 20px;
}

.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-arcotel h4 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-arcotel a {
  display: block;
  color: #cbd5f5;
  text-decoration: none;
  margin-bottom: 6px;
  font-size: 14px;
}

.footer-arcotel a:hover {
  color: #38bdf8;
}

.footer-copy {
  text-align: center;
  margin-top: 25px;
  font-size: 13px;
}

/* ===== HEADER Y MENU ===== */
.header-simple {
  position: fixed;
  top: 0;
  width: 100%;
  background: #0a2540;
  color: #fff;
  z-index: 1000;
}

.header-container {
  max-width: 1100px;
  margin: auto;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  margin: 0;
}

.menu-icon {
  font-size: 26px;
  cursor: pointer;
  display: none;
}

#menu-toggle {
  display: none;
}

.menu a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-size: 15px;
}

/* ===== DOCUMENTO ===== */
body {
  margin: 0;
  background: #f4f6f8;
}

.documento {
  max-width: 800px;
  margin: 100px auto;
  padding: 30px;
  background: white;
  font-family: Arial, sans-serif;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
}

/* ===== FORMULARIO ===== */
.form-portal {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
}

.form-portal label {
  margin-top: 15px;
  font-weight: bold;
}

.form-portal input,
.form-portal textarea {
  margin-top: 5px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.form-portal button {
  margin-top: 25px;
  padding: 12px;
  background: #0a2540;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.form-portal button:hover {
  background: #123c6a;
}

/* ===== FOOTER ===== */
.footer-simple {
  text-align: center;
  padding: 20px;
  color: #555;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .menu {
    position: absolute;
    top: 60px;
    right: 0;
    background: #0a2540;
    width: 100%;
    display: none;
    flex-direction: column;
    text-align: center;
  }

  .menu a {
    padding: 15px;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin: 0;
  }

  #menu-toggle:checked + .menu-icon + .menu {
    display: flex;
  }
}

@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .menu {
    display: none;
    flex-direction: column;
  }

  #menu-toggle:checked + .menu-icon + .menu {
    display: flex;
  }
}

header {
  position: relative;
}

/* ===== FORZAR POSICIÓN DEL LOGO ===== */
header {
  position: relative !important;
  min-height: 160px; /* da espacio real */
}

header img.logo {
  position: absolute !important;
  top: 20px !important;
  right: 20px !important;
  left: auto !important;
  margin: 0 !important;
  display: block !important;
  height: 60px;
}

/* ===== HAMBURGER FIJO A LA IZQUIERDA ===== */
.hamburger {
  position: fixed !important;
  top: 20px;
  left: 20px;
  z-index: 2000;
}
.direccion-texto {
  display: none;
}

.direccion-texto.mostrar {
  display: block;
}

/* WHATSAPP FLOTANTE SOLO PNG */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.whatsapp-float img {
  width: 200px;      /* tamaño más grande */
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}

