/* =========================
   VARIABLES Y BASE GENERAL
   ========================= */
:root {
  --color-bg: #0B1D3A;          /* fondo principal azul oscuro */
  --color-bg-alt: #07152e;      /* fondo alterno si hace falta */
  --color-primary: #FF3B30;     /* rojo R&N */
  --color-accent: #FFD480;      /* dorado suave (detalles) */
  --color-text: #FFFFFF;
  --color-text-soft: #D0D7E2;
  --color-border-soft: rgba(255, 255, 255, 0.08);
  --max-width: 1160px;
}

/* =========================
   RESET Y CONFIGURACIÓN
   ========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Enlace “saltar al contenido” (accesibilidad) */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  padding: 0.5rem 1rem;
  background: #000;
  color: #fff;
  z-index: 999;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* ========================= CABECERA Y MENÚ ========================= */

.site-header {
  background-color: var(--color-bg); /* mismo fondo que el resto */
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border-soft);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
}

.site-title {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 1rem;
  text-transform: uppercase;
}

/* NAVBAR */
.main-nav {
  position: relative;
}

.nav-toggle {
  display: none; /* visible solo en móvil */
  background: none;
  border: 1px solid var(--color-border-soft);
  border-radius: 4px;
  padding: 0.3rem 0.6rem;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--color-text);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--color-primary);
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-menu a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--color-text);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--color-accent);
}

.nav-menu a[aria-current="page"] {
  font-weight: 600;
  border-bottom: 2px solid var(--color-accent);
}

/* Botón CONTACTO */
.nav-btn-contacto {
  border: 1px solid var(--color-text);
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
}

.nav-btn-contacto:hover,
.nav-btn-contacto:focus-visible {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* ========================= HERO / PORTADA PRINCIPAL ========================= */

.hero {
  background-color: var(--color-bg);
  padding: 4rem 0 3.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.6fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-brand {
  text-align: center;
}

.hero-logo {
  max-width: 260px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 1rem;
}

.hero-tagline {
  font-size: 0.95rem;
  color: var(--color-text-soft);
}

.hero-content {
  text-align: left;
}

.hero-title {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 0.9rem;
}

.hero-text {
  font-size: 1rem;
  color: var(--color-text-soft);
  margin-bottom: 1.6rem;
}

/* Botones */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  opacity: 0.9;
}

/* ========================= PIE DE PÁGINA ========================= */

.site-footer {
  background-color: var(--color-bg-alt);
  border-top: 1px solid var(--color-border-soft);
  padding: 1.8rem 0;
  text-align: center;
}

.site-footer p {
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  color: var(--color-text-soft);
}

/* ========================= RESPONSIVE ========================= */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .header-bar {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2.5rem 0 2rem;
  }

  .hero-title {
    font-size: 1.7rem;
  }
}

/* ================= HOJA 2 SIMPLE ================= */

.info-simple {
  background-color: #0b1d3a;
  color: #ffffff;
  padding: 80px 0;
}

.info-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.info-text {
  color: #ffffff;
}

.info-tag {
  display: inline-block;
  text-transform: uppercase;
  color: #7ef0c0;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.info-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 18px 0;
}

.info-text p {
  font-size: 0.95rem;
  color: #cfd4e1;
  margin-bottom: 14px;
  line-height: 1.6;
}

.info-link {
  color: #e10600;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease-in-out;
}

.info-link:hover {
  color: #ffffff;
}

.info-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .info-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .info-image {
    margin-top: 20px;
  }

  .info-text h2 {
    font-size: 1.6rem;
  }
}

/* ================= HOJA 3 ================= */

.hoja3 {
  background-color: #0b1d3a;
  padding: 80px 0;
  color: #ffffff;
}

.hoja3-container {
  max-width: 1100px;
  margin: 0 auto;
}

.hoja3-header {
  text-align: left;
  margin-bottom: 40px;
}

.hoja3-tag {
  display: inline-block;
  text-transform: uppercase;
  color: #7ef0c0;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.hoja3 h2 {
  font-size: 2rem;
  margin: 0;
}

.hoja3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hoja3-card {
  background-color: #132544;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hoja3-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

.hoja3-image img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.hoja3-text {
  padding: 18px 20px 22px;
}

.hoja3-text h3 {
  font-size: 1.1rem;
  margin: 0 0 6px 0;
  color: #ffffff;
}

.hoja3-text p {
  font-size: 0.9rem;
  color: #cfd4e1;
  margin: 0 0 12px 0;
}

.hoja3-link {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: #e10600;
  transition: color 0.2s ease;
}

.hoja3-link:hover {
  color: #ffffff;
}

/* Responsive */

@media (max-width: 900px) {
  .hoja3-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= HOJA 4: PLANES ================= */

.hoja4 {
  background-color: #0b1d3a;
  padding: 80px 0;
  color: #ffffff;
}

.hoja4-container {
  max-width: 1100px;
  margin: 0 auto;
}

.hoja4-title {
  font-size: 2rem;
  margin: 0 0 32px 0;
}

.planes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.plan-card {
  background-color: #132544;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.plan-image img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.plan-body {
  padding: 18px 20px 22px;
  font-size: 0.9rem;
  color: #cfd4e1;
}

.plan-body h3 {
  font-size: 1.1rem;
  margin: 0 0 4px 0;
  color: #ffffff;
}

.plan-lead {
  margin: 0 0 6px 0;
  font-weight: 500;
  color: #ffffff;
}

.plan-price {
  margin: 0 0 10px 0;
  font-weight: 600;
  color: #ffd480;
}

.plan-subtitle {
  margin: 12px 0 6px 0;
  font-weight: 600;
  color: #ffffff;
}

.plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
}

.plan-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 4px;
}

.plan-list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  top: 0;
  color: #e10600;
}

.plan-cta {
  margin: 0;
}

.plan-link {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: #e10600;
  transition: color 0.2s ease;
}

