/* Global Styles */
:root {
  --dark-bg: #0e0114;
  --purple-text: #a74bfb;
  --light-text: #b0b0b0;
  --white-text: #ffffff;
  --accent-purple-dark: #4b0082;
  --accent-purple-medium: #6a0dad;
  --button-gradient: linear-gradient(90deg, #9c27b0, #673ab7);
  --faq-form-bg: #000000;
  --input-border: #673ab7;
}

body {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--dark-bg);
  color: var(--white-text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--white-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--purple-text);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  line-height: 1.2;
  font-family: "Outfit", sans-serif;
}

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-heading.text-left h2 {
  text-align: left;
}

.section-heading h2 span {
  color: var(--purple-text);
}

.button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  background: var(--button-gradient);
  color: var(--white-text);
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 5px 15px rgba(156, 39, 176, 0.4);
}

.button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(156, 39, 176, 0.6);
}

/* Header */
.header {
  position: fixed;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 15px 0;
  z-index: 1000;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white-text);
  font-family: "Outfit", sans-serif;
}

.logo .brand-text span:first-child {
  font-size: 1.5rem;
  font-weight: 700;
}

.logo .brand-text span:last-child {
  font-size: 0.7rem;
  letter-spacing: 2px;
  opacity: 0.8;
  display: block;
}

.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu a {
  font-weight: 500;
  font-size: 1.05rem;
}

.header-actions {
  display: flex;
  align-items: center;
}

.lang-dropdown {
  position: relative;
  margin-right: 20px;
}

.lang-dropdown-toggle {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--white-text);
  transition: background-color 0.3s ease;
}

.lang-dropdown-toggle:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.lang-dropdown-toggle i {
  margin-right: 8px;
}

.lang-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  min-width: 120px;
  padding: 5px 0;
  list-style: none;
  margin-top: 5px;
  display: none;
  z-index: 1001;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  overflow: hidden;
}

.lang-dropdown-menu.active {
  display: block;
}

.lang-dropdown-menu li a {
  display: block;
  padding: 8px 15px;
  color: var(--white-text);
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.lang-dropdown-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white-text);
}

/* Side Buttons */
.side-buttons {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.icon-button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  color: var(--white-text);
  transition: background 0.3s ease, transform 0.3s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.icon-button:hover {
  background: var(--button-gradient);
  transform: scale(1.1);
}

/* Dividers with images */
.image-divider img {
  width: 100%;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 100px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white-text);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  background-image: url('img/jumbotron_optimized.webp');
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content {
  z-index: 1;
  max-width: 700px;
  margin-top: 100px;
  /* Account for fixed header */
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.1;
}

.hero-content h1 span {
  color: var(--purple-text);
}

.hero-content p {
  font-size: 1.3rem;
  font-weight: 300;
  margin-top: 20px;
  opacity: 0.9;
}

/* Somos Section */
.somos-section {
  background-color: var(--dark-bg);
  padding: 100px 0;
  text-align: center;
}

.somos-section .section-heading {
  margin-bottom: 80px;
}

.somos-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  text-align: left;
}

.somos-left img {
  max-width: 400px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(167, 75, 251, 0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.somos-left img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 70px rgba(167, 75, 251, 0.7);
}

.somos-right {
  max-width: 500px;
}

.somos-right h3 {
  font-size: 2.5rem;
  color: var(--purple-text);
  margin-bottom: 25px;
}

.somos-right p {
  font-size: 1.1rem;
  color: var(--light-text);
  margin-bottom: 20px;
}

.somos-right .underline-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--purple-text);
  margin-top: 30px;
  position: relative;
  padding-bottom: 5px;
  display: inline-block;
}

.somos-right .underline-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--purple-text);
  transform: scaleX(0);
  transform-origin: bottom left;
  transition: transform 0.3s ease-out;
}

.somos-right .underline-text:hover::after {
  transform: scaleX(1);
}

/* Declaración Responsabilidad Section */
.declaracion-section {
  background-color: var(--dark-bg);
  padding: 100px 0;
}

.declaracion-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.declaracion-left {
  max-width: 550px;
}

.declaracion-left h3 {
  font-size: 2.5rem;
  color: var(--purple-text);
  margin-bottom: 25px;
}

.declaracion-left p {
  font-size: 1.1rem;
  color: var(--light-text);
  margin-bottom: 20px;
}

.declaracion-left .underline-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--purple-text);
  margin-top: 30px;
  position: relative;
  padding-bottom: 5px;
  display: inline-block;
}

.declaracion-left .underline-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--purple-text);
  transform: scaleX(0);
  transform-origin: bottom left;
  transition: transform 0.3s ease-out;
}

.declaracion-left .underline-text:hover::after {
  transform: scaleX(1);
}

.declaracion-right img {
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.declaracion-right img:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Experiencia Section */
.experiencia-section {
  background-color: var(--dark-bg);
  padding: 100px 0;
  text-align: center;
}

.experiencia-section .section-heading {
  margin-bottom: 80px;
}

.experiencia-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 0 50px;
  justify-content: center;
  align-items: center;
}

