/* Footer tipo Ritzé (100% administrable) */

.site-footer{
  background: #F2A900; /* naranja Ritzé */
  color: #ffffff;
  padding: 70px 0 0;
}

.site-footer .footer-inner{
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 1.2fr;
  gap: 48px;
  align-items: start;
}

/* TITULOS */
.footer-title{
  font-weight: 800;
  letter-spacing: .04em;
  font-size: 14px;
  margin: 8px 0 18px;
  color: #0b1f2a; /* como el Ritzé (título oscuro sobre fondo naranja) */
}

/* LOGO */
.footer-brand .footer-logo{
  width: 160px;
  height: auto;
  display: block;
  margin-bottom: 22px;
}

.footer-logo-fallback{
  width: 110px;
  height: 110px;
  border-radius: 18px;
  background: rgba(0,0,0,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size: 48px;
  margin-bottom: 22px;
  color: #0b1f2a;
}

/* DESCRIPCION */
.footer-desc{
  max-width: 320px;
  line-height: 1.9;
  color: rgba(255,255,255,.88);
  margin: 0;
}

/* MENU */
.footer-menu{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li{
  margin: 10px 0;
}

.footer-menu a{
  color: rgba(255,255,255,.92);
  text-decoration: none;
  transition: .2s ease;
}

.footer-menu a:hover{
  color: #ffffff;
  text-decoration: underline;
}

/* DIRECCION */
.footer-address{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-bottom:18px;
}

.footer-address:hover .footer-icon{
    background:#fff;
    color:#e0a100; /* tu amarillo */
    border-color:#fff;
}

/* círculo */
.footer-icon{
    width:46px;
    height:46px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    
    background: rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.25);
    
    flex-shrink:0;

    transition:.25s;
}

/* icono */
.footer-icon i{
    font-size:20px;
}

/* texto */
.footer-address-label{
    font-weight:700;
    color:#fff;
    margin-bottom:2px;
}

.footer-address-text{
    color:rgba(255,255,255,.85);
    line-height:1.4;
}

/* MAPA */
.footer-map{
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.28);
  max-width: 520px;
}

.footer-map iframe{
  width: 100%;
  height: 230px;
  border: 0;
  display:block;
}

/* BARRA INFERIOR (iconos + tlf + copy) */
.footer-bottom{
  margin-top: 46px;
  padding: 22px 0 18px;
  background: rgba(0,0,0,.08);
}

.footer-bottom-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
}

.footer-social{
  display:flex;
  gap: 12px;
  align-items:center;
}

.footer-social-btn{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  color: #ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  transition:.2s ease;
}

.footer-social-btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.28);
}

.footer-phone{
  font-weight: 900;
  font-size: 28px;
  color: #ffffff;
  text-shadow: 0 1px 0 rgba(0,0,0,.15);
}

.footer-phone-label{
  margin-right: 8px;
  font-weight: 800;
}

.footer-copy{
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.80);
}

.footer-sep{
  margin: 0 8px;
}

/* BARRA FINAL OSCURA (Implementado por...) */
.footer-credit{
  background: #0b1f2a;
  padding: 16px 0;
}

.footer-credit-inner{
  display: flex;
  gap: 6px;
  align-items: center;
  color: rgba(255,255,255,.85);
  font-size: 13px;
}

.footer-credit-inner a{
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.footer-credit-inner a:hover{
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 980px){
  .site-footer .footer-inner{
    grid-template-columns: 1fr;
  }

  .footer-phone{
    font-size: 22px;
  }

  .footer-bottom-inner{
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================
   RESPONSIVE PRO (Ritzé-like)
   ============================ */

/* Tablet */
@media (max-width: 980px){
  .site-footer{ padding: 52px 0 0; }

  .site-footer .footer-inner{
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand .footer-logo{ width: 140px; }
  .footer-desc{ max-width: 100%; }

  .footer-map iframe{ height: 220px; }

  .footer-bottom-inner{
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer-phone{ font-size: 22px; }
}

/* Mobile */
@media (max-width: 560px){
  .site-footer{ padding: 44px 0 0; }

  .footer-title{ margin: 0 0 14px; }

  .footer-brand .footer-logo{ width: 120px; margin-bottom: 16px; }

  .footer-icon{ width: 42px; height: 42px; }
  .footer-icon i{ font-size: 18px; }

  .footer-map{
    max-width: 100%;
    border-radius: 14px;
  }
  .footer-map iframe{ height: 200px; }

  .footer-social-btn{ width: 42px; height: 42px; }

  .footer-phone{
    font-size: 20px;
    letter-spacing: .02em;
  }

  .footer-copy{
    font-size: 12px;
    line-height: 1.6;
  }

  .footer-credit-inner{
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* ============================
   RESPONSIVE PRO (Ritzé-like)
   ============================ */

/* Tablet */
@media (max-width: 980px){
  .site-footer{ padding: 52px 0 0; }

  .site-footer .footer-inner{
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand .footer-logo{ width: 140px; }
  .footer-desc{ max-width: 100%; }

  .footer-map iframe{ height: 220px; }

  .footer-bottom-inner{
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer-phone{ font-size: 22px; }
}

/* Mobile */
@media (max-width: 560px){
  .site-footer{ padding: 44px 0 0; }

  .footer-title{ margin: 0 0 14px; }

  .footer-brand .footer-logo{ width: 120px; margin-bottom: 16px; }

  .footer-icon{ width: 42px; height: 42px; }
  .footer-icon i{ font-size: 18px; }

  .footer-map{
    max-width: 100%;
    border-radius: 14px;
  }
  .footer-map iframe{ height: 200px; }

  .footer-social-btn{ width: 42px; height: 42px; }

  .footer-phone{
    font-size: 20px;
    letter-spacing: .02em;
  }

  .footer-copy{
    font-size: 12px;
    line-height: 1.6;
  }

  .footer-credit-inner{
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
