*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  color: #222;
  background-color: #fefefe;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #2a2e3b;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

header {
  background-color: #2a2e3b;
  border-bottom: none;
  padding: 1rem 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  height: 100px;
  vertical-align: middle;
  margin-right: 10px;
}

.nuevo-logo {
  max-height: 80px;
  width: auto;
  display: block;
}

header nav a {
  margin-left: 1rem;
  text-decoration: none;
  color: #fddde6;
  font-weight: 600;
}

header nav a:hover {
  color: #ffffff;
}

.hero {
  background: url('principal.webp') no-repeat center center/cover;
  color: #fff;
  height: 100vh;
  position: relative;
}

.hero .overlay {
  background-color: rgba(0,0,0,0.5);
  height: 100%;
  display: flex;
  align-items: center;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
}

.cta-btn {
  background-color: #d96e87;
  color: #fff;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  margin-top: 1.5rem;
}

.hero-title {
  color: #fddde6;
}

.servicios .cards {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.card {
  background-color: #f9f4fa;
  border-left: 5px solid #ce5d87;
  flex: 1 1 30%;
  padding: 1rem;
  border-radius: 5px;
}

.card h3 {
  margin-top: 0;
  color: #52366f;
}

.quienes-somos,
.metodologia,
.confidencialidad {
  background-color: #f7f7f7;
  padding: 3rem 2rem;
  color: #333;
}

.metodologia ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}

.testimonios .frases blockquote {
  font-style: italic;
  border-left: 4px solid #d9a3b1;
  margin: 1rem 0;
  padding-left: 1rem;
  color: #444;
}

.contacto {
  background-color: #fff1f5;
  text-align: center;
  padding: 3rem 2rem;
}

.whatsapp-btn {
  background-color: #25d366;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  display: inline-block;
  margin-top: 1rem;
}

footer {
  background-color: #2a2e3b;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #fddde6;
}

.social-links {
  margin-bottom: 1rem;
}

.social-links a {
  margin: 0 0.5rem;
  text-decoration: none;
  color: #fddde6;
  font-size: 1.5rem;
}

.imagen-equipo {
  text-align: center;
  margin-top: 2rem;
}

.imagen-equipo img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .logo {
    margin: 0 auto 10px auto;
    display: block;
  }

  nav a {
    display: inline-block;
    margin: 0.5rem;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .servicios .cards {
    flex-direction: column;
  }
}
.social-links {
  margin-bottom: 1rem;
  text-align: center;
}

.social-links a {
  margin: 0 0.5rem;
  text-decoration: none;
  color: #fddde6; /* Podés ajustar el color al que combine con tu footer */
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #ffffff;
}

.social-links-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.social-links-header a img {
  transition: transform 0.3s ease;
}

.social-links-header a:hover img {
  transform: scale(1.2);
}

.testimonios blockquote footer {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  color: #666;
  font-size: 0.9rem;
}

.social-links.destacados {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.social-links.destacados a {
  text-decoration: none;
  color: #fddde6;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.social-links.destacados a:hover {
  transform: scale(1.1);
}

.social-links.destacados img {
  height: 32px;
  margin-bottom: 0.3rem;
}