.plan-link:hover {
  color: #ffffff;
}

/* Responsive */

@media (max-width: 900px) {
  .planes-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= HOJA 5: PASOS ================= */

.hoja5 {
  background-color: #0b1d3a;
  padding: 80px 0;
  color: #ffffff;
}

.hoja5-container {
  max-width: 1100px;
  margin: 0 auto;
}

.hoja5-tag {
  display: inline-block;
  text-transform: uppercase;
  color: #7ef0c0;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.hoja5-title {
  font-size: 2rem;
  margin: 0 0 32px 0;
}

.pasos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.paso-card {
  background-color: #132544;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1.6fr;
}

.paso-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.paso-body {
  padding: 18px 20px 22px;
  font-size: 0.9rem;
  color: #cfd4e1;
}

.paso-body h3 {
  font-size: 1.05rem;
  margin: 0 0 6px 0;
  color: #ffffff;
}

.paso-body p {
  margin: 0 0 10px 0;
}

/* Botón "Saber más…" consistente con el resto del sitio */

.paso-cta {
  margin: 4px 0 0 0;
}

.paso-link {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: #e10600;
  transition: color 0.2s ease;
}

.paso-link:hover {
  color: #ffffff;
}

/* Responsive */

@media (max-width: 900px) {
  .pasos-grid {
    grid-template-columns: 1fr;
  }

  .paso-card {
    grid-template-columns: 1fr;
  }
}

/* ================= HOJA 6: FORMULARIO AUTOPUBLICACIÓN ================= */

.hoja6 {
  background-color: #0b1d3a;
  padding: 80px 0;
  color: #ffffff;
}

.hoja6-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: flex-start;
}

/* TITULOS E INTRO */

.hoja6-tag {
  display: inline-block;
  text-transform: uppercase;
  color: #7ef0c0;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.hoja6-title {
  font-size: 2rem;
  margin: 0 0 6px 0;
}

.hoja6-intro {
  margin: 0 0 16px 0;
  color: #cfd4e1;
  font-size: 0.95rem;
}

/* AVISO LEGAL PREVIO */

.autopub-aviso-legal {
  background-color: rgba(4, 13, 30, 0.9);
  border-left: 4px solid #e10600;
  padding: 10px 12px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: #cfd4e1;
}

.autopub-aviso-legal p {
  margin: 0 0 6px 0;
}

.autopub-aviso-legal p:last-child {
  margin-bottom: 0;
}

.autopub-aviso-legal a.legal-link {
  color: #ffd480;
  text-decoration: none;
  font-weight: 600;
}

.autopub-aviso-legal a.legal-link:hover {
  text-decoration: underline;
  color: #ffffff;
}

/* FORMULARIO PRINCIPAL */

.autopub-form {
  background-color: #132544;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  padding: 22px 22px 24px;
}

.autopub-fieldgroup {
  margin-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 16px;
}

.autopub-fieldgroup:first-of-type {
  border-top: none;
  padding-top: 0;
}

.autopub-subtitle {
  font-size: 1rem;
  margin: 0 0 10px 0;
  font-weight: 600;
}

/* FILAS Y CAMPOS */

.autopub-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px 18px;
  margin-bottom: 10px;
}

.autopub-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.autopub-form label {
  font-size: 0.85rem;
  color: #cfd4e1;
}

.autopub-form input,
.autopub-form select,
.autopub-form textarea {
  width: 100%;
  background-color: rgba(4, 13, 30, 0.9);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 8px 11px;
  font-size: 0.9rem;
  color: #ffffff;
  outline: none;
  font-family: inherit;
}

.autopub-form textarea {
  border-radius: 14px;
  min-height: 110px;
  resize: vertical;
}

.autopub-form input:focus,
.autopub-form select:focus,
.autopub-form textarea:focus {
  border-color: #e10600;
  box-shadow: 0 0 0 1px rgba(225, 6, 0, 0.4);
}

.autopub-form input::placeholder,
.autopub-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-help {
  font-size: 0.78rem;
  color: #9fa8c3;
}

/* RADIOS DE PLANES */

.planes-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.plan-radio {
  display: inline-flex;
  align-items: stretch;
  cursor: pointer;
  position: relative;
}

.plan-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.plan-radio-box {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 8px 12px;
  font-size: 0.85rem;
  background-color: rgba(4, 13, 30, 0.9);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.plan-radio input:checked + .plan-radio-box {
  border-color: #e10600;
  background-color: rgba(225, 6, 0, 0.18);
}

/* ACEPTACIÓN Y BOTÓN */

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: #cfd4e1;
  margin-bottom: 14px;
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.autopub-submit-block .btn-full {
  margin-bottom: 8px;
}

.autopub-nota {
  font-size: 0.8rem;
  color: #9fa8c3;
  margin: 0 0 4px 0;
}

.autopub-mensaje {
  font-size: 0.85rem;
  margin-top: 6px;
}

/* ASIDE (COLUMNA DERECHA) */

.autopub-aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.autopub-aside-box {
  background-color: #132544;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 16px 18px;
  font-size: 0.88rem;
  color: #cfd4e1;
}

.autopub-aside-box h3 {
  font-size: 1rem;
  margin: 0 0 8px 0;
}

.autopub-aside-box ul {
  padding-left: 18px;
  margin: 0;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hoja6-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .autopub-aside {
    order: -1;
  }

  .autopub-form {
    padding: 18px 16px 20px;
  }
}

/* ============ ESTILOS GLOBALES UNIFICADOS R&N ============ */

/* Paleta base R&N (ajusta si ya tienes otros valores) */

:root {
    --bg-main: #020617;      /* fondo general oscuro */
    --bg-header: #020617;    /* mismo color para header y fondo */
    --text-main: #f9fafb;
    --text-muted: #d1d5db;
    --accent: #22c55e;       /* botón principal (puedes cambiarlo por dorado/rojo) */
    --accent-alt: #0f172a;   /* botón secundario */
    --accent-hover: #16a34a;
    --accent-alt-hover: #020617;
}

/* Reset básico para eliminar franjas blancas y espacios raros */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Contenedor general */

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============ HEADER / NAVBAR ============ */

.site-header {
    width: 100%;
    background-color: var(--bg-header); /* mismo color para header y fondo */
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

/* Logo bien visible, sin cortes en el lateral */

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: visible;
}

.brand-logo {
    height: 56px;  /* ajusta el tamaño a tu gusto */
    width: auto;
    display: block;
}

.brand-text {
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #e5e7eb;
    white-space: nowrap;
}

/* Menú superior */

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 24px;
}