.experiencia-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.experiencia-item .icon {
  font-size: 3rem;
  color: var(--purple-text);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.experiencia-item:hover .icon {
  transform: translateY(-5px) scale(1.1);
}

.experiencia-item h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white-text);
  margin-bottom: 15px;
}

.experiencia-item h4 span {
  display: block;
}

.experiencia-item p {
  font-size: 1rem;
  color: var(--light-text);
  max-width: 300px;
  margin: 0 auto;
}

/* Beneficios Section */
.beneficios-section {
  background-color: var(--dark-bg);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.beneficios-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 200px;
  background-image: url("./img/purple_waves.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0.6;
}

.beneficios-section .container {
  position: relative;
  z-index: 1;
}

.beneficios-section .section-heading {
  margin-bottom: 80px;
  padding-top: 50px;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.beneficio-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--purple-text);
  border-radius: 50%;
  padding: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 380px;
  width: 380px;
  margin: 0 auto;
  box-sizing: border-box;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.beneficio-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top left,
    rgba(167, 75, 251, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.beneficio-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--accent-purple-medium);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.beneficio-card:hover::before {
  opacity: 1;
}

.beneficio-card .icon {
  font-size: 3.5rem;
  color: var(--purple-text);
  margin-bottom: 20px;
}

.beneficio-card h4 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white-text);
  margin-bottom: 15px;
}

.beneficio-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  text-align: left;
  flex-grow: 1;
  /* Allows button to be at the bottom */
}

.beneficio-card ul li {
  color: var(--light-text);
  font-size: 1rem;
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
}

.beneficio-card ul li::before {
  content: "\2022";
  /* Bullet point */
  color: var(--purple-text);
  position: absolute;
  left: 0;
  top: 0;
}

.beneficio-card .button {
  margin-top: auto;
  /* Pushes button to the bottom */
  width: fit-content;
  padding: 10px 25px;
}

/* Preguntas Section (FAQ) */
.preguntas-section {
  background-color: var(--faq-form-bg);
  padding: 100px 0;
}

.preguntas-section .section-heading {
  text-align: left;
  margin-bottom: 60px;
  padding-left: 20px;
}

.preguntas-section .section-heading h2 {
  font-size: 2.8rem;
  color: var(--white-text);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 20px;
}

.faq-item {
  margin-bottom: 25px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--input-border);
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white-text);
}

.faq-question i {
  color: var(--purple-text);
  transition: transform 0.3s ease;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  color: var(--light-text);
  padding-top: 10px;
  font-size: 0.95rem;
}

.faq-answer p {
  margin-top: 0;
  margin-bottom: 10px;
}

.faq-answer.active {
  max-height: 200px;
  /* Max height to allow transition, adjust as needed */
}

.faq-input-group {
  grid-column: span 3;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: 100%;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

.faq-input-group input[type="text"] {
  width: 100%;
  padding: 12px 15px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--input-border);
  color: var(--white-text);
  font-size: 1rem;
  outline: none;
  margin-bottom: 30px;
  transition: border-color 0.3s ease;
}

.faq-input-group input[type="text"]:focus {
  border-color: var(--purple-text);
}

.faq-input-group input::placeholder {
  color: var(--light-text);
  opacity: 0.7;
}

.faq-input-group .button {
  padding: 12px 40px;
}

/* Sugerencias Section (Contact Form) */
.sugerencias-section {
  background-color: var(--faq-form-bg);
  padding: 100px 0;
}

.sugerencias-content {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  align-items: flex-start;
  padding: 0 20px;
}

.sugerencias-left {
  flex: 1;
  max-width: 50%;
}

.sugerencias-left h2 {
  font-size: 2.8rem;
  color: var(--white-text);
  margin-bottom: 40px;
  font-family: "Outfit", sans-serif;
}

.form-group {
  margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 0;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--input-border);
  color: var(--white-text);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--purple-text);
}

.form-group textarea {
  min-height: 80px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--light-text);
  opacity: 0.7;
}

.sugerencias-left .button {
  padding: 12px 40px;
  margin-top: 20px;
}

.sugerencias-right {
  flex: 1;
  max-width: 50%;
  color: var(--light-text);
  font-size: 1.05rem;
  margin-top: 70px;
  line-height: 1.8;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.sugerencias-right p {
  margin-bottom: 25px;
}

.sugerencias-right strong {
  color: var(--white-text);
  display: block;
  margin-top: 30px;
  font-size: 1.15rem;
}

/* Footer */
.footer {
  background-color: var(--dark-bg);
  padding-top: 100px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
  color: var(--light-text);
  font-size: 0.95rem;
}

.footer::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 200px;
  background-image: url("./img/purple_fluid.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0.8;
}

.footer .container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 50px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  padding-left: 70px;
}

.copyright {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--white-text);
}

