@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
:root{
  --color-1: white;
  --text-color: #333333;
  --accent-color: #43b248;
}

*{
  margin: 0;
  padding: 0;
}


html{
  font-size: 16px;
  font-family: "Playfair Display", serif;
  
}

body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    font-size: 16px;
}



  .sec1 {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
  }

  .image-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }

  .imgsec1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
  }

  .green-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 93, 0, 0.25);
    z-index: 1;
    pointer-events: none;
  }
  
  .sec1 h1{
    position: absolute;
    color: white;
    font-weight: 400;
    font-size: 45px;
    top: 45%;
    left: 0;
    text-align:center;
    width: 100%;
    font-family: "Playfair Display", serif;
    z-index: 10;
  }

  footer{
    background-color: #144816;
    color: white;
    padding-top: 80px;
    padding-left: 120px;
    padding-right: 120px;
    padding-bottom: 20px;
  }
  .flogo {
    width: auto;
    height: 75px;
  }
  
  footer li {
    font-size: 14px;
  }
  
  footer p {
    font-size: 14px;
  }
  
  footer .text-green-600 {
    font-size: 18px;
  }
  
  
  .navpadding {
    margin-left: 30px;
    height: 100%;
    width: auto;
  }
  .navpadding2 {
    margin-right: 30px;
  }


  .specialbtn2 {
    background-color: #43b248;
    color: white;
  
    border: unset;
    border-radius: 2px;
    font-weight: 600;
    display: inline-flex; /* Asegura que los elementos internos estén en una línea */
    align-items: center; /* Centra verticalmente */
    justify-content: center; /* Centra horizontalmente */
    font-size: 16px;
    cursor: pointer;
  }


.specialbtn2:hover {
    background: linear-gradient(43deg, var(--myColor1) 0%, var(--myColor2) 46%, var(--myColor3) 100%);
   transition: --myColor1 0.4s, --myColor2 0.5s, --myColor3 0.2s;
   --myColor1: #43b248;
   --myColor2: #d4b757;
   --myColor3: #ffdb98;
  }
  
  .specialbtn2:not(:hover){
    background: linear-gradient(var(--myColor1), var(--myColor2));
   transition: --myColor1 0.4s, --myColor2 0.5s, --myColor3 0.2s;
  }
  
  @property --myColor1 {
    syntax: '<color>';
    initial-value: #43b248;
    inherits: false;
  }
  
  @property --myColor2 {
    syntax: '<color>';
    initial-value: #43b248;
    inherits: false;
  }
  @property --myColor3 {
    syntax: '<color>';
    initial-value: #43b248;
    inherits: false;
  }
  


.faq-section {
    padding: 40px 20px;
    text-align: center;
}
.tituloh2 {
    font-size: 30px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}
.faq {
    max-width: 80%;
    margin: 0 auto;
    text-align: left;
}
.faq-item {
    border-bottom: 1px solid #cccccc;
    padding: 10px 0;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    cursor: pointer;
}
.faq-item i {
    margin-right: 10px;
}
.faq-answer {
    display: none;
    padding: 10px 0;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: var(--accent-color);
}

.faq-answer {

  transition: 0.4s ease, padding 0.4s ease;

}
.faq-answer-content {
  padding: 15px 0;
}
.faq-item {
  cursor: pointer;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  transition: color 0.3s ease;
}
.faq-item:hover {
  color: #43b248;
}
.faq-item.active {
    background-color: var(--accent-color);
    color: white;
}

.faq-search {
    margin: 20px auto 40px;
    width: 80%;
    max-width: 600px;
}
.faq-search-input {
    width: 100%;
    padding: 12px 20px;
    border-radius: 9999px;
    border: 1px solid #ccc;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-search-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 8px rgba(67, 178, 72, 0.3);
}