.main-nav a {
    text-decoration: none;
    font-size: 0.95rem;
    color: #e5e7eb;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: #ffffff;
}

/* --- Navegación mejorada: botón Administración y menú responsive --- */

/* Enlace especial de administración en el menú */
.main-nav a.nav-admin-link {
    color: #38bdf8;
    font-weight: 600;
}

.main-nav a.nav-admin-link:hover {
    color: #ffffff;
}

/* Botón hamburguesa para móviles */
.nav-toggle {
    display: none;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    padding: 6px 10px;
    font-size: 0.85rem;
    background-color: transparent;
    color: #e5e7eb;
    cursor: pointer;
    align-items: center;
    gap: 6px;
}

.nav-toggle-icon {
    display: inline-block;
    width: 18px;
    height: 2px;
    background-color: #e5e7eb;
    position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background-color: #e5e7eb;
}

.nav-toggle-icon::before {
    top: -5px;
}

.nav-toggle-icon::after {
    top: 5px;
}

/* Ajustes responsive del menú */
@media (max-width: 900px) {
    .nav-container {
        flex-wrap: wrap;
        align-items: center;
        gap: 8px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .main-nav {
        width: 100%;
        order: 3;
        display: none;
    }

    .main-nav.is-open {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-top: 8px;
    }

    .btn-cta {
        order: 2;
        margin-left: auto;
        font-size: 0.8rem;
        padding: 8px 14px;
    }
}

/* ============ HERO PRINCIPAL (Gestión inmobiliaria) ============ */

.hero {
    background-color: var(--bg-main);
    padding: 72px 0 96px;
}

.hero-inner {
    display: flex;
    align-items: flex-start;
}

.hero-text {
    max-width: 720px;
}

.hero-title {
    font-size: 2.6rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-lead {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--text-main);
}

.hero-body {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.hero-buttons {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Botones */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.btn-primary {
    background-color: #E10600; /* rojo corporativo R&N */
    border-color: #E10600;
    color: #ffffff; /* texto blanco */
}

.btn-primary:hover {
    background-color: #ff241e; /* tono más claro al pasar el ratón */
    border-color: #ff241e;
    transform: translateY(-1px);
}

/* Botón secundario estilo R&N */

.btn-secondary {
    background-color: transparent;
    border: 2px solid #E10600; /* rojo R&N */
    color: #E10600; /* texto rojo */
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background-color: #E10600; /* fondo rojo al pasar el cursor */
    color: #ffffff; /* texto blanco */
    transform: translateY(-1px);
}

/* ============ SECCIONES INFERIORES ============ */

.section {
    padding: 72px 0;
    background-color: #020617;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
}

.section:nth-of-type(even) {
    background-color: #030712;
}

.section h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.section p {
    font-size: 0.98rem;
    color: var(--text-muted);
}

/* ============ FOOTER ============ */

.site-footer {
    padding: 32px 0;
    background-color: #020617;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    text-align: center;
    font-size: 0.85rem;
    color: #9ca3af;
}

/* ============ RESPONSIVE ============ */

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .main-nav ul {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-inner {
        flex-direction: column;
    }

    .hero-title {
        font-size: 2rem;
    }
}

/* ============ PÁGINA B: SLIDER PRINCIPAL ============ */

.hero-slider {
    background-color: #000;
}

/* Contenedor del slider */

.slider {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px); /* ajusta 80px si tu header es más alto o más bajo */
    max-height: 720px;
    overflow: hidden;
}

/* Cada imagen de fondo (tapiz) */

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transition: opacity 0.6s ease;
}

/* Oscurecer un poco la imagen para que el texto resalte */

.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* La visible */

.slide.active {
    opacity: 1;
}

/* TEXTO FIJO EN EL CENTRO (solo uno, no por slide) */

.slider-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
    color: #ffffff;
}

.slide-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 12px;
}

.slide-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.slide-text {
    font-size: 0.98rem;
    max-width: 580px;
    margin-bottom: 24px;
}

/* Botón del slider (tipo CTA) */

.btn-hero {
    padding: 12px 32px;
    border-radius: 999px;
    border: 2px solid #ffffff;
    background-color: transparent;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.btn-hero:hover {
    background-color: #E10600; /* rojo R&N */
    border-color: #E10600;
    color: #ffffff;
    transform: translateY(-1px);
}

/* Flechas del slider */

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    background-color: #0b1d3a; /* azul oscuro R&N */
    opacity: 0.9;
    transition: opacity 0.2s ease, transform 0.1s ease;
    z-index: 4; /* 🔹 por encima del texto y de las imágenes */
}

.slider-arrow:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.03);
}

.slider-arrow-left {
    left: 24px;
}

.slider-arrow-right {
    right: 24px;
}

/* Puntos inferiores */

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    background-color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.slider-dot.active {
    background-color: #ffffff;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .slider {
        height: 480px;
    }

    .slide-title {
        font-size: 2.2rem;
    }

    .slide-subtitle {
        font-size: 1rem;
    }

    .slide-text {
        font-size: 0.9rem;
    }
}

/* ============ PÁGINA C: HOME STAGING + SERVICIOS (ESTILO R&N) ============ */

/* Bloque superior con color corporativo */

