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

.footer-main {
  width: 100%;
  overflow: hidden;
  background: #000000; /*  negro total */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.4rem 0 1.2rem;
  box-shadow:
    inset 0 40px 90px rgba(198, 255, 26, 0.035),
    0 -10px 35px rgba(0, 0, 0, 0.55);
}

.footer-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 40px;
}

/* BLOQUES */
.footer-brand,
.footer-info,
.footer-contact-block {
  min-width: 0;
}

/* MARCA */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-start;
}

.footer-logo {
  width: 60px;
  height: 60px;
  object-fit: cover;

  border-radius: 50%; /* círculo */

  border: 1px solid rgba(255, 255, 255, 0.1); /* borde sutil */

  box-shadow: none;
  flex-shrink: 0;
}
.footer-brand-text {
  text-align: left;
}

.footer-brand-text h4 {
  margin: 0 0 0.3rem;
  color: #ffffff;
  font-size: 1.85rem;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.25),
    0 0 14px rgba(198, 255, 26, 0.12);
}

.footer-brand-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

/* UBICACIÓN */
.footer-info {
  text-align: center;
}

.footer-info h5,
.footer-contact-block h5 {
  margin: 0 0 0.55rem;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-shadow:
    0 0 6px rgba(255, 255, 255, 0.25),
    0 0 12px rgba(198, 255, 26, 0.10);
}

.footer-info p {
  margin: 0 0 0.8rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  line-height: 1.6;
}

.footer-location {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  color: #1e90ff;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.footer-location i {
  color: #1e90ff;
}

.footer-location:hover {
  color: #63b3ff;
  text-decoration: underline;
  transform: translateY(-1px);
}

/* CONTACTO */
.footer-contact-block {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.02rem;
  font-weight: 800;
  transition: all 0.25s ease;
}

.footer-phone i {
  color: #1e90ff;
}

.footer-phone:hover {
  color: #1e90ff;
}

/* REDES */
.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.9rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  text-decoration: none;

  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);

  box-shadow:
    inset 0 0 10px rgba(255, 255, 255, 0.03),
    0 8px 20px rgba(0, 0, 0, 0.35);

  transition: all 0.25s ease;
}

.footer-social a i {
  font-size: 22px;
  transition: all 0.25s ease;
}

.footer-social a:nth-child(1) i {
  color: #d96aa7;
}

.footer-social a:nth-child(2) i {
  color: #6ea8ff;
}

.footer-social a:nth-child(3) i {
  color: #4fd17b;
}

.footer-social a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
}

.footer-social a:hover i {
  transform: scale(1.08);
}

/* PARTE INFERIOR */
.footer-bottom {
  margin-top: 1.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom p {
  margin: 0 0 0.8rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
}

/* ENLACES LEGALES */
.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  transition: all 0.25s ease;
}

.footer-links a:hover {
  color: #1e90ff;
  text-decoration: underline;
}
.footer-bottom p{
  font-size:1.08rem;
  font-weight:600;
  color:#ffffff;
}

.footer-links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:28px;

  flex-wrap:wrap;

  margin-top:14px;
}

.footer-links a{

  font-size:1.08rem;
  font-weight:700;

  color:#ffffff;

  text-decoration:none;

  transition:.25s ease;
}

.footer-links a:hover{

  color:#b8ff2c;

  text-shadow:
  0 0 10px rgba(184,255,44,.35);
}
.footer-info{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.footer-info p{
  font-size:1.02rem;
  line-height:1.7;
  color:#ffffff;
  font-weight:500;
}
.footer-contact-block{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.footer-contact-block h5{
  width:100%;
  text-align:center;
  margin-left:0;
  margin-right:0;
}

.footer-phone{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  margin-left:0;
  margin-right:0;
}

.footer-social{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  margin-left:0;
  margin-right:0;
}
.footer-contact-block{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  text-align:center;

  padding-left:280px;
}
.footer-bottom{
  position:relative;
}

/* =========================================================FOOTER AUTOR========================================================= */

.footer-author{
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);

  display:flex;
  align-items:center;
  gap:14px;
}

.footer-author-line{
  width:32px;
  height:1px;
  background:linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,.45)
  );
}

.footer-author-content{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:4px;
}

.footer-author-mini{
  font-size:.58rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:rgba(255,255,255,.38);
  font-weight:700;
}

.footer-author-name{
  font-size:.92rem;
  font-weight:700;
  color:rgba(255,255,255,.78);
  line-height:1;
}

.footer-author-phone{
  position:relative;

  display:inline-flex;
  justify-content:center;
  align-items:center;

  width:max-content;

  overflow:hidden;

  font-size:.82rem;

  color:rgba(255,255,255,.58);

  text-decoration:none;

  font-weight:600;

  transition:.25s ease;

  padding-bottom:6px;
}


