@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

section {
    background-color: #f2f2f2;
}

#landing2 section {
    background-color: #ffffff;
}

#introduccion p {
    font-size: 20px;
}

.bg-green {
    background-color: #358a42;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-button {
    color: #000;
    background-color: #fff;
    box-shadow: none !important;
}

.accordion-button::after {
    background-image: none !important;
    content: "+";
    font-size: 1.2rem;
    color: red;
    font-weight: bold;
}

.accordion-button:not(.collapsed) {
    background-color: #358a42 !important;
    color: #fff !important;
    box-shadow: 0 0 0 0.25rem rgba(53, 138, 66, 0.4) !important;
}

.accordion-button:not(.collapsed)::after {
    content: "-";
    color: #fff;
}

footer {
  background-color: #358a42;
  padding: 25px 0;
}

footer .footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

@media (min-width: 768px) {
  footer .footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

footer p {
  color: #ffffff;
  margin: 0;
  font-size: 0.95rem;
}

footer a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #d3d3d3;
}

footer .addex-link {
  color: #ffffff;
  font-weight: bold;
}


.card {
    border: none;
    margin: 15px 0;
    box-shadow: 5px 4px 16px -4px rgba(0, 0, 0, 0.12);
    -webkit-box-shadow: 5px 4px 16px -4px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 5px 4px 16px -4px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
}

.landing-section {
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 0.5s, height 0.5s;
}

.landing-section.active {
    opacity: 1;
    height: auto;
}

.galeria-item {
    transition: transform 0.4s ease;
}

.galeria-item:hover {
    transform: scale(1.05);
}

.galeria-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(53, 138, 66, 0.7);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.galeria-item:hover .overlay {
    opacity: 1;
}

.label-ques {
    color: #358a42;
    font-size: 1rem;
    font-weight: 600;
}

.form-control:focus {
    outline: none;
}

.form-check-input:checked {
  background-color: #358a42;
  border-color: #358a42;
}