.services-intro {
    background-color: #0b1d3a; /* azul oscuro R&N */
    color: #ffffff;
    padding: 80px 0 50px;
    text-align: center;
}

.services-intro h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #FFD480; /* dorado R&N */
    margin-bottom: 18px;
}

.services-intro p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
    color: #f0f0f0;
}

/* Fondo general gris grafito */

.services-grid-section {
    background-color: #111827; /* gris azulado oscuro */
    padding: 50px 0 80px;
}

/* Cuadrícula de tarjetas */

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2 columnas reales */
    gap: 40px; /* Espacio equilibrado */
    width: 100%;
    max-width: 900px; /* Contenedor centrado */
    margin: 0 auto; /* ✅ CENTRA TODO */
    justify-content: center; /* ✅ Refuerzo de centrado */
    align-items: stretch;
}

/* En pantallas medianas: 2 por fila */

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* En móviles: 1 por fila */

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Tarjeta individual */

.service-card {
    background-color: #0b1d3a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5);
}

.service-card-image img {
    width: 100%;
    height: 180px; /* más bajita, tarjeta más compacta */
    object-fit: cover;
    object-position: top center; /* muestra más la parte superior (caras, etc.) */
    display: block;
}

.service-card-body {
    padding: 22px;
    color: #ffffff;
    text-align: left;
}

.service-card-body h2 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #FFD480; /* dorado */
}

.service-card-body p {
    font-size: 0.92rem;
    color: #e5e7eb;
    margin-bottom: 20px;
}

/* Botón coherente con el resto del sitio */

.btn-service {
    display: inline-block;
    background-color: #E10600; /* rojo R&N */
    color: #ffffff;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-service:hover {
    background-color: #FFD480;
    color: #0b1d3a;
    transform: translateY(-2px);
}

/* Responsive */

@media (max-width: 768px) {
    .services-intro h1 {
        font-size: 1.6rem;
    }

    .services-intro p {
        font-size: 0.95rem;
    }
}

/* ============ PÁGINA D: CONTACTO ============ */

.contact-section {
    background-color: #020617; /* mismo fondo general */
    padding: 72px 0 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: flex-start;
}

/* Tarjeta de formulario */

.contact-card {
    background-color: #0b1d3a; /* azul corporativo */
    padding: 32px 28px;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

.contact-card h1 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 24px;
}

/* Formulario */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #e5e7eb;
}

.form-group input,
.form-group textarea {
    border-radius: 8px;
    border: 1px solid #1f2937;
    background-color: #020617;
    padding: 10px 12px;
    color: #f9fafb;
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6b7280;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #FFD480; /* dorado */
    box-shadow: 0 0 0 1px #FFD480;
}

/* Checkbox */

.form-group-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.8rem;
}

.form-group-checkbox input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
}

/* Botón ENVIAR */

.btn-contact {
    margin-top: 8px;
    width: 100%;
    max-width: 220px;
    background-color: #E10600; /* rojo R&N */
    border: none;
    color: #ffffff;
    border-radius: 999px;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-contact:hover {
    background-color: #ff241e;
    transform: translateY(-1px);
}

/* Columna derecha: info contacto */

.contact-info-card {
    background-color: #020617;
    padding: 8px 0;
    color: #e5e7eb;
}

.contact-info-card h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #FFD480;
}

.contact-info-card .info-block {
    margin-bottom: 18px;
}

.contact-info-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #f9fafb;
}

.contact-info-card p {
    font-size: 0.9rem;
    color: #d1d5db;
}

.contact-info-card a {
    color: #38bdf8;
    text-decoration: none;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

/* Lista de horarios */

.schedule-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    border-top: 1px solid rgba(148, 163, 184, 0.3);
    padding-top: 10px;
}

.schedule-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #9ca3af;
    margin-bottom: 4px;
}

/* Responsive */

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        order: 1;
    }

    .contact-info-card {
        order: 2;
    }
}

/* Aviso legal en formulario de contacto */

.legal-notice {
    font-size: 0.8rem;
    color: #d1d5db;
    line-height: 1.6;
    background-color: rgba(255, 255, 255, 0.03);
    border-left: 3px solid #FFD480; /* dorado corporativo */
    padding: 12px 16px;
    border-radius: 8px;
}

.legal-notice a {
    color: #FFD480;
    font-weight: 500;
    text-decoration: underline;
}

.legal-notice a:hover {
    color: #E10600; /* rojo corporativo */
}

/* ============ PÁGINA DE POLÍTICA DE PROTECCIÓN DE DATOS ============ */

.legal-page {
    background-color: #0b1d3a; /* azul corporativo R&N */
    color: #f5f5f5;
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    padding: 80px 0;
}

.legal-container {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    background-color: #020617; /* azul casi negro */
    padding: 40px 50px;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.legal-container h1 {
    font-size: 2rem;
    color: #FFD480; /* dorado corporativo */
    font-weight: 700;
    margin-bottom: 10px;
}

.legal-container h2 {
    font-size: 1.3rem;
    color: #FFD480;
    margin-top: 32px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 212, 128, 0.2);
    padding-bottom: 4px;
}

.legal-container h3 {
    font-size: 1.1rem;
    color: #FFD480;
    margin-top: 24px;
    margin-bottom: 8px;
}

.legal-container p,
.legal-container li {
    color: #e5e7eb;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.legal-container strong {
    color: #ffffff;
    font-weight: 600;
}

.legal-container a {
    color: #38bdf8;
    text-decoration: none;
    font-weight: 500;
}

.legal-container a:hover {
    color: #FFD480;
    text-decoration: underline;
}

.legal-container ul {
    margin: 10px 0 20px 20px;
}

.legal-container li {
    list-style: disc;
}

/* Última actualización */

.legal-update {
    font-style: italic;
    font-size: 0.9rem;
    color: #9ca3af;
    margin-bottom: 20px;
}

/* Responsive */

