
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #f6f2ea;
}

/* HEADER */
.main-header {
  background-color: #f6f2ea;
  border-bottom: 1px solid #ccc;
  padding: 10px 20px;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo img {
  max-height: 120px;
}

.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 1.1em;
  padding-bottom: 4px; /* espacio para la línea */
}

/* Línea debajo del texto (inicialmente oculta) */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #5b0d13; /* color café */
  transition: width 0.3s ease;
}

/* Mostrar línea al hacer hover */
.nav-links a:hover::after {
  width: 100%;
}
.big-phone {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; /* más confiable que 'bold' */
  font-size: 1.5rem;
  display: inline-block;
  margin-top: 5px;
}
.phonetext {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700; /* más confiable que 'bold' */
  display: inline-block;
}


.subscribe-btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #5b0d13;
  color: #fff !important; /* fuerza el color blanco */
  font-weight: bold;
  border: none;
  position: relative;
  height: 60px;
  font-size: 1em;
  padding: 0 2em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: 800ms ease all;
  outline: none;
}

.subscribe-btn:hover {
  background: #f6f2ea;
  color: #5b0d13!important;
}

.subscribe-btn:before,
.subscribe-btn:after {
  content: '';
  position: absolute;
  height: 2px;
  width: 0;
  background: #5b0d13;
  transition: 400ms ease all;
}

.subscribe-btn:before {
  top: 0;
  right: 0;
}

.subscribe-btn:after {
  bottom: 0;
  left: 0;
}

.subscribe-btn:hover:before,
.subscribe-btn:hover:after {
  width: 100%;
  transition: 800ms ease all;
}


.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
}
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: #f6f2ea;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    display: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 100%;
    z-index: 999;
  }

  .nav-links.active {
    display: flex !important; /* Este !important ayuda a forzar la visibilidad */
  }

  .menu-toggle {
    display: block;
  }
}


/* FOOTER */
.site-footer {
  background-color: #111;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: 'Montserrat', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.logo-section img {
  max-height: 200px;
  margin-bottom: 20px;
}

.logo-section p,
.contact-section p {
  margin: 8px 0;
  font-size: 17px;
}

.social-section {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.social-section img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  font-size: 13px;
  border-top: 1px solid #333;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