.footer-left a {
  color: var(--light-text);
  font-weight: 400;
  margin-top: 5px;
}

.footer-orbs {
  position: absolute;
  left: 0;
  bottom: -5px;
  display: flex;
  align-items: center;
}

.footer-orb-1 {
  width: 35px;
  height: 35px;
  background-color: var(--purple-text);
  border-radius: 50%;
  opacity: 0.7;
  box-shadow: 0 0 20px var(--purple-text);
  animation: pulse 2s infinite ease-in-out;
}

.footer-orb-2 {
  width: 45px;
  height: 45px;
  background-color: var(--accent-purple-dark);
  border-radius: 50%;
  opacity: 0.8;
  transform: translateX(-15px);
  z-index: -1;
  box-shadow: 0 0 25px var(--accent-purple-dark);
  animation: pulse 2s infinite ease-in-out 0.5s;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }

  100% {
    transform: scale(1);
    opacity: 0.7;
  }
}

.footer-orb-2 {
  animation: pulse2 2.5s infinite ease-in-out;
}

@keyframes pulse2 {
  0% {
    transform: translateX(-15px) scale(1);
    opacity: 0.8;
  }

  50% {
    transform: translateX(-15px) scale(1.06);
    opacity: 1;
  }

  100% {
    transform: translateX(-15px) scale(1);
    opacity: 0.8;
  }
}

.footer-right {
  text-align: right;
}

.footer-right h4 {
  font-size: 1.2rem;
  color: var(--white-text);
  margin-bottom: 10px;
}

.footer-right p {
  margin-top: 5px;
  margin-bottom: 5px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .nav-menu li {
    margin-left: 20px;
  }

  .hero-content h1 {
    font-size: 3.5rem;
  }

  .somos-content,
  .declaracion-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .somos-right,
  .declaracion-left {
    max-width: 80%;
    text-align: center;
  }

  .experiencia-grid,
  .beneficios-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .experiencia-item:not(:last-child) {
    border-right: 1px solid var(--purple-text);
  }

  .experiencia-item:nth-child(even) {
    border-right: none;
  }

  .experiencia-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .preguntas-section .section-heading,
  .sugerencias-left h2 {
    text-align: center;
    padding-left: 0;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 50px;
  }

  .faq-input-group {
    grid-column: span 1;
    align-items: center;
  }

  .sugerencias-content {
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding: 0 50px;
  }

  .sugerencias-left,
  .sugerencias-right {
    max-width: 100%;
    text-align: center;
  }

  .sugerencias-left .button {
    display: block;
    margin: 20px auto 0 auto;
  }

  .sugerencias-right {
    margin-top: 0;
  }

  .footer .container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .footer-left {
    padding-left: 0;
    align-items: center;
    text-align: center;
  }

  .footer-orbs {
    left: 50%;
    transform: translateX(-50%);
    bottom: auto;
    top: -5px;
  }

  .footer-right {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .header .container {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .logo {
    margin-right: auto;
    order: 1;
  }

  .header-actions {
    margin-left: auto;
    order: 2;
  }

  .lang-dropdown {
    margin-right: 0;
  }

  .nav-menu {
    order: 3;
    width: 100%;
    text-align: center;
    margin-top: 15px;
  }

  .nav-menu ul {
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-menu ul li {
    margin: 0 10px;
  }

  .side-buttons {
    right: 10px;
    gap: 10px;
  }

  .icon-button {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .hero-section {
    padding-left: 20px;
    text-align: center;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .somos-section,
  .declaracion-section,
  .experiencia-section,
  .beneficios-section,
  .preguntas-section,
  .sugerencias-section {
    padding: 60px 0;
  }

  .section-heading h2 {
    font-size: 2.2rem;
  }

  .somos-left img,
  .declaracion-right img {
    max-width: 100%;
  }

  .experiencia-grid,
  .beneficios-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .experiencia-item {
    border-right: none;
    padding-right: 0;
  }

  .experiencia-item:not(:last-child) {
    border-right: 1px solid var(--purple-text);
  }

  .beneficio-card {
    width: 100%;
    height: auto;
    padding: 30px;
    border-radius: 20px;
  }

  .beneficio-card .icon {
    font-size: 2.8rem;
  }

  .beneficio-card h4 {
    font-size: 1.4rem;
  }

  .sugerencias-content {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .nav-menu ul {
    flex-direction: column;
    align-items: center;
  }

  .nav-menu li {
    margin: 10px 0;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section-heading h2 {
    font-size: 1.8rem;
  }

  .somos-right h3,
  .declaracion-left h3 {
    font-size: 2rem;
  }

  .experiencia-item h4 {
    font-size: 1.3rem;
  }

  .beneficio-card {
    padding: 20px;
  }

  .beneficio-card h4 {
    font-size: 1.4rem;
  }

  .faq-question {
    font-size: 1rem;
  }

  .sugerencias-left h2 {
    font-size: 2.2rem;
  }
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 60px; /* Preferred icon size */
  margin-bottom: 16px;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
}
