/*
 Theme Name: Rayma Child
 Template: hello-elementor
*/

/* Paleta Rayma */
:root {
  --rayma-blue: #234563;
  --rayma-blue-dark: #132738;
  --rayma-grey: #555555;
  --rayma-light: #f5f6f8;
  --rayma-metal: #777a80;
  --rayma-white: #ffffff;
}

/* Contenedor genérico */
.container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}

/* Ocultar header original de Hello */
header.site-header {
  display: none !important;
}

/* ===== HEADER RAYMA ===== */

header.site-header-rayma {
  background: var(--rayma-white);
  border-bottom: 1px solid #dde1e7;
  position: relative;
  top: auto;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  padding: 14px 0;
  gap: 24px;
}

/* Logo a la izquierda */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 40px;
  margin-right: auto;        /* empuja el menú a la derecha */
}

.logo-img {
  height: 180px;
  width: auto;
  display: block;
}

/* Menú a la derecha en horizontal */
.rayma-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  font-size: 0.92rem;
  margin: 0;
  padding: 0;
}

.rayma-nav a {
  color: var(--rayma-blue-dark);
  font-weight: 500;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  text-decoration: none;
}

.rayma-nav a:hover {
  border-color: var(--rayma-metal);
}

/* ===== FOOTER RAYMA ===== */

.rayma-footer {
  /* Fondo más claro para que el logotipo se vea mejor */
  background: #2f5374; /* más claro que var(--rayma-blue-dark) */
  color: #c3cedd;
  padding: 18px 0;
  font-size: 0.82rem;
  margin-top: 40px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

/* Bloque izquierdo: logo + texto */
.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Tamaño del logo en escritorio (ajusta solo este valor si lo quieres más grande/pequeño) */
.rayma-footer img.footer-logo {
  max-height: 100px;
  height: 100px;
  width: auto;
  display: block;
}

/* Bloque derecho: enlaces */
.footer-links a,
.footer-inner a {
  color: #ffffff;
  text-decoration: none;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left {
    justify-content: center;
  }

  /* Logo un poco más pequeño en móvil (ajustable) */
  .rayma-footer img.footer-logo {
    max-height: 28px;
    height: 28px;
  }
}