@charset "UTF-8";
/* ==========================================================================
   MAIN.SCSS — Archivo maestro de estilos del sitio (global)
   Compilar: sass css/main.scss css/main.css
   (o: npx sass css/main.scss css/main.css)
   Blog: blog/sass/style.scss → blog/sass/style.css (independiente)
   Migración gradual desde style.css y new-css-layer.css.
   Orden: variables → layout → header → float-panel → (resto al migrar)
   ========================================================================== */
/* --------------------------------------------------------------------------
   VARIABLES — tokens globales del sitio (no genera CSS)
   Origen: style.css color list. Unificar con blog/sass cuando convenga.
   -------------------------------------------------------------------------- */
/* ==========================================================================
   MAIN.SCSS — Archivo maestro de estilos del sitio (global)
   Compilar: sass css/main.scss css/main.css
   (o: npx sass css/main.scss css/main.css)
   Blog: blog/sass/style.scss → blog/sass/style.css (independiente)
   Migración gradual desde style.css y new-css-layer.css.
   Orden: variables → layout → header → float-panel → (resto al migrar)
   ========================================================================== */
/* --------------------------------------------------------------------------
   LAYOUT — contenedor principal .main
   Migrado desde style.css. Más secciones (grid, etc.) al migrar.
   -------------------------------------------------------------------------- */
.main {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   HEADER — .new-header, .mirkodiving-logo, .menu-button, .caja-vacia
   Migrar aquí desde style.css sección HEADER cuando proceda.
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   FLOAT PANEL — .float-container, .float-content, .highlight-feature
   Migrar aquí desde new-css-layer.css sección FLOAT CONTAINER cuando proceda.
   -------------------------------------------------------------------------- */
/* ==========================================================================
   MAIN.SCSS — Archivo maestro de estilos del sitio (global)
   Compilar: sass css/main.scss css/main.css
   (o: npx sass css/main.scss css/main.css)
   Blog: blog/sass/style.scss → blog/sass/style.css (independiente)
   Migración gradual desde style.css y new-css-layer.css.
   Orden: variables → layout → header → float-panel → (resto al migrar)
   ========================================================================== */
.main-footer {
  background: #021017;
  color: #ccc;
  padding: 80px 0 20px;
}
.main-footer .logo {
  color: #075682;
}
.main-footer .footer-brand {
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
}
.main-footer .footer-brand .logo-img {
  height: 28px;
}
.main-footer .footer-brand .logo-text {
  font-size: 1rem;
  display: block;
  color: #ccc;
  font-weight: 800;
}
.main-footer .footer-brand .flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo_footer {
  justify-content: center;
  display: flex;
  align-items: center;
  font-family: "Lato", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: rgb(248, 252, 252);
  gap: 0.5rem;
  text-decoration: none;
  margin-bottom: 1rem;
}
.logo_footer:hover {
  opacity: 0.7;
  transform: translateX(5px);
}

.container {
  max-width: 1200px;
  margin: 0px auto;
  padding: 0.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 4rem;
  margin-bottom: 60px;
}

.footer-label {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #ccc;
}

.mt-small {
  margin-top: 1.5rem;
}

.a-links {
  color: #fff;
  display: block;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  opacity: 1;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  font-weight: 550;
  text-decoration: none;
  text-transform: uppercase;
}
.a-links:hover {
  opacity: 0.7;
  transform: translateX(5px);
  color: #38bdf8;
}

.footer-links {
  margin: 0 auto;
}

.footer-legal {
  margin: 0 auto;
}

.footer-social {
  align-items: center;
  display: flex;
  flex-direction: column;
}
.footer-social .social-icons {
  justify-content: start;
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
  max-width: 100%;
}
.footer-social .icon-circle {
  display: block;
  color: #075682;
  width: 2rem;
  height: 2rem;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
}
.footer-social .icon-circle:hover {
  opacity: 0.7;
  transform: translateX(5px);
}

.text-center {
  text-align: center;
}

.eyebrow-text {
  font-family: "Lato", sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

/*# sourceMappingURL=main.css.map */
