:root {
  --primary: #38a1a5;
  --dark: #2b8869;
  --light: #f9fdfc;
  --accent: #ffbfa0;
  --primary-color: #1f492d;
  --secondary-color: #a1887f;
  --accent-color: #054453;
  --text-color: #311c18;
  --bg-light: #f5f5f5;
  --bg-dark: #4ba8ac;
  --contact-color: #4ebd73;
}
.carousel-inner{
  margin-top: 10px; 
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

header {
  background: var(--bg-dark); /* Color de fondo del header */
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000; /* Asegura que esté por encima de todo */
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  color: #fff; /* Color de texto predeterminado para el header */
}
footer {
  text-align: center;
  margin-top: 50px;
  padding: 30px 20px; /* Add more vertical padding */
  border-top: 1px solid var(--secondary-color); /* Solid border */
  background-color: var(--bg-dark); /* Dark background for the footer */
  color: #ffffff; /* White text for the footer */
  font-size: 0.9em;
  border-radius: 10px; /* Add border-radius if not already there */
}
header h1 {
  color: #fff;
  font-size: 1.5rem;
  margin: 0; /* Bootstrap might add margin */
}

nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.3s;
}

nav a:hover {
  opacity: 0.8;
}

section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: auto;
}

#inicio {
  display: grid;
  gap: 1rem;
  text-align: center;
}

#inicio h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

#masajes article {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 2px;
  margin-bottom: 2px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#masajes h3 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}

#informacion ul {
  list-style: disc;
  margin-left: 1.5rem;
  display: grid;
  gap: 0.5rem;
}

form {
  display: grid;
  gap: 1rem;
}

label {
  font-weight: bold;
}

input,
textarea {
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

button {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.7rem;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  background: var(--dark);
}

.social-media {
  margin-top: 30px;
}

.social-media h3 {
  color: var(--accent-color);
  font-size: 1.5em;
  margin-bottom: 20px;
}
.contact-section {
  padding: 40px 20px;
  text-align: center;
  background-color: var(--bg-dark);
  color: #ffffff;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.contact-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5em;
  color: var(--accent-color);
  margin-bottom: 25px;
}

.social-icons a {
  display: inline-block;
  margin: 0 15px;
  font-size: 2.5em; /* Tamaño de los iconos de redes sociales */
  color: #ffffff;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a img {
  width: 45px; /* Tamaño de las imágenes de iconos */
  height: 45px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.social-icons a:hover img {
  transform: scale(1.1);
}
@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
    background: var(--primary);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;
  }

  nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }
}

@media (min-width: 601px) {
  .menu-toggle {
    display: none;
  }
}

footer {
  text-align: center;
  margin-top: 50px;
  padding: 30px 20px;
  border-top: 1px solid var(--secondary-color);
  background-color: var(--bg-dark);
  color: #ffffff;
  font-size: 0.9em;
  border-radius: 10px;
}

footer .footer-links {
  margin-bottom: 15px;
}

footer .footer-links a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 15px;
  transition: color 0.3s ease;
}

footer .footer-links a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

footer p {
  margin: 5px 0;
  color: var(--secondary-color);
}

footer .copyright-year p {
  color: #ffffff;
}

.copyright-year {
  color: #fff;
}
