* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/*-----FONTS-----*/
@font-face {
  font-family: 'Inter-Light';
  src: url('../fonts/Inter-Light.woff2') format('woff2'),
    url('../fonts/Inter-Light.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Inter-ExtraLight';
  src: url('../fonts/Inter-ExtraLight.woff2') format('woff2'),
    url('../fonts/Inter-ExtraLight.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.woff2') format('woff2'),
    url('../fonts/Inter-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Inter-Bold';
  src: url('../fonts/Inter-Bold.woff2') format('woff2'),
    url('../fonts/Inter-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'LFTEticaSheriff-Regular';
  src: url('../fonts/LFTEticaSheriff-Regular.woff2') format('woff2'),
    url('../fonts/LFTEticaSheriff-Regular.ttf') format('truetype');
  font-style: normal;
}


@font-face {
  font-family: 'LFTEticaSheriff-SemiBd';
  src: url('../fonts/LFTEticaSheriff-SemiBd.woff2') format('woff2'),
    url('../fonts/LFTEticaSheriff-SemiBd.ttf') format('truetype');
  font-style: normal;
}

@font-face {
  font-family: 'LFTEticaSheriff-Bold';
  src: url('../fonts/LFTEticaSheriff-Bold.woff2') format('woff2'),
    url('../fonts/LFTEticaSheriff-Bold.ttf') format('truetype');
  font-style: normal;
}

:root {
  --rojo: #C32A26;
  --naranja: #EFA220;
  --marron: #7b3f28;
  --crema: #FEF6E8;
  --gris: #797878;
  --gris2: #e4e1e1;
  --verde: #1F9562;
  --verde2: #024C36;
  --dorado: #EFB810;
  --max-width: 1200px;

  /* Fuentes */
  --font-principal-regular: 'LFTEticaSheriff-Regular', serif;
  --font-principal-semi: 'LFTEticaSheriff-SemiBd', serif;
  --font-principal-bold: 'LFTEticaSheriff-Bold', serif;
  --font-parrafo: 'Inter', sans-serif;

  /* Tamaños de fuente */
  --font-size-title: 60px;
  --font-size-subtitle: 35px;
  --font-size-paragraph: 20px;
}


body {
  font-family: 'Inter', sans-serif;
}

/*SELECCIÓN DE TEXTO*/
/* Cambiar color de selección de texto */
::selection {
  background: var(--rojo);
  color: white;
}

/* Para compatibilidad con Firefox */
::-moz-selection {
  background: var(--rojo);
  color: white;
}


/**************************
  PREGUNTAS FRECUENTES
***************************/
.faq-wrapper {
  background-color: var(--crema);
  padding: 2rem 1rem;
}

.faq-section {
  max-width: 1200px;
  margin: auto;
  padding: 130px 20px 40px 20px;
  font-family: 'Arial', sans-serif;
  border-radius: 12px;
}

.faq-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.faq-left {
  flex: 1 1 100%;
  max-width: 100%;
}

.titulo-faq,
.subtitulo-faq {
  text-align: center;
}

.titulo-faq {
  font-family: var(--font-principal-semi);
  color: var(--rojo);
  font-size: 50px;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.subtitulo-faq {
  font-family: var(--font-principal-regular);
  font-size: 25px;
  color: var(--marron);
  margin-bottom: 2rem;
}

.faq-question {
  font-family: var(--font-principal-semi);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 1rem;
  margin-top: 1rem;
  background-color: #ffffff;
  border: 2px solid var(--naranja);
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  color: var(--rojo);
  transition: color 0.3s ease;
}

.faq-question:hover .question-text {
  color: var(--dorado);
}

.faq-question.active .question-text {
  color: var(--dorado);
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  object-fit: contain;
}

.faq-question.active .faq-icon {
  transform: rotate(90deg);
}

.faq-answer {
  font-family: var(--font-principal-regular);
  color: var(--gris);
  display: none;
  padding: 1rem;
  margin-top: 0.5rem;
  background: white;
  border-radius: 8px;
  text-align: left;
}

.faq-answer p {
  margin-bottom: 1rem;
}

.faq-answer ul,
.faq-answer ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.faq-answer ul {
  list-style-type: disc;
}

.faq-answer ol {
  list-style-type: decimal;
}

.faq-answer img,
.faq-answer video {
  margin-top: 1rem;
  max-width: 100%;
  height: auto;
}

.faq-right {
  display: none;
}

@media (max-width: 768px) {
  .faq-container {
    flex-direction: column;
  }

  .faq-question {
    border: 1.5px solid var(--verde);
    font-size: 15px;
  }

  .titulo-faq {
    font-size: 40px;
  }

  .subtitulo-faq {
    font-size: 18px;
  }

  .faq-icon {
    width: 18px;
    height: 18px;
  }
}