@media (max-width: 768px) {
    .legal-container {
        padding: 28px 24px;
    }

    .legal-container h1 {
        font-size: 1.6rem;
    }

    .legal-container h2 {
        font-size: 1.2rem;
    }
}

/* ============ PORTAL DE EMPLEO R&N – PÁGINA A1 ============ */

.jobs-hero {
    background: radial-gradient(circle at top left, #0b1d3a 0, #020617 55%, #020617 100%);
    color: #f9fafb;
    padding: 80px 0 90px;
}

.jobs-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 40px;
    align-items: flex-start;
}

.jobs-hero-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #FFD480;
    margin-bottom: 10px;
}

.jobs-hero-title {
    font-size: 2.3rem;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 18px;
}

.jobs-hero-lead {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.jobs-hero-body {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #e5e7eb;
    margin-bottom: 22px;
}

.jobs-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Columna derecha: tarjetas explicativas */

.jobs-hero-aside {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.jobs-hero-card {
    background-color: #020617;
    border-radius: 16px;
    padding: 20px 22px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}

.jobs-hero-card h2 {
    font-size: 1.1rem;
    color: #FFD480;
    margin-bottom: 10px;
}

.jobs-hero-card p {
    font-size: 0.9rem;
    color: #e5e7eb;
    margin-bottom: 12px;
}

.jobs-hero-card ul {
    list-style: disc;
    padding-left: 18px;
}

.jobs-hero-card li {
    font-size: 0.86rem;
    color: #cbd5f5;
    margin-bottom: 4px;
}

/* Bloque de beneficios inferiores */

.jobs-benefits {
    background-color: #020617;
    padding: 50px 0 70px;
}

.jobs-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.jobs-benefit {
    background-color: #0b1d3a;
    border-radius: 16px;
    padding: 20px 22px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.jobs-benefit h3 {
    font-size: 1.05rem;
    color: #FFD480;
    margin-bottom: 10px;
}

.jobs-benefit p {
    font-size: 0.9rem;
    color: #e5e7eb;
}

/* Responsive */

@media (max-width: 1024px) {
    .jobs-hero-inner {
        grid-template-columns: 1fr;
    }

    .jobs-hero-aside {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .jobs-hero-card {
        flex: 1 1 260px;
    }

    .jobs-benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .jobs-benefits-grid {
        grid-template-columns: 1fr;
    }

    .jobs-hero-title {
        font-size: 1.9rem;
    }
}

/* ============ PORTAL EMPLEO – PÁGINA A2 (BUSCO TRABAJO) ============ */

.jobs-form-section {
    background-color: #020617;
    padding: 72px 0 80px;
}

.jobs-form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 40px;
    align-items: flex-start;
}

/* Tarjeta principal del formulario */

.jobs-form-card {
    background-color: #0b1d3a;
    padding: 32px 28px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
    color: #ffffff;
}

.jobs-form-card h1 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.jobs-form-intro {
    font-size: 0.95rem;
    color: #e5e7eb;
    margin-bottom: 20px;
}

/* Selects coherentes con inputs */

.jobs-form-card select {
    border-radius: 8px;
    border: 1px solid #1f2937;
    background-color: #020617;
    padding: 10px 12px;
    color: #f9fafb;
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.jobs-form-card select:focus {
    border-color: #FFD480;
    box-shadow: 0 0 0 1px #FFD480;
}

/* Texto informativo del pago */

.jobs-payment-info {
    margin-top: 8px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: #e5e7eb;
    background-color: rgba(255, 255, 255, 0.03);
    border-left: 3px solid #E10600;
    padding: 10px 14px;
    border-radius: 8px;
}

/* Columna derecha: info y pasos */

.jobs-form-info {
    color: #e5e7eb;
    padding: 4px 4px 4px 4px;
}

.jobs-form-info h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FFD480;
    margin-bottom: 10px;
}

.jobs-form-info h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #FFD480;
    margin-top: 20px;
    margin-bottom: 8px;
}

.jobs-form-info ol,
.jobs-form-info ul {
    padding-left: 20px;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.jobs-form-info li {
    margin-bottom: 6px;
    color: #cbd5f5;
}

.jobs-form-note {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #9ca3af;
    line-height: 1.6;
}

/* Responsive */

@media (max-width: 960px) {
    .jobs-form-grid {
        grid-template-columns: 1fr;
    }

    .jobs-form-info {
        margin-top: 20px;
    }
}

/* ============ PORTAL EMPLEO – PÁGINA A4 (TABLÓN BUSCO TRABAJO) ============ */

.jobs-board-hero {
    background-color: #020617;
    padding: 70px 0 40px;
    color: #f9fafb;
}

.jobs-board-hero h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.jobs-board-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #FFD480;
    margin-bottom: 8px;
}

.jobs-board-intro {
    max-width: 760px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #e5e7eb;
}

/* Filtros superiores */

.jobs-board-filters {
    background-color: #020617;
    padding-bottom: 10px;
}

.jobs-board-filters-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 8px 0 18px;
    border-top: 1px solid rgba(148, 163, 184, 0.3);
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 220px;
    flex: 1 1 240px;
}

.filter-group label {
    font-size: 0.8rem;
    color: #9ca3af;
}

.filter-group input,
.filter-group select {
    border-radius: 8px;
    border: 1px solid #1f2937;
    background-color: #020617;
    padding: 8px 10px;
    color: #f9fafb;
    font-size: 0.9rem;
}

/* Lista de anuncios */

.jobs-board-list {
    background-color: #020617;
    padding: 30px 0 70px;
}

.jobs-board-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.jobs-card {
    background-color: #0b1d3a;
    border-radius: 16px;
    padding: 18px 20px 16px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.55);
    color: #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.jobs-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 4px;
}

.jobs-card-header h2 {
    font-size: 1rem;
    font-weight: 600;
    color: #FFD480;
}

.jobs-card-meta {
    font-size: 0.85rem;
    color: #cbd5f5;
}

