.gt-footer {
    position: relative;
}

.gt-footer__container {
    padding: 25px;
    position: relative;
    z-index: 1;
    background: var(--gt-color-white);
    border: 1px solid var(--gt-color-primary);
    border-radius: 16px;
}

.gt-footer__blue{
  background: var(--gt-color-secondary);
  height: 200px;
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 0;
}

.gt-footer__title {
  font-family: var(--gt-font-title);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: var(--gt-color-primary);
}

.gt-footer__subtitle {
  font-family: var(--gt-font-title);
  font-size: 1.1rem;
  margin: 0.5rem 0;
  color: var(--gt-color-primary);
}


.gt-footer__address {
    line-height: 1.3;
}

.gt-footer__hours{
    display: flex;
    justify-content: space-between;
    padding-block: 20px;
}


.gt-footer__info {
    border-bottom: 1px solid #6C6D6D4D;
    margin-bottom: 20px;
}

.gt-footer__list {
    list-style: none;
    line-height: 1.5;
    
}

.gt-footer__list a, .gt-footer__info a{
    text-decoration: none;
    cursor: pointer;
    color: var(--gt-color-black);
}

.gt-footer__social {
    padding-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.gt-footer__social-icon {
  cursor: pointer;
  color: var(--gt-color-primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  padding-left: calc(var(--gt-icon-size) + 8px);
}

/* Iconos base */
.gt-footer__social-icon::before {
  content: "";
  display: inline-block;
  width: var(--gt-icon-size);
  height: var(--gt-icon-size);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* Iconos específicos */
.icon-twitter::before {
  background-image: url("../images/icon-social-twitter.svg");
}

.icon-facebook::before {
  background-image: url("../images/icon-social-facebook.svg");
}

.icon-instagram::before {
  background-image: url("../images/icon-social-instagram.svg");
}

.icon-linkedin::before {
  background-image: url("../images/icon-social-linkedin.svg");
}

.icon-youtube::before {
  background-image: url("../images/icon-social-youtube.svg");
}

/* Hover */
.gt-footer__social-icon:hover {
  color: var(--gt-color-secondary);
}

.gt-footer__social-icon:hover::before {
    filter: brightness(0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .gt-footer__social {
        gap: 15px;
    }
    .gt-footer__hours {
        flex-direction: column;
    }
    .gt-footer__blue{
        display: none;
    }
}