.hero-contacto {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 108px);
  padding: 40px 2%;
  background-color: #ffffff;
}
.hero-contacto .contacto-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  padding: 100px 20px;
  text-align: center;
  background-color: var(--gris-claro);
  border-radius: 150px;
}
.hero-contacto .contacto-banner h1 {
  margin-bottom: 30px;
  color: #1a1a1a;
  font-size: clamp(1.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -1px;
}
.hero-contacto .btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  padding: 12px 40px;
  color: #000;
  font-size: 1.2rem;
  font-weight: 400;
  text-decoration: none;
  background-color: #90ea75;
  border-radius: 50px;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}
.hero-contacto .btn-whatsapp:hover {
  background-color: #7ce05e;
  transform: scale(1.05);
}
.hero-contacto .btn-whatsapp svg {
  width: 30px;
  height: 30px;
  color: #ffffff;
}
.hero-contacto .slogan-contacto {
  margin: 0;
  color: #000;
  font-size: clamp(1.5rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: 1px;
}
.hero-contacto .highlight-green {
  color: #90ea75;
}
.hero-contacto .highlight-yellow {
  color: #f5b041;
}
.hero-contacto .highlight-blue {
  color: #5c7cfa;
}
@media (max-width: 992px) {
  .hero-contacto .contacto-banner {
    padding: 80px 20px;
    border-radius: 60px;
  }
}
@media (max-width: 576px) {
  .hero-contacto {
    min-height: auto;
    padding: 20px;
  }
  .hero-contacto .contacto-banner {
    padding: 60px 15px;
    border-radius: 40px;
  }
}
.seccion-ayuda {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 5%;
}
.seccion-ayuda .ayuda-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}
.seccion-ayuda .ayuda-grid .ayuda-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  background-color: #f8f9fa;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.seccion-ayuda .ayuda-grid .ayuda-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}
.seccion-ayuda .ayuda-grid .ayuda-card .ayuda-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: var(--gris-claro);
  aspect-ratio: 4 / 3;
}
.seccion-ayuda .ayuda-grid .ayuda-card .ayuda-texto {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  padding: 25px 20px;
  text-align: center;
}
.seccion-ayuda .ayuda-grid .ayuda-card .ayuda-texto h3 {
  margin: 0;
  color: #1a1a1a;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.4;
}
@media (max-width: 992px) {
  .seccion-ayuda .ayuda-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .seccion-ayuda .ayuda-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 450px;
    margin: 0 auto;
  }
}
.seccion-faq {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 5%;
}
.seccion-faq .faq-header h2 {
  margin-bottom: 30px;
  color: #000;
  font-size: clamp(2rem, 3vw, 2.5rem);
}
.seccion-faq .faq-container {
  display: flex;
  align-items: stretch;
  gap: 20px;
}
.seccion-faq .faq-container .faq-sidebar {
  width: 30%;
  padding: 40px 0;
  background-color: var(--gris-claro);
  border-radius: 20px;
}
.seccion-faq .faq-container .faq-sidebar .faq-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.seccion-faq .faq-container .faq-sidebar .faq-menu .faq-categoria {
  margin-bottom: 10px;
  padding: 20px 40px;
  color: #1a1a1a;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}
.seccion-faq .faq-container .faq-sidebar .faq-menu .faq-categoria.active {
  width: 90%;
  color: var(--primario);
  background-color: var(--primario-desvanecido);
  border-radius: 0 40px 40px 0;
}
.seccion-faq .faq-container .faq-contenido {
  position: relative;
  width: 70%;
  padding: 40px 50px;
  background-color: var(--gris-claro);
  border-radius: 20px;
}
.seccion-faq .faq-container .faq-contenido .faq-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}
.seccion-faq .faq-container .faq-contenido .faq-panel.active {
  display: block;
}
.seccion-faq .faq-container .faq-contenido .mensaje-default {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 300px;
  text-align: center;
}
.seccion-faq .faq-container .faq-contenido .mensaje-default h3 {
  margin-bottom: 15px;
  color: #1a1a1a;
  font-size: 2.5rem;
  transition: opacity 0.5s ease;
}
.seccion-faq .faq-container .faq-contenido .mensaje-default p {
  color: #333;
  font-size: 1.1rem;
}
.seccion-faq .faq-container .faq-contenido .acordeon-item {
  border-bottom: 2px solid #1a1a1a;
}
.seccion-faq .faq-container .faq-contenido .acordeon-item .acordeon-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 25px 0;
  color: #000;
  font-size: 1.2rem;
  font-family: inherit;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}
.seccion-faq
  .faq-container
  .faq-contenido
  .acordeon-item
  .acordeon-header
  .icono-flecha {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}
.seccion-faq .faq-container .faq-contenido .acordeon-item .acordeon-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.seccion-faq
  .faq-container
  .faq-contenido
  .acordeon-item
  .acordeon-body
  .acordeon-contenido {
  padding-bottom: 25px;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}
.seccion-faq .faq-container .faq-contenido .acordeon-item.active .icono-flecha {
  transform: rotate(180deg);
}
.seccion-faq
  .faq-container
  .faq-contenido
  .acordeon-item.active
  .acordeon-body {
  max-height: 300px;
}
@media (max-width: 992px) {
  .seccion-faq .faq-container {
    flex-direction: column;
  }
  .seccion-faq .faq-container .faq-sidebar,
  .seccion-faq .faq-container .faq-contenido {
    width: 100%;
  }
  .seccion-faq .faq-container .faq-sidebar .faq-menu .faq-categoria.active {
    width: 100%;
    border-left: 5px solid #a7da8f;
    border-radius: 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 992px) {
  .faq-container {
    flex-direction: column;
  }
  .faq-sidebar,
  .faq-contenido {
    width: 100%;
  }
  .faq-categoria.active {
    width: 100%;
    border-radius: 0;
    border-left: 5px solid #a7da8f;
  }
}