.jobs-card-body {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #e5e7eb;
}

.jobs-card-extra {
    font-size: 0.85rem;
    color: #d1d5db;
}

/* Chips y botón de contacto */

.jobs-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background-color: #E10600;
    color: #ffffff;
    white-space: nowrap;
}

.jobs-chip-soft {
    background-color: rgba(148, 163, 184, 0.2);
    color: #e5e7eb;
}

.jobs-card-footer {
    margin-top: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
}

.jobs-card-contact {
    margin-left: auto;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    background-color: #E10600;
    color: #ffffff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.jobs-card-contact:hover {
    background-color: #ff241e;
    transform: translateY(-1px);
}

/* Responsive */

@media (max-width: 960px) {
    .jobs-board-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ PORTAL EMPLEO – PÁGINA A6 (CONDICIONES Y TARIFAS) ============ */

.jobs-pricing-hero {
    background-color: #020617;
    padding: 72px 0 40px;
    color: #f9fafb;
}

.jobs-pricing-hero h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.jobs-pricing-intro {
    max-width: 760px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #e5e7eb;
    margin-bottom: 10px;
}

/* Tarjetas de precios */

.jobs-pricing-section {
    background-color: #020617;
    padding: 30px 0 60px;
}

.jobs-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.pricing-card {
    background-color: #0b1d3a;
    border-radius: 16px;
    padding: 22px 24px 24px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.55);
    color: #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-card h2 {
    font-size: 1.3rem;
    color: #FFD480;
    margin-bottom: 4px;
}

.pricing-role {
    font-size: 0.9rem;
    color: #cbd5f5;
    margin-bottom: 10px;
}

.pricing-features {
    list-style: disc;
    padding-left: 18px;
    font-size: 0.9rem;
    color: #e5e7eb;
    margin-bottom: 12px;
}

.pricing-features li {
    margin-bottom: 4px;
}

.pricing-price {
    background-color: #020617;
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
}

.pricing-label {
    font-size: 0.85rem;
    color: #9ca3af;
}

.pricing-amount {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFD480;
}

.pricing-note {
    font-size: 0.8rem;
    color: #9ca3af;
}

.pricing-cta {
    align-self: flex-start;
    margin-top: 4px;
}

/* Bloque de condiciones generales */

.jobs-conditions {
    background-color: #020617;
    padding: 0 0 70px;
}

.jobs-conditions h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFD480;
    margin-bottom: 18px;
}

.jobs-conditions-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.jobs-condition-block {
    background-color: #0b1d3a;
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.5);
}

.jobs-condition-block h3 {
    font-size: 1.05rem;
    color: #FFD480;
    margin-bottom: 8px;
}

.jobs-condition-block p {
    font-size: 0.9rem;
    color: #e5e7eb;
    line-height: 1.6;
}

/* Responsive */

@media (max-width: 960px) {
    .jobs-pricing-grid {
        grid-template-columns: 1fr;
    }

    .jobs-conditions-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ PORTAL EMPLEO – PÁGINA A7 (FAQ) ============ */

.jobs-faq-hero {
    background-color: #020617;
    padding: 72px 0 36px;
    color: #f9fafb;
}

.jobs-faq-hero h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.jobs-faq-intro {
    max-width: 760px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #e5e7eb;
}

/* Contenedor de FAQ */

.jobs-faq-section {
    background-color: #020617;
    padding: 20px 0 70px;
}

.jobs-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

/* Columnas */

.jobs-faq-column h2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFD480;
    margin-bottom: 10px;
}

/* Cada FAQ item */

.jobs-faq-item {
    background-color: #0b1d3a;
    border-radius: 12px;
    margin-bottom: 8px;
    padding: 10px 14px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5);
}

.jobs-faq-item summary {
    list-style: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: #f9fafb;
    position: relative;
}

/* Quitar triángulo por defecto en algunos navegadores */

.jobs-faq-item summary::-webkit-details-marker {
    display: none;
}

/* Icono + / - */

.jobs-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-weight: 700;
    color: #FFD480;
}

/* Cuando está abierto */

.jobs-faq-item[open] summary::after {
    content: "−";
}

.jobs-faq-item p {
    margin-top: 8px;
    font-size: 0.88rem;
    line-height: 1.6;
    color: #e5e7eb;
}

.jobs-faq-item a {
    color: #38bdf8;
    text-decoration: none;
}

.jobs-faq-item a:hover {
    color: #FFD480;
    text-decoration: underline;
}

/* Responsive */

@media (max-width: 960px) {
    .jobs-faq-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ PORTAL EMPLEO – PÁGINA A8 (PAGO / PASARELA) ============ */

.jobs-payment-page {
    background-color: #020617;
    padding: 80px 0 90px;
    display: flex;
    align-items: center;
}

.jobs-payment-card {
    max-width: 640px;
    margin: 0 auto;
    background-color: #0b1d3a;
    border-radius: 20px;
    padding: 28px 26px 26px;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.6);
    color: #f9fafb;
}

.jobs-payment-card h1 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.jobs-payment-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #e5e7eb;
    margin-bottom: 10px;
}

.jobs-payment-list {
    font-size: 0.9rem;
    color: #e5e7eb;
    margin: 4px 0 14px 18px;
}

.jobs-payment-list li {
    margin-bottom: 4px;
}

/* Aviso importante */

.jobs-payment-warning {
    background-color: #020617;
    border-radius: 12px;
    padding: 12px 14px;
    border-left: 3px solid #E10600;
    margin-bottom: 16px;
}

.jobs-payment-warning p {
    font-size: 0.88rem;
    color: #f9fafb;
}

/* Botones / acciones */

.jobs-payment-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}

.jobs-payment-btn {
    width: 100%;
    text-align: center;
}

.jobs-payment-back {
    font-size: 0.88rem;
    color: #38bdf8;
    text-align: center;
    text-decoration: none;
}

.jobs-payment-back:hover {
    text-decoration: underline;
}

/* Nota final */

.jobs-payment-note {
    font-size: 0.85rem;
    color: #9ca3af;
    line-height: 1.6;
}

.jobs-payment-note a {
    color: #FFD480;
    text-decoration: underline;
}

.jobs-payment-note a:hover {
    color: #E10600;
}

/* Responsive */

@media (max-width: 640px) {
    .jobs-payment-card {
        padding: 22px 18px 20px;
    }

    .jobs-payment-card h1 {
        font-size: 1.6rem;
    }
}

/* ========================= Tablón Véndelo: tarjetas + modal ========================= */

.board-section {
    padding: 40px 0 80px;
}

.board-header h1 {
    margin-bottom: 0.4rem;
}

.board-cta {
    margin-top: 0.5rem;
}

/* Rejilla tipo iconos */

.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

/* Tarjeta de inmueble (icono) */

.property-card {
    background-color: #020617;
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.45);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.property-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.55);
}

.property-card-header h2 {
    font-size: 1rem;
    margin: 0 0 4px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.property-location {
    font-size: 0.9rem;
    color: #9ca3af;
    margin: 0;
}

.property-ref {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 4px;
}

.property-card-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.property-price {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #fbbf24;
}

.property-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
    color: #e5e7eb;
}

.property-features li {
    padding: 2px 8px;
    border-radius: 999px;
    background-color: #111827;
}

.property-description {
    font-size: 0.85rem;
    color: #d1d5db;
    margin: 0;
}

.property-more {
    font-size: 0.8rem;
    color: #93c5fd;
    margin: 4px 0 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Modal detalle de inmueble */

.property-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 60;
}

.property-modal.is-open {
    display: block;
}

.property-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.property-modal-dialog {
    position: relative;
    max-width: 720px;
    margin: 40px auto;
    background: #020617;
    border-radius: 18px;
    padding: 24px 24px 26px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
    color: #e5e7eb;
}

.property-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    border: none;
    background: transparent;
    color: #9ca3af;
    font-size: 1.4rem;
    cursor: pointer;
}

.property-modal-header {
    margin-bottom: 14px;
}

.property-modal-title {
    margin: 0 0 4px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.property-modal-location {
    margin: 0;
    font-size: 0.95rem;
    color: #9ca3af;
}

.property-modal-ref {
    margin: 4px 0 0;
    font-size: 0.8rem;
    color: #6b7280;
}

.property-modal-price {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 6px;
    color: #fbbf24;
}

.property-modal-features {
    margin: 0 0 10px;
    font-size: 0.9rem;
    color: #e5e7eb;
}

.property-modal-description {
    margin: 0 0 12px;
    font-size: 0.9rem;
    color: #d1d5db;
}

.property-modal-meta {
    margin: 0 0 8px;
    font-size: 0.8rem;
    color: #9ca3af;
}

.property-modal-note {
    margin: 0;
    font-size: 0.8rem;
    color: #6b7280;
}

/* Responsive modal */

@media (max-width: 768px) {
    .property-modal-dialog {
        margin: 20px 12px;
        padding: 20px 16px 22px;
    }
}
/* ============ PÁGINA VER PUBLICACIONES (PORTADA) ============ */

.publicaciones-landing {
  background-color: #020617; /* fondo oscuro general */
  color: #f9fafb;
  padding: 80px 0 90px;
}

.publicaciones-header {
  max-width: 760px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.publicaciones-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FFD480; /* dorado R&N */
  margin-bottom: 8px;
}

.publicaciones-header h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.publicaciones-lead {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #e5e7eb;
}

/* Grid de dos columnas (Premium | Propietarios) */
.publicaciones-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

/* Tarjetas */
.publicaciones-card {
  border-radius: 18px;
  padding: 24px 24px 26px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.publicaciones-premium {
  background: radial-gradient(circle at top left, #0b1d3a 0, #020617 55%);
  border: 1px solid rgba(255, 212, 128, 0.32); /* dorado */
}

.publicaciones-propietarios {
  background-color: #0b1d3a;
  border: 1px solid rgba(56, 189, 248, 0.35); /* azul suave para contraste */
}

.publicaciones-card h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #FFD480;
}

.publicaciones-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #e5e7eb;
}

.publicaciones-list {
  margin: 4px 0 8px 18px;
  padding: 0;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.publicaciones-list li {
  margin-bottom: 4px;
}

.publicaciones-highlight {
  font-size: 0.9rem;
  color: #fbbf24;
  margin-top: 4px;
}

/* Botones */
.btn-publicaciones {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 11px 24px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease, border-color 0.2s ease;
}

.btn-publicaciones-primary {
  background-color: #E10600; /* rojo R&N */
  color: #ffffff;
  border: 2px solid #E10600;
}

.btn-publicaciones-primary:hover {
  background-color: #ff241e;
  border-color: #ff241e;
  transform: translateY(-1px);
}

.btn-publicaciones-secondary {
  background-color: transparent;
  color: #38bdf8; /* azul */
  border: 2px solid #38bdf8;
}

.btn-publicaciones-secondary:hover {
  background-color: #38bdf8;
  color: #020617;
  transform: translateY(-1px);
}

/* Nota inferior */
.publicaciones-note {
  margin-top: 26px;
  font-size: 0.9rem;
  color: #9ca3af;
  text-align: center;
}

/* Enlace "Administración" en el menú, con estilo diferenciado */
.menu-admin-link {
  color: #38bdf8;
  font-weight: 600;
}

.menu-admin-link:hover {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 900px) {
  .publicaciones-grid {
    grid-template-columns: 1fr;
  }

  .publicaciones-header h1 {
    font-size: 1.7rem;
  }
}

@media (max-width: 640px) {
  .publicaciones-landing {
    padding: 60px 0 70px;
  }
}
/* Paginación para tablones de propiedades (20 en 20) */
.board-pagination {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  font-size: 0.9rem;
  color: #9ca3af;
}

.board-page-btn {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #4b5563;
  background-color: #020617;
  color: #e5e7eb;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.board-page-btn[disabled] {
  opacity: 0.6;
  cursor: default;
}

.board-page-btn:not([disabled]):hover {
  background-color: #E10600;
  border-color: #E10600;
  color: #ffffff;
  transform: translateY(-1px);
}

.board-page-btn-next {
  font-weight: 600;
}
/* Paginación para tablones de propiedades (20 en 20) */
.board-pagination {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  font-size: 0.9rem;
  color: #9ca3af;
}

.board-page-btn {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #4b5563;
  background-color: #020617;
  color: #e5e7eb;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.board-page-btn[disabled] {
  opacity: 0.6;
  cursor: default;
}

.board-page-btn:not([disabled]):hover {
  background-color: #E10600;
  border-color: #E10600;
  color: #ffffff;
  transform: translateY(-1px);
}

.board-page-btn-next {
  font-weight: 600;
}
/* Detalles de propiedad */
.property-detail-section {
  background-color: #0b1d3a;
  color: #fff;
  padding: 40px 0;
}

.property-detail-header h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.property-location {
  font-size: 1rem;
  color: #FFD480;
}

.property-detail-body {
  padding: 20px;
}

.property-price {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #FFD480;
}

.property-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.property-features li {
  display: inline-block;
  background-color: #111827;
  padding: 5px 15px;
  margin: 5px;
  border-radius: 999px;
}

.property-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #cfd4e1;
  margin-bottom: 20px;
}

.property-images img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 15px;
  border-radius: 8px;
}

