@charset "UTF-8";
/* RESET BASE */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

/* imágenes */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* formularios */
input,
button,
textarea,
select {
  font: inherit;
}

/* links */
a {
  text-decoration: none;
  color: inherit;
}

/* listas */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* headings */
h1, h2, h3, h4, h5, h6,
p {
  margin: 0;
}

.carrusel-home .container-fluid {
  padding-right: 0px;
  padding-left: 0px;
}
.carrusel-home .splide__slide picture,
.carrusel-home .splide__slide img {
  width: 100%;
}
.carrusel-home .splide__slide img {
  height: auto;
  object-fit: cover;
}


.acordeon-custom {
    padding: 48px 0;
}

.acordeon-custom__title {
    margin-bottom: 24px;
}

.acordeon-custom__item {
    border-bottom: 1px solid #ddd;
}

.acordeon-custom__button {
    width: 100%;
    padding: 20px 0;
    border: 0;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    font-weight: 600;
}

.acordeon-custom__content {
    padding: 0 0 20px;
}

.acordeon {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}
.acordeon .item-ac {
  background: #ffffff;
  border: 1px solid rgba(16, 24, 40, 0.12);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.acordeon .item-ac.active {
  border-color: rgba(13, 110, 253, 0.38);
  box-shadow: 0 14px 38px rgba(13, 110, 253, 0.12);
}
.acordeon .item-ac > button {
  align-items: center;
  background: transparent;
  border: 0;
  color: #1f2937;
  cursor: pointer;
  display: flex;
  font-weight: 700;
  gap: 16px;
  justify-content: space-between;
  line-height: 1.25;
  padding: 20px 24px;
  text-align: left;
  width: 100%;
}
.acordeon .item-ac > button::after {
  align-items: center;
  background: #f3f6fb;
  border-radius: 999px;
  color: #0d6efd;
  content: "+";
  display: inline-flex;
  flex: 0 0 32px;
  font-size: 22px;
  font-weight: 500;
  height: 32px;
  justify-content: center;
  line-height: 1;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  width: 32px;
}
.acordeon .item-ac > button:focus-visible {
  outline: 3px solid rgba(13, 110, 253, 0.28);
  outline-offset: -3px;
}
.acordeon .item-ac.active > button::after,
.acordeon .item-ac > button.active::after {
  background: #0d6efd;
  color: #ffffff;
  content: "-";
  transform: rotate(180deg);
}
.acordeon .js-accordion-content {
  color: #4b5563;
  line-height: 1.65;
}
.acordeon .js-accordion-content > * {
  margin: 0 24px 20px;
}
.acordeon .js-accordion-content > * + * {
  margin-top: 12px;
}

@media (max-width: 767px) {
  .acordeon {
    gap: 10px;
    margin: 18px 0;
  }
  .acordeon .item-ac > button {
    padding: 16px 18px;
  }
  .acordeon .item-ac > button::after {
    flex-basis: 28px;
    font-size: 20px;
    height: 28px;
    width: 28px;
  }
  .acordeon .js-accordion-content > * {
    margin-right: 18px;
    margin-bottom: 18px;
    margin-left: 18px;
  }
}