@media(max-width:900px){
  .footer-author{
    position:static;
    transform:none;
    justify-content:center;
    margin-top:18px;
  }
}
/* =========================================================
 RESPONSIVE
========================================================= */

@media(max-width:900px){

  .footer-author{

      position:static;

      transform:none;

      justify-content:center;

      margin-top:18px;
  }

}

/* =========================================================RESPONSIVE FOOTER BODYLIFE ========================================================= */


/* ================= PANTALLAS GRANDES ================= */
@media (min-width: 1500px) {

  .footer-container {
    max-width: 1400px;
  }

  .footer-logo {
    width: 66px;
    height: 66px;
  }

  .footer-brand-text h4 {
    font-size: 2rem;
  }
}


/* ================= PORTÁTILES ================= */
@media (max-width: 1200px) {

  .footer-container {
    padding: 0 30px;
  }

  .footer-top {
    gap: 28px;
  }

  .footer-brand-text h4 {
    font-size: 1.55rem;
  }

  .footer-brand-text p {
    font-size: .92rem;
  }

  .footer-info h5,
  .footer-contact-block h5 {
    font-size: 1.18rem;
  }

  .footer-info p {
    font-size: .9rem;
  }

  .footer-social a {
    width: 48px;
    height: 48px;
  }

  .footer-social a i {
    font-size: 20px;
  }
}


/* ================= TABLETS ================= */
@media (max-width: 992px) {

  .footer-main {
    padding: 2.2rem 0 1.2rem;
  }

  .footer-container {
    padding: 0 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

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

  .footer-brand-text {
    text-align: left;
  }

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

  .footer-contact-block {
    text-align: center;
    align-items: center;
  }

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

  .footer-bottom {
    margin-top: 1.5rem;
  }
}


/* ================= MÓVILES ================= */
@media (max-width: 768px) {

  .footer-main {
    padding: 2rem 0 1rem;
  }

  .footer-container {
    padding: 0 18px;
  }

  .footer-top {
    gap: 28px;
  }

  .footer-brand {
    flex-direction: column;
    text-align: center;
    gap: .75rem;
  }

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

  .footer-logo {
    width: 56px;
    height: 56px;
  }

  .footer-brand-text h4 {
    font-size: 1.5rem;
  }

  .footer-brand-text p {
    font-size: .9rem;
  }

  .footer-info h5,
  .footer-contact-block h5 {
    font-size: 1.15rem;
  }

  .footer-info p {
    font-size: .88rem;
    line-height: 1.55;
  }

  .footer-location,
  .footer-phone {
    font-size: .9rem;
  }

  .footer-social {
    gap: .75rem;
  }

  .footer-social a {
    width: 46px;
    height: 46px;
  }

  .footer-social a i {
    font-size: 19px;
  }

  .footer-bottom p {
    font-size: .85rem;
  }

  .footer-links {
    gap: .8rem;
  }

  .footer-links a {
    font-size: .82rem;
  }
}


/* ================= MÓVILES PEQUEÑOS ================= */
@media (max-width: 480px) {

  .footer-container {
    padding: 0 14px;
  }

  .footer-logo {
    width: 52px;
    height: 52px;
  }

  .footer-brand-text h4 {
    font-size: 1.35rem;
  }

  .footer-brand-text p {
    font-size: .82rem;
  }

  .footer-info h5,
  .footer-contact-block h5 {
    font-size: 1.05rem;
  }

  .footer-info p {
    font-size: .82rem;
  }

  .footer-location,
  .footer-phone {
    font-size: .84rem;
    flex-wrap: wrap;
    text-align: center;
  }

  .footer-social a {
    width: 42px;
    height: 42px;
  }

  .footer-social a i {
    font-size: 18px;
  }

  .footer-bottom {
    margin-top: 1.3rem;
  }

  .footer-bottom p {
    font-size: .78rem;
  }

  .footer-links {
    flex-direction: column;
    gap: .5rem;
  }

  .footer-links a {
    font-size: .8rem;
  }
}


/* ================= MÓVILES MUY PEQUEÑOS ================= */
@media (max-width: 360px) {

  .footer-brand-text h4 {
    font-size: 1.2rem;
  }

  .footer-brand-text p {
    font-size: .78rem;
  }

  .footer-info p {
    font-size: .78rem;
  }

  .footer-social {
    gap: .55rem;
  }

  .footer-social a {
    width: 39px;
    height: 39px;
  }
}
@media(max-width:768px){

  .footer-contact-block{
    width:100%;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding-left:0;
  }

  .footer-phone{
    width:100%;
    justify-content:center;
    text-align:center;
  }

  .footer-phone a{
    white-space:nowrap;
    font-size:1.05rem;
  }

  .footer-social{
    width:100%;
    justify-content:center;
  }

}