.property-actions .btn-cta {
  padding: 12px 24px;
  background-color: #E10600;
  color: #fff;
  text-decoration: none;
  text-align: center;
  border-radius: 999px;
  display: inline-block;
  margin-top: 15px;
}

.property-actions .btn-cta:hover {
  background-color: #ff241e;
}
/* Estilos del panel de administración */
.admin-section {
  background-color: #0b1d3a;
  color: #fff;
  padding: 40px 0;
}

.admin-header h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

#login-container {
  max-width: 400px;
  margin: 0 auto;
}

#login-form label {
  font-size: 1rem;
  margin-bottom: 8px;
}

#login-form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 8px;
}

#login-form button {
  width: 100%;
  padding: 10px;
  background-color: #E10600;
  border: none;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}

#login-error {
  color: red;
  text-align: center;
}

#admin-panel {
  display: block;
}

#property-form label {
  font-size: 1rem;
  margin-bottom: 8px;
}

#property-form input,
#property-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 8px;
}

#property-form button {
  background-color: #E10600;
  color: white;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

#premium-properties {
  margin-top: 20px;
}

#premium-properties li {
  margin-bottom: 10px;
}
/* Estilos para la administración de estado de propiedades */
.change-status {
  margin-top: 40px;
}

.change-status form {
  display: flex;
  flex-direction: column;
}

.change-status input,
.change-status select {
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 8px;
}

.change-status button {
  padding: 10px;
  background-color: #E10600;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.change-status button:hover {
  background-color: #ff241e;
}

#premium-properties li {
  margin-bottom: 10px;
}
/* ====== Listado de publicaciones de propietarios ====== */

.grid-propiedades {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.property-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 1rem;
  padding: 1rem 1.25rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.property-card-image img {
  width: 100%;
  display: block;
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
}

.property-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.property-location {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 0.35rem;
}

.property-price {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.property-desc {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.property-link {
  font-size: 0.9rem;
  text-decoration: underline;
}
/* ====== MENÚ HAMBURGUESA SIEMPRE (DESKTOP + MÓVIL) ====== */

.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .nav-container{
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Checkbox: oculto pero funcional */
.nav-toggle{
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Botón hamburguesa SIEMPRE visible */
.nav-toggle-label{
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  padding: 0.4rem 0.55rem;
  border-radius: 0.6rem;
  margin-left: auto;
  user-select: none;
}

.nav-toggle-bars{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nav-toggle-bars span{
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-text{
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e5e7eb;
}

/* CTA visible (si cabe) */
.header-cta{
  margin-left: 0.5rem;
}

/* NAV desplegable: OCULTO por defecto (importante) */
.main-nav{
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;

  background: rgba(7, 21, 46, 0.98);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;

  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1100;

  max-height: calc(100vh - 90px); /* responsive: no se sale de pantalla */
  overflow: auto;
}

.main-nav ul{
  list-style: none;
  margin: 0;
  padding: 0.9rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.main-nav a{
  display: block;
  padding: 0.45rem 0;
  text-decoration: none;
  color: #e5e7eb;
}

.main-nav a:hover{
  color: #ffffff;
}

/* ABIERTO cuando el checkbox está marcado */
.nav-toggle:checked ~ .main-nav{
  display: block;              /* 🔹 fuerza a mostrarse en móvil */
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Animación del icono al abrir */
.nav-toggle:checked + .nav-toggle-label .nav-toggle-bars span:nth-child(1){
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle:checked + .nav-toggle-label .nav-toggle-bars span:nth-child(2){
  opacity: 0;
}
.nav-toggle:checked + .nav-toggle-label .nav-toggle-bars span:nth-child(3){
  transform: translateY(-6px) rotate(-45deg);
}

/* Responsive extra: si no cabe todo en una línea, baja CTA debajo */
@media (max-width: 900px){
  .site-header .nav-container{
    flex-wrap: wrap;
  }
  .header-cta{
    order: 3;
    width: 100%;
    margin-left: 0;
    text-align: center;
  }
}
<style>
/* Hover sobre imágenes */
.property-images-grid img {
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.property-images-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
}

/* Overlay de imagen ampliada */
.image-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.image-lightbox img {
  max-width: 92vw;
  max-height: 92vh;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}
</style>


