/*Estilos del Header*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}
html {
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
  color: inherit;
}
.header-container,
.container {
  margin: 0 auto;
}
.header-container {
  max-width: 1320px;
  padding: 0 10px;
}
.container {
  max-width: 1260px;
  padding: 0 20px;
}
.header-top .header-container,
.header-bottom .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.social-media {
  gap: 0.3rem;
  color: #000;
  background: orange;
  font-size: 0.8rem;
  border-radius: 30px;
  padding: 8px 10px;
}
.social-media div {
  display: flex;
  gap: 0.8rem;
}
.header-top {
  padding: 5px 0;
  background-color: #2f2f2f;
  color: #fff;
}
.header-bottom {
  background-color: #e6e6e6;
  padding: 10px 0;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.15);
}

.contact-info i,
.social-media a {
  font-size: 1.3rem;
}
.social-media span {
  font-weight: 700;
  color: #2f2f2f;
}
.logo {
  width: 130px;
  display: block;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 600;
  transition: 0.3s;
}
.nav-links a:hover {
  color: orange;
}
/* Centrado horizontal */
.h-center {
  display: flex;
  align-items: center;
}
/*Peso de fuente liviano*/
.fw-600 {
  font-weight: 600;
}
.contact-info {
  gap: 1.8rem;
}
.contact-info p {
  font-size: 14px;
}
.contact-info span {
  font-size: 15px;
  color: orange;
}
.contact-info > a {
  gap: 0.5rem;
}
.location {
  gap: 0.5rem;
  color: #333;
}
.location i {
  font-size: 1.3rem;
}
.location div {
  line-height: 1.1;
}
.address {
  font-size: 13px;
}
/*Estilos del Footer*/
footer {
  margin-top: 5rem;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7)),
    url(../images/portada-4.jpg);
  background-size: cover;
  background-position: center;
}

footer .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding: 40px 20px;
}

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-socials-inner {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  color: #fff;
}
.footer-socials-inner nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-socials-inner nav a {
  transition: 0.3s;
}
.footer-socials-inner nav a:hover {
  background: #333;
  color: #fff;
}
.footer-socials-inner p {
  font-size: 0.9rem;
  font-weight: 600;
}
.footer-socials-inner nav a {
  color: #333;
  background: #e6e6e6;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-bottom {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  font-size: 13px;
  color: #fff;
  display: inline-block;
  width: fit-content;
}
.footer-links a:hover {
  text-decoration: underline;
}
.metodo-pago {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.metodo-pago .phone-icon {
  color: #333;
}
.footer-socials a {
  display: inline-block;
  width: fit-content;
}

.footer-phone {
  color: #fff;
  display: inline-block;
  width: fit-content;
}
.footer-phone:hover {
  text-decoration: underline;
}
footer h4 {
  color: rgb(233, 233, 233);
}
