@charset "UTF-8";
/* ===========================
   CONFIGURACIÓN GLOBAL
=========================== */
@import url("https://fonts.googleapis.com/css2?family=Sour+Gummy:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/* ===========================
   BASE DE ESTILOS
=========================== */
*,
html,
body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scrollbar-width: none;
}
*::-webkit-scrollbar,
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  height: 0 !important;
  display: none !important;
}
*::-webkit-scrollbar-track,
html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: transparent !important;
}
*::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background: transparent !important;
}
*::-webkit-scrollbar-corner,
html::-webkit-scrollbar-corner,
body::-webkit-scrollbar-corner {
  background: transparent !important;
}
*::-webkit-resizer,
html::-webkit-resizer,
body::-webkit-resizer {
  background: transparent !important;
}
*,
html,
body {
  scrollbar-gutter: stable both-edges;
}

a {
  text-decoration: none;
  color: #FFD83D;
}

img {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
}

ul, ol {
  list-style: none;
}

hr {
  border: none;
  border-top: 1px solid #e8eced;
  margin: 30px 0;
}
hr.hr-primary {
  border-top-color: rgba(255, 216, 61, 0.3);
}
hr.line-dashed {
  border-top-style: dashed;
}
hr.line-dashed--secondary {
  border-top-color: #5532A8;
}
hr.line-dashed--primary {
  border-top-color: #FFD83D;
}
hr.line-dashed--light {
  border-top-color: #F3F6F7;
}
hr.line-dashed--dark {
  border-top-color: #000000;
}
hr.line-solid {
  border-top-style: solid;
}
hr.line-solid--secondary {
  border-top-color: #5532A8;
}
hr.line-solid--primary {
  border-top-color: #FFD83D;
}
hr.line-solid--light {
  border-top-color: #F3F6F7;
}
hr.line-solid--dark {
  border-top-color: #000000;
}
hr.line-dotted {
  border-top-style: dotted;
}
hr.line-dotted--secondary {
  border-top-color: #5532A8;
}
hr.line-dotted--primary {
  border-top-color: #FFD83D;
}
hr.line-dotted--light {
  border-top-color: #F3F6F7;
}
hr.line-dotted--dark {
  border-top-color: #000000;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  outline: 0;
}

.grecaptcha-badge {
  visibility: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #000000;
}

.uppercase {
  text-transform: uppercase;
}

.container,
.container--md,
.container--sm,
.container--xs,
.container--xxs,
.container--min {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 20px;
}

.container {
  max-width: 1440px;
}

.container--md {
  max-width: 1200px;
}

.container--sm {
  max-width: 1000px;
}

.container--xs {
  max-width: 900px;
}

.container--xxs {
  max-width: 800px;
}

.container--min {
  max-width: 600px;
}

@media screen and (min-width: 768px) {
  .container,
  .container--md,
  .container--sm,
  .container--xs,
  .container--xxs,
  .container--min {
    padding: 0 40px;
  }
}
.hidden {
  display: none !important;
}

.pdt {
  padding-top: 70px;
}

.pdb {
  padding-bottom: 70px;
}

.hide-desktop {
  display: none !important;
}

.hide-mobile {
  display: block !important;
}

@media screen and (max-width: 1024px) {
  .hide-desktop {
    display: block !important;
  }
  .hide-mobile {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pdt {
    padding-top: 50px;
  }
  .pdb {
    padding-bottom: 50px;
  }
  .hide-desktop {
    display: block !important;
  }
  .hide-mobile {
    display: none !important;
  }
}
.link-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.no-scroll {
  overflow: hidden;
}

.h-full {
  height: 100% !important;
}

.w-full {
  width: 100% !important;
}

.h-auto {
  height: auto;
}

.w-auto {
  width: auto;
}

.text-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

input, textarea, select, button {
  font-family: "Montserrat", sans-serif;
  outline: 0;
}
input::placeholder, textarea::placeholder, select::placeholder, button::placeholder {
  font-family: "Montserrat", sans-serif;
}

input[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
  -webkit-appearance: none;
}
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.pointer {
  cursor: pointer;
}

.text-primary {
  color: #FFD83D !important;
}

.text-secondary {
  color: #5532A8 !important;
}

.text-dark {
  color: #000000 !important;
}

.text-light {
  color: #F3F6F7 !important;
}

.text-white {
  color: #ffffff !important;
}

.text-info {
  color: #17a2b8 !important;
}

.text-success {
  color: #06A52B !important;
}

.text-danger {
  color: #dc3545 !important;
}

.text-warning {
  color: #ffc107 !important;
}

.text-disabled {
  color: #A5A5A5 !important;
}

.text-gray {
  color: #847D7D !important;
}

.text-xs {
  font-size: 12px !important;
}

.text-sm {
  font-size: 14px !important;
}

.text-base {
  font-size: 16px !important;
}

.text-lg {
  font-size: 18px !important;
}

.line-through {
  text-decoration: line-through;
}

.text-decoration {
  text-decoration: underline;
}

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

.font-bold {
  font-weight: bold !important;
}

.font-600 {
  font-weight: 600 !important;
}

.font-500 {
  font-weight: 500 !important;
}

.text-sm {
  font-size: 14px !important;
}

.text-xs {
  font-size: 12px !important;
}

.text-md {
  font-size: 16px !important;
}

.text-lg {
  font-size: 18px !important;
}

.max-content {
  width: max-content !important;
  min-width: max-content !important;
}

.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.imagen img {
  width: 100%;
  height: auto !important;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  font-family: "Sour Gummy", sans-serif;
}

.header-title {
  display: flex;
}
.header-title--center {
  justify-content: center;
}
.header-title--center .title {
  text-align: center;
}
.header-title--left {
  justify-content: flex-start;
}
.header-title--left .title {
  text-align: left;
}
.header-title--right {
  justify-content: flex-end;
}
.header-title--right .title {
  text-align: right;
}
.header-title .title {
  margin: 0;
  padding: 0;
  font-size: 50px;
  line-height: 5rem;
  color: #000000;
}
.header-title .title span {
  background-color: #FFD83D;
  color: #000000;
  padding: 8px 20px;
  border-radius: 9999px;
  white-space: nowrap;
  min-width: max-content;
}
@media screen and (max-width: 768px) {
  .header-title .title {
    font-size: 25px;
    line-height: 3.5rem;
  }
}
.header-title--span-secondary .title span {
  background-color: #5532A8;
  color: #FFFFFF;
}

@media screen and (max-width: 768px) {
  .header-title {
    flex-direction: column;
  }
}
.overflow-hidden {
  overflow: hidden !important;
}

.vector-background-vector {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: -1;
}
.vector-background-vector svg {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 768px) {
  .vector-background-vector {
    height: 100%;
    background-color: #FFD83D;
  }
  .vector-background-vector svg {
    width: 100%;
    height: auto;
    display: block;
  }
}
body.is-modal-open {
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .wfull-movil {
    width: 100% !important;
  }
}
.html-content h1, .html-content h2, .html-content h3, .html-content h4, .html-content h5, .html-content h6 {
  color: #000000;
  margin-bottom: 1rem;
}
.html-content h1 span, .html-content h2 span, .html-content h3 span, .html-content h4 span, .html-content h5 span, .html-content h6 span {
  display: inline-flex;
  padding: 10px;
  border-radius: 9999px;
  background-color: #FFD83D;
  color: #000000;
}
.html-content h1 span.secondary, .html-content h2 span.secondary, .html-content h3 span.secondary, .html-content h4 span.secondary, .html-content h5 span.secondary, .html-content h6 span.secondary {
  background-color: #5532A8;
  color: #FFFFFF;
}
.html-content h1 {
  font-size: 2.5rem;
}
.html-content h1.lxg {
  font-size: 3.5rem;
}
.html-content h2 {
  font-size: 2rem;
}
.html-content h2.lxg {
  font-size: 3rem;
}
.html-content h3 {
  font-size: 1.75rem;
}
.html-content h3.lxg {
  font-size: 2.5rem;
}
.html-content h4 {
  font-size: 1.5rem;
}
.html-content h4.lxg {
  font-size: 2rem;
}
.html-content h5 {
  font-size: 1.25rem;
}
.html-content h6 {
  font-size: 1rem;
}
.html-content p {
  color: #6E6E6E;
  line-height: 1.6;
  margin-bottom: 0.7rem;
}
.html-content strong {
  font-weight: bold;
  color: #000000;
}
.html-content a {
  color: #FFD83D;
  text-decoration: underline;
}
.html-content a:hover {
  color: rgba(255, 216, 61, 0.1);
}
.html-content ul, .html-content ol {
  margin-bottom: 1rem;
}
.html-content ul li, .html-content ol li {
  margin-bottom: 1.3rem;
  color: #6E6E6E;
  padding-left: 2rem;
  position: relative;
}
.html-content ul li:last-child, .html-content ol li:last-child {
  margin-bottom: 0;
}
.html-content ul li::before, .html-content ol li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: #5532A8;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 50 50'%3E%3Cdefs%3E%3CclipPath id='clip-Mesa_de_trabajo_1'%3E%3Cpath d='M0 0h50v50H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Mesa_de_trabajo_1' clip-path='url(%23clip-Mesa_de_trabajo_1)' data-name='Mesa de trabajo – 1'%3E%3Cg id='Grupo_2592' fill='%235532a8' data-name='Grupo 2592' transform='translate(-2762.83 444.339)'%3E%3Cpath id='Trazado_2487' d='M154.514 361.779c1.128 5.294 12.028 1.954 18.207 11.732a10.53 10.53 0 0 0 5.8 4.443c8.067 2.515 9.124-14.733 6.69-21.009-2.134-5.5-8.88-8.883-14.628-8.061-5.846.836-10.937 4.1-14.9 8.066a5.46 5.46 0 0 0-1.164 4.83' data-name='Trazado 2487' transform='rotate(-51.98 688.927 -2710.485)'/%3E%3Cpath id='Trazado_2488' d='M159.83 318.893c.678 3.538 4.725 4.506 7.5 3.037a11.42 11.42 0 0 0 6.007-7.664 4.372 4.372 0 0 0-3.895-5.4 8.648 8.648 0 0 0-9.61 10.025' data-name='Trazado 2488' transform='rotate(-51.98 707.456 -2733.1)'/%3E%3Cpath id='Trazado_2489' d='M134.3 333.544a5.46 5.46 0 0 0 3.644 3.307c1.848.518 3.321-.431 4.8-1.732a8.446 8.446 0 0 0-.133-12.99c-1.846-1.483-4.621-.74-6.052 1.02a10.96 10.96 0 0 0-2.259 10.4' data-name='Trazado 2489' transform='rotate(-51.98 680.693 -2768.948)'/%3E%3Cpath id='Trazado_2490' d='M124.192 365.294c-.849 3.009.595 6.333 3.528 7.044 2.563.622 5.209-1.143 6.384-3.329a9.92 9.92 0 0 0 .131-9.055 3.245 3.245 0 0 0-4.6-1.642 11.62 11.62 0 0 0-5.444 6.983' data-name='Trazado 2490' transform='rotate(-51.98 651.559 -2773.235)'/%3E%3Cpath id='Trazado_2491' d='M204.652 332.448c3.912-1.638 5.393-5.716 5.549-9.63a3.235 3.235 0 0 0-3.656-3.526c-3.955.4-7.752 3.249-8.487 7.2a5.63 5.63 0 0 0 1.523 5.234 5.13 5.13 0 0 0 5.071.719' data-name='Trazado 2491' transform='rotate(-51.98 727.57 -2676.003)'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat center/contain;
}
.html-content ul.list-secondary li, .html-content ol.list-secondary li {
  color: #5532A8;
}
.html-content ul.list-secondary li strong, .html-content ol.list-secondary li strong {
  color: #5532A8;
}
.html-content blockquote {
  border-left: 4px solid #FFD83D;
  padding: 0.5rem;
  padding-left: 1rem;
  margin: 1em 0;
  color: #FFD83D;
  background-color: #F3F6F7;
}
.html-content--white h1, .html-content--white h2, .html-content--white h3, .html-content--white h4, .html-content--white h5, .html-content--white h6, .html-content--white p, .html-content--white li {
  color: #FFFFFF;
}
.html-content--white a {
  color: #FFFFFF;
}
.html-content--white a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.html-content--white blockquote {
  border-left: 4px solid #FFFFFF;
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.1);
}
.html-content--white ul li, .html-content--white ol li {
  color: #FFFFFF;
}
.html-content--dark h1, .html-content--dark h2, .html-content--dark h3, .html-content--dark h4, .html-content--dark h5, .html-content--dark h6, .html-content--dark p, .html-content--dark li {
  color: #000000;
}
.html-content--dark a {
  color: #000000;
}
.html-content--dark a:hover {
  color: rgba(0, 0, 0, 0.8);
}
.html-content--dark blockquote {
  border-left: 4px solid #000000;
  color: #000000;
  background-color: rgba(0, 0, 0, 0.1);
}
.html-content--dark ul li, .html-content--dark ol li {
  color: #000000;
}

.columns {
  display: grid;
  gap: 4rem;
}
.columns--2 {
  grid-template-columns: repeat(2, 1fr);
}
.columns--3 {
  grid-template-columns: repeat(3, 1fr);
}

.bk-pill {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 9999px;
  background-color: #FFD83D;
  color: #000000;
  font-weight: normal;
  font-family: "Sour Gummy", sans-serif;
  font-size: 20px;
  text-align: center;
}
.bk-pill strong {
  font-weight: bold !important;
}
.bk-pill--secondary {
  background-color: #5532A8;
  color: #FFFFFF;
}

/* media query */
@media (max-width: 768px) {
  .html-content h1 {
    font-size: 1.8rem;
  }
  .html-content h1.lxg {
    font-size: 2.5rem;
  }
  .html-content h2 {
    font-size: 1.5rem;
  }
  .html-content h2.lxg {
    font-size: 2rem;
  }
  .html-content h3 {
    font-size: 1.25rem;
  }
  .html-content h3.lxg {
    font-size: 1.75rem;
  }
  .html-content h4 {
    font-size: 1.1rem;
  }
  .html-content h4.lxg {
    font-size: 1.25rem;
  }
  .columns--2, .columns--3 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .bk-pill {
    font-size: 16px;
    border-radius: 20px;
    padding: 8px 16px;
  }
}
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
  top: 100px;
}
@media screen and (max-width: 768px) {
  .sticky {
    position: relative;
    top: 0;
  }
}

.block {
  display: block !important;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.justify-start {
  justify-content: flex-start;
}

.flex-column {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.grid-cols-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}

.grid-cols-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

.grid-cols-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}

.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.fields-5 {
  grid-template-columns: 1fr 4% 1fr auto auto;
}

.fields-6 {
  grid-template-columns: 1fr 4% 1fr auto auto auto;
}

.grid-1fr-auto {
  grid-template-columns: 1fr auto;
}

.grid-1fr-auto-auto {
  grid-template-columns: 1fr auto auto;
}

.grid-auto-1fr {
  grid-template-columns: auto 1fr;
}

.grid-auto-auto-1fr {
  grid-template-columns: auto auto 1fr;
}

/* media query */
@media screen and (max-width: 768px) {
  .grid-mobile-1fr {
    grid-template-columns: 1fr !important;
  }
  .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .grid-cols-2 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .grid-cols-3 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .grid-cols-4 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .grid-cols-5 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .grid-cols-6 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .grid-cols-7 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .grid-cols-8 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .grid-cols-9 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .grid-cols-10 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .grid-cols-11 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .grid-cols-12 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
}
.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-x4 {
  column-gap: 4rem;
}

.gap-x5 {
  column-gap: 5rem;
}

.gap-x6 {
  column-gap: 6rem;
}

.gap-x7 {
  column-gap: 7rem;
}

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

.flexible {
  flex: 1;
}

.m-0 {
  margin: 0;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0;
}

.mr-0 {
  margin-right: 0;
}

.mx-0 {
  margin-left: 0;
  margin-right: 0;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.ml-3 {
  margin-left: 0.75rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.mx-3 {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.ml-4 {
  margin-left: 1rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.ml-5 {
  margin-left: 1.25rem;
}

.mr-5 {
  margin-right: 1.25rem;
}

.mx-5 {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.my-5 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.ml-6 {
  margin-left: 1.5rem;
}

.mr-6 {
  margin-right: 1.5rem;
}

.mx-6 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.ml-8 {
  margin-left: 2rem;
}

.mr-8 {
  margin-right: 2rem;
}

.mx-8 {
  margin-left: 2rem;
  margin-right: 2rem;
}

.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.ml-10 {
  margin-left: 2.5rem;
}

.mr-10 {
  margin-right: 2.5rem;
}

.mx-10 {
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}

.my-10 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.ml-12 {
  margin-left: 3rem;
}

.mr-12 {
  margin-right: 3rem;
}

.mx-12 {
  margin-left: 3rem;
  margin-right: 3rem;
}

.my-12 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pl-1 {
  padding-left: 0.25rem;
}

.pr-1 {
  padding-right: 0.25rem;
}

.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pl-2 {
  padding-left: 0.5rem;
}

.pr-2 {
  padding-right: 0.5rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.pt-3 {
  padding-top: 0.75rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.pl-3 {
  padding-left: 0.75rem;
}

.pr-3 {
  padding-right: 0.75rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pl-4 {
  padding-left: 1rem;
}

.pr-4 {
  padding-right: 1rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.pt-5 {
  padding-top: 1.25rem;
}

.pb-5 {
  padding-bottom: 1.25rem;
}

.pl-5 {
  padding-left: 1.25rem;
}

.pr-5 {
  padding-right: 1.25rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.pl-6 {
  padding-left: 1.5rem;
}

.pr-6 {
  padding-right: 1.5rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pl-8 {
  padding-left: 2rem;
}

.pr-8 {
  padding-right: 2rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.pt-10 {
  padding-top: 2.5rem;
}

.pb-10 {
  padding-bottom: 2.5rem;
}

.pl-10 {
  padding-left: 2.5rem;
}

.pr-10 {
  padding-right: 2.5rem;
}

.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.pt-12 {
  padding-top: 3rem;
}

.pb-12 {
  padding-bottom: 3rem;
}

.pl-12 {
  padding-left: 3rem;
}

.pr-12 {
  padding-right: 3rem;
}

.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* ===========================
   COMPONENTES
=========================== */
.btn {
  background-color: #FFD83D;
  color: #FFFFFF;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.375rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: bold;
  outline: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn i {
  font-size: 20px;
}
.btn:hover {
  background-color: rgba(255, 216, 61, 0.85);
}
.btn--primary {
  background-color: #FFD83D;
  color: #000000;
}
.btn--primary:hover {
  background-color: rgba(255, 216, 61, 0.8);
}
.btn--secondary {
  background-color: #5532A8;
}
.btn--secondary:hover {
  background-color: rgba(85, 50, 168, 0.9);
}
.btn--disabled {
  background-color: #847D7D;
  cursor: not-allowed;
  opacity: 0.6;
  user-select: none;
  pointer-events: none;
}
.btn--dark {
  background-color: #000000;
}
.btn--dark:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.btn--white {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #000000;
}
.btn--white:hover {
  background-color: rgba(255, 255, 255, 0.9);
}
.btn--round {
  border-radius: 9999px;
}
.btn--whatsapp {
  background-color: #31D33D;
  color: #fff;
}
.btn--whatsapp:hover {
  background-color: rgba(49, 211, 61, 0.8);
}

.filter-btn {
  background-color: transparent;
  color: #5532A8;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #5532A8;
}
.filter-btn svg {
  width: 20px;
  height: 20px;
}
.filter-btn svg path, .filter-btn svg circle, .filter-btn svg rect {
  fill: #5532A8;
}

.link {
  color: transparent;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  outline: 0;
}
.link:hover {
  opacity: 0.8;
}
.link--secondary {
  color: #5532A8;
  border-color: #5532A8;
}
.link--secondary:hover {
  opacity: 0.8;
}
.link--primary {
  color: #FFD83D;
  border-color: #FFD83D;
}
.link--primary:hover {
  opacity: 0.8;
}
.link--dark {
  color: #000000;
  border-color: #000000;
}
.link--dark:hover {
  opacity: 0.8;
}

.header {
  background-color: #FFD83D;
  height: 80px;
  transition: all 0.4s ease-in-out;
  will-change: transform;
  position: relative;
}
.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo img {
  width: 180px;
  height: auto;
}
.header__left, .header__right {
  flex-grow: 1;
  flex-basis: 0;
}
.header__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}
.header__nav {
  height: 100%;
}
.header__nav ul {
  height: 100%;
  display: flex;
  gap: 2rem;
}
.header__nav ul li a {
  display: inline-flex;
  font-weight: bold;
  color: #000000;
  font-size: 15px;
}
.header__nav > ul > li > a {
  height: 100%;
  display: flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}
.header__nav > ul > li > a:hover {
  border-bottom: 3px solid #000000;
}
.header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100000;
  transform: translateY(-100%);
  animation: slideDown 0.4s ease forwards;
}
.header__menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  height: 100%;
  margin: 0;
  padding: 0;
  outline: 0;
}
.header__menu-toggle svg {
  width: 30px;
  height: 30px;
}
.header__menu-toggle svg path, .header__menu-toggle svg rect {
  fill: #000000;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
/* media query */
@media screen and (max-width: 1024px) {
  .header {
    height: 70px;
  }
  .header__logo img {
    width: 150px;
  }
  .header__left, .header__right {
    flex-grow: 0;
  }
  .header__center {
    flex-grow: 1;
    display: flex;
    justify-content: center;
  }
}
#loader {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  background-color: #fff;
  z-index: 100000000;
  overflow: hidden;
  text-align: center;
  background-color: #fff;
}
#loader .loader {
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 300px;
}
#loader .loader img {
  width: 200px;
  max-width: 200px;
  height: auto;
  object-fit: cover;
  vertical-align: middle;
  position: relative;
}

.pets-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 40px 0;
  background: transparent;
}
.pets-marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.pets-grid {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, 300px);
  grid-auto-columns: 300px;
  gap: 24px;
  padding-right: 24px;
}

.pets-item {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #ddd;
  cursor: pointer;
}
.pets-item--wide {
  grid-column: span 2;
}
.pets-item:hover .pets-item__overlay {
  opacity: 1;
  transform: translateY(0);
}
.pets-item:hover img {
  transform: scale(1.08);
}
.pets-item__badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pets-item__badge img {
  width: 26px;
  height: auto;
}
.pets-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(85, 50, 168, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.45s ease;
  border-radius: 30px;
}
.pets-item__media {
  width: 100%;
  height: 100%;
}
.pets-item__media img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}
.pets-item__name {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 1024px) {
  .pets-grid {
    grid-template-rows: repeat(2, 220px);
    grid-auto-columns: 220px;
  }
}
@media (max-width: 768px) {
  .pets-grid {
    grid-template-rows: repeat(2, 180px);
    grid-auto-columns: 180px;
  }
}
.patitas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  grid-auto-flow: dense;
}
@media (max-width: 1024px) {
  .patitas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .patitas-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
}
.patitas-grid .pets-item {
  grid-column: span 1;
}
.patitas-grid .pets-item--wide {
  grid-column: span 2;
}

.vector-overlay {
  position: absolute;
  width: 300px;
  height: 300px;
  z-index: 0;
  opacity: 0.3;
}
.vector-overlay--top-right {
  top: 50px;
  right: -80px;
  transform: translate(0, 0) rotate(15deg);
}
.vector-overlay--bottom-left {
  bottom: 50px;
  left: -80px;
  transform: translate(0, 0) rotate(15deg);
}
.vector-overlay--index-0 {
  z-index: -1;
}

@media (max-width: 768px) {
  .vector-overlay {
    display: none;
  }
}
.swiper {
  width: 100%;
  height: auto;
}
.swiper-slide .imagen img {
  width: 100%;
  height: auto;
  display: block;
}

.custom-swiper-arrow {
  width: 48px;
  height: 48px;
  text-align: center;
  line-height: 48px;
  border-radius: 50%;
}
.custom-swiper-arrow svg {
  width: 24px;
  height: 24px;
}
.custom-swiper-arrow.secondary {
  background-color: #5532A8;
  color: #fff;
}
.custom-swiper-arrow.secondary:hover {
  background-color: rgba(85, 50, 168, 0.6);
}
.custom-swiper-arrow.dark {
  background-color: #000000;
  color: #fff;
}
.custom-swiper-arrow.dark:hover {
  background-color: rgba(0, 0, 0, 0.6);
}
.custom-swiper-arrow.white {
  background-color: #FFFFFF;
  color: #5532A8;
}
.custom-swiper-arrow.white:hover {
  background-color: rgba(255, 255, 255, 0.9);
}
.custom-swiper-arrow.primary {
  background-color: #FFD83D;
  color: #fff;
}
.custom-swiper-arrow.primary:hover {
  background-color: rgba(255, 216, 61, 0.6);
}
.custom-swiper-arrow.prev.left-20 {
  left: 20px;
}
.custom-swiper-arrow.next.right-20 {
  right: 20px;
}

.nav-outside-swiper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.nav-outside-swiper .custom-swiper-arrow {
  position: relative;
  left: auto;
  top: auto;
  right: auto;
  margin: 0;
}

.cards-links__wrap {
  margin-top: 80px;
}
.cards-links__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem;
}
@media screen and (max-width: 992px) {
  .cards-links__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}
@media screen and (max-width: 576px) {
  .cards-links__grid {
    grid-template-columns: 1fr;
  }
}

.card-link {
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.card-link:hover .card-link__title {
  font-size: 30px;
}
.card-link__media {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}
.card-link__media img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.card-link__media::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: #FFD83D;
  transition: background 0.3s ease;
  z-index: 0;
  border-radius: 30px;
}
.card-link__overlay {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s ease;
  padding: 40px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}
.card-link__title {
  color: #FFFFFF;
  font-size: 27px;
  font-weight: bold;
  text-align: center;
  transition: font-size 0.3s ease;
}
.card-link__content {
  max-width: 300px;
  margin: 0 auto;
}
.card-link__content p {
  font-size: 16px;
  color: #6E6E6E;
  text-align: center;
  line-height: 1.6;
}
.card-link__content p strong {
  color: #000000;
}

.highlight {
  display: inline-block;
  padding: 0.2em 0.8em;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  vertical-align: middle;
}
.highlight--pill {
  border-radius: 999px;
}
.highlight--primary {
  background-color: #FFD83D;
  color: #000000;
}
.highlight--secondary {
  background-color: #5532A8;
  color: #fff;
}
.highlight--dark {
  background-color: #000;
  color: #fff;
}
.highlight--light {
  background-color: #f0f0f0;
  color: #000000;
}

.gallery-phrase__image img {
  width: 100%;
  height: auto;
}
.gallery-phrase__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  background-color: rgba(0, 0, 0, 0.3);
}
.gallery-phrase__overlay h2 {
  color: #fff;
  font-size: 35px;
  font-weight: bold;
}
.gallery-phrase__overlay-wrap {
  padding: 40px;
  width: 100%;
  max-width: 500px;
}

/* media query */
@media screen and (max-width: 768px) {
  .gallery-phrase__overlay-wrap {
    padding: 20px;
  }
  .gallery-phrase__overlay-wrap h2 {
    font-size: 25px;
  }
}
.footer {
  background-color: #1D1D1D;
  padding: 60px 0;
}
.footer__wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 5rem;
}
.footer__logo {
  width: 200px;
}
.footer__logo img {
  width: 150px;
  height: auto;
  opacity: 0.52;
}
.footer__left {
  width: calc(100% - 200px - 5rem);
}
.footer__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
.footer__title {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  opacity: 0.5;
}
.footer__contact-list, .footer__links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}
.footer__contact-list li, .footer__contact-list a, .footer__links-list li, .footer__links-list a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
  opacity: 0.8;
  display: inline-block;
  cursor: pointer;
}
.footer__contact-list li:hover, .footer__contact-list a:hover, .footer__links-list li:hover, .footer__links-list a:hover {
  opacity: 1;
  color: #FFD83D;
}
.footer__social-media {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer__social-media-list {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer__social-media-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
  color: #FFD83D;
}
.footer__social-media-list li a:hover {
  background-color: #FFD83D;
  color: #000000;
}

.copy-right {
  background-color: #080808;
  padding: 20px 0;
}
.copy-right .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.copy-right .row .col {
  width: calc(50% - 1rem);
}
.copy-right .row .text p {
  font-size: 14px;
  color: #fff;
  opacity: 0.4;
}
.copy-right .row .firma a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.copy-right .row .firma a span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.33);
}
.copy-right .row .firma a svg {
  width: 90px;
  height: auto;
  margin-left: 0.5rem;
  opacity: 0.5;
}
.copy-right .row .firma a svg path, .copy-right .row .firma a svg circle, .copy-right .row .firma a svg rect {
  color: rgba(255, 255, 255, 0.33);
}

/* media query */
@media screen and (max-width: 768px) {
  .footer__wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer__left {
    width: 100%;
  }
  .footer__row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__col:nth-child(2) {
    display: none;
  }
  .footer__social-media {
    justify-content: center;
    flex-direction: column;
  }
  .copy-right .row {
    flex-direction: column;
    text-align: center;
  }
  .copy-right .row .col {
    width: 100%;
  }
  .copy-right .row .firma a {
    justify-content: center;
    margin-top: 10px;
  }
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 999999;
  pointer-events: none;
}
.modal.is-open {
  pointer-events: all;
}
.modal.is-open .modal__overlay {
  opacity: 1;
  pointer-events: all;
}
.modal.is-open .modal__content {
  transform: translateX(0);
  opacity: 1;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.modal__content {
  position: relative;
  background-color: #fff;
  width: 400px;
  height: 100vh;
  max-width: 90%;
  padding: 2rem;
  transform: translateX(-100%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: all;
}
.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}
.modal__title {
  font-size: 24px;
  font-weight: bold;
  color: #5532A8;
}
.modal__close-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #5532A8;
  opacity: 0.7;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.modal__close-btn:hover {
  opacity: 1;
}
.modal__body {
  margin-top: 15px;
  max-height: 100%;
  height: 100%;
  overflow-y: auto;
}
.modal__body::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

.patitas__filter {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .patitas__filter {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.filtros {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.filtros__item {
  overflow: hidden;
}
.filtros__item.is-open .filtros__content {
  display: flex;
}
.filtros__item.is-open .filtros__header i {
  transform: rotate(180deg);
}
.filtros__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background-color: rgba(85, 50, 168, 0.14);
  border-radius: 30px;
  cursor: pointer;
}
.filtros__header h3 {
  font-size: 16px;
  font-weight: bold;
  color: #5532A8;
}
.filtros__header i {
  color: #5532A8;
  transition: transform 0.3s ease;
}
.filtros__content {
  padding: 15px 20px;
  display: none;
  flex-direction: column;
  gap: 10px;
}
.filtros__content.is-open {
  display: flex;
}
.filtros__label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5532A8;
  cursor: pointer;
}
.filtros__label input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: #5532A8;
  cursor: pointer;
}
.filtros__label span {
  font-size: 14px;
  color: #6E6E6E;
}

.filter-aplicados {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #f3f3f3;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  color: #000;
  transition: 0.3s;
}
.filter-tag:hover {
  background: #e5e5e5;
}
.filter-tag__remove {
  font-weight: bold;
}

.filter-clear {
  padding: 6px 14px;
  border-radius: 30px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

form, form input, form textarea {
  font-family: "Montserrat", sans-serif;
}

form label.error, form span.error, form span.error-text, form span.error-message {
  font-size: 13px;
  color: #dc3545;
  opacity: 1;
  margin-top: 4px;
  position: relative;
  display: block;
}

/* ========== check box ============= */
.checkbox-wrapper {
  position: relative;
}

.checkbox-wrapper input[type=checkbox] {
  opacity: 0;
  visibility: hidden;
  height: 0;
  position: absolute;
}

.checkbox-wrapper input[type=radio] {
  opacity: 0;
  visibility: hidden;
  height: 0;
  position: absolute;
}

.checkbox-wrapper .terms-label {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #6E6E6E;
  font-weight: 400;
}

.checkbox-wrapper .terms-label .label-text {
  margin-left: 10px;
  color: #6E6E6E;
  width: calc(100% - 30px - 10px);
}

.checkbox-wrapper .terms-label .label-text a {
  text-decoration: underline;
}

.checkbox-wrapper .checkbox-svg {
  width: 30px;
  height: 30px;
}

.checkbox-wrapper .checkbox-box {
  fill: rgba(207, 205, 205, 0.425);
  stroke: #000;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  transition: stroke-dashoffset 0.6s ease-in;
}

.checkbox-wrapper .checkbox-tick {
  stroke: #000;
  stroke-dasharray: 172;
  stroke-dashoffset: 172;
  transition: stroke-dashoffset 0.6s ease-in;
}

.checkbox-wrapper input[type=checkbox]:checked + .terms-label .checkbox-box,
.checkbox-wrapper input[type=checkbox]:checked + .terms-label .checkbox-tick,
.checkbox-wrapper input[type=radio]:checked + .terms-label .checkbox-box,
.checkbox-wrapper input[type=radio]:checked + .terms-label .checkbox-tick {
  stroke-dashoffset: 0;
}

.checkbox-box input[type=checkbox]:disabled + .terms-label {
  opacity: 0.6;
}

/* ============= form =============== */
.form__group {
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}
.form__label {
  font-size: 15px;
  color: #5532A8;
  margin-bottom: 8px;
  display: block;
  font-weight: 500;
}
.form__label span {
  color: var(--color-danger);
}
.form__control {
  width: 100%;
  height: 55px;
  line-height: 28px;
  padding: 0 1.3rem;
  border: 1px solid transparent;
  border-radius: 3px;
  outline: none;
  background-color: rgba(85, 50, 168, 0.1);
  color: #5532A8;
  transition: 0.3s ease;
  box-sizing: border-box;
  font-size: 15px;
  font-weight: 600;
  appearance: none;
}
.form__control::placeholder {
  color: rgba(85, 50, 168, 0.6);
  font-weight: 500;
  font-size: 15px;
}
.form__control.readonly {
  background-color: #ddd;
  user-select: none;
  cursor: not-allowed;
  pointer-events: none;
  color: #6d6d6d;
}
.form__control:hover, .form__control:focus {
  outline: none;
  border-color: rgba(85, 50, 168, 0.9);
  box-shadow: 0 0 0 4px rgba(85, 50, 168, 0.1);
}
.form__control--rounded {
  border-radius: 25px;
}
.form__control_error {
  border-color: #dc3545;
}
.form__control_error:hover, .form__control_error:focus {
  outline: none;
  border-color: rgba(220, 53, 69, 0.7);
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}
.form__control[type=number] {
  appearance: textfield;
}
.form__control[type=number]::-webkit-inner-spin-button, .form__control[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form__select_down {
  position: absolute;
  top: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  right: 10px;
}
.form__select_down svg {
  width: 18px;
  height: 18px;
}
.form__select_down svg g {
  fill: #b9b9b9;
}
.form .form__group select.form__control {
  color: #5532A8;
  font-weight: 500;
}
.form__textarea {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  min-height: 150px;
  max-height: 200px;
  padding: 20px !important;
}
.form__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 25px;
}
.form__row .form__group {
  margin-bottom: 0;
  width: calc(50% - 1rem);
}
.form__control_icon {
  position: absolute;
  top: 17px;
  right: 0;
  font-size: 18px;
  padding: 0 10px;
  color: #b9b9b9;
  cursor: pointer;
}
.form__control_icon:hover {
  color: #787878;
}
.form__control_password {
  font-size: 30px;
  font-weight: 700;
}
.form__control_password::placeholder {
  color: #aaa;
  font-weight: 400;
  font-size: 15px;
}
.form__readonly {
  background-color: rgba(17, 52, 76, 0.1098039216);
  opacity: 0.7;
}
.form__error {
  font-size: 13px;
  color: #dc3545;
  opacity: 1;
  margin-top: 4px;
  position: relative;
  display: block;
  font-weight: 400;
}
.form__subtitle {
  font-size: 22px;
  margin-bottom: 20px;
  color: #000000;
  font-weight: 300;
}
.form__subtitle.subtitle-md {
  font-size: 16px;
}
.form__radio-inputs {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  border-radius: 0.5rem;
  background-color: #f5f5f5;
  box-sizing: border-box;
  box-shadow: 0 0 0px 1px rgba(0, 0, 0, 0.06);
  padding: 0.25rem;
  width: 100%;
  font-size: 14px;
}
.form__radio-inputs .radio {
  flex: 1 1 auto;
  text-align: center;
}
.form__radio-inputs .radio input {
  display: none;
}
.form__radio-inputs .radio input:checked + .name {
  background-color: #fff;
  font-weight: 600;
}
.form__radio-inputs .radio .name {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border: none;
  font-weight: 400;
  padding: 0.8rem 0;
  color: rgb(51, 65, 85);
  transition: all 0.15s ease-in-out;
}

@media (max-width: 768px) {
  .form__row {
    flex-direction: column;
  }
  .form__row .form__group {
    width: 100%;
  }
  .form__radio-inputs {
    flex-direction: column;
  }
}
.radio-buttons-container {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 10px;
}

.radio-button {
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.radio-button__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-button__label {
  display: inline-block;
  padding-left: 30px;
  margin-bottom: 10px;
  position: relative;
  font-size: 16px;
  color: #5532A8;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.radio-button__label strong {
  font-weight: bold;
}

.radio-button__custom {
  position: absolute;
  top: 10px;
  left: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #5532A8;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.radio-button__input:checked + .radio-button__label .radio-button__custom {
  transform: translateY(-50%) scale(0.9);
  border: 5px solid #5532A8;
  color: #5532A8;
}

.radio-button__input:checked + .radio-button__label {
  color: #5532A8;
}

.radio-button__label:hover .radio-button__custom {
  transform: translateY(-50%) scale(1.2);
  border-color: #5532A8;
  box-shadow: 0 0 10px rgba(85, 50, 168, 0.8);
}

@media (max-width: 768px) {
  .radio-buttons-container {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ===========================
   BLOCKS
=========================== */
.bloque-about {
  background-color: #fff;
}
.bloque-about__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.bloque-about__content {
  display: flex;
  justify-content: center;
}
.bloque-about__content-inner {
  background: #FFD83D;
  border-radius: 40px;
  padding: 56px;
  position: relative;
  max-width: 560px;
}
.bloque-about__icon {
  width: 100px;
  margin-bottom: 100px;
}
.bloque-about__icon img {
  width: 100%;
  height: auto;
}
.bloque-about__media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 520px;
}
.bloque-about__dog {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
}
.bloque-about__vector {
  position: absolute;
  z-index: 1;
  width: 520px;
  max-width: 90%;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.bloque-about__buttons {
  margin-top: 50px;
}

@media screen and (max-width: 992px) {
  .bloque-about__wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .bloque-about__media {
    min-height: auto;
  }
  .bloque-about__vector {
    position: absolute;
    width: 400px;
    max-width: 80%;
    right: auto;
    left: 50%;
    top: auto;
    bottom: -20px;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 576px) {
  .bloque-about__content-inner {
    padding: 32px;
  }
  .bloque-about__icon {
    width: 80px;
    margin-bottom: 60px;
  }
  .bloque-about__vector {
    width: 300px;
    bottom: -10px;
  }
}
.featured-pets__wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
}
.featured-pets__controls {
  width: 60px;
}
.featured-pets__slide {
  width: calc(100% - 120px - 20px);
}
.featured-pets__actions {
  margin-top: 40px;
}

/* media query */
@media screen and (max-width: 768px) {
  .featured-pets__wrap {
    flex-direction: column;
    margin-top: 40px;
  }
  .featured-pets__controls {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .featured-pets__slide {
    width: 100%;
  }
  .featured-pets__actions {
    flex-direction: column;
  }
  .featured-pets__controls.next {
    top: 0;
    right: 0;
    left: auto;
    position: absolute;
    width: auto;
  }
}
.html-accordion__wrap {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}
.html-accordion__left {
  flex: 1;
  max-width: 50%;
}
.html-accordion__right {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.html-accordion__button {
  background-color: transparent;
  color: #5532A8;
  padding: 12px 25px;
  border: none;
  outline: 0;
  border-radius: 9999px;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.html-accordion__button[aria-expanded=true] {
  background-color: rgba(85, 50, 168, 0.14);
}
.html-accordion__button[aria-expanded=true] + .html-accordion__content {
  height: auto;
  padding: 15px 25px;
  margin-bottom: 15px;
  opacity: 1;
  visibility: visible;
}
.html-accordion__button:hover {
  background-color: rgba(85, 50, 168, 0.1);
}
.html-accordion__button-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.html-accordion__button-title svg {
  width: 20px;
  height: 20px;
}
.html-accordion__button-title svg path, .html-accordion__button-title svg rect, .html-accordion__button-title svg circle, .html-accordion__button-title svg ellipse, .html-accordion__button-title svg line, .html-accordion__button-title svg polyline, .html-accordion__button-title svg polygon {
  fill: #5532A8;
}
.html-accordion__button-title span {
  font-size: 1.1rem;
  font-weight: bold;
  text-align: left;
}
.html-accordion__icon {
  transition: transform 0.3s ease;
  font-size: 16px;
}
.html-accordion__content {
  height: 0;
  overflow: hidden;
  padding: 0 25px;
  margin-bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: height 0.3s ease, padding 0.3s ease, margin-bottom 0.3s ease, opacity 0.2s ease;
}

/* media queries */
@media screen and (max-width: 768px) {
  .html-accordion__wrap {
    flex-direction: column;
  }
  .html-accordion__left, .html-accordion__right {
    max-width: 100%;
  }
}
.pasos__grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3rem;
}
.pasos__item--no-count .pasos__imagen {
  padding-left: 0;
  padding: 0 25px;
}
.pasos__item--center {
  text-align: center;
}
.pasos__item--center .pasos__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pasos__item--center .pasos__content p {
  text-align: center;
}
.pasos__item--center .pasos__title {
  text-align: center;
}
.pasos__item--center .pasos__subtitle {
  text-align: center;
}
.pasos__imagen {
  position: relative;
  width: 100%;
  padding-left: 35px;
}
.pasos__imagen img {
  width: 100%;
  height: auto;
}
.pasos__count {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 70px;
  background-color: #5532A8;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 30px;
}
.pasos__content {
  margin-top: 15px;
}
.pasos__content p {
  font-size: 14px;
  margin-top: 10px;
  color: #6E6E6E;
}
.pasos__content p strong {
  font-weight: bold;
  color: #000000;
}
.pasos__title {
  font-size: 22px;
  font-weight: bold;
  color: #000000;
}
.pasos__subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
}

/* media query */
@media screen and (max-width: 768px) {
  .pasos__grid {
    grid-template-columns: 1fr;
  }
  .pasos__item--no-count .pasos__imagen {
    padding: 0 20px;
  }
  .pasos__imagen {
    padding: 0 20px;
  }
  .pasos__content {
    margin-top: 40px;
  }
  .pasos__content p {
    font-size: 16px;
  }
  .pasos__title {
    font-size: 25px;
  }
  .pasos__subtitle {
    font-size: 18px;
  }
}
.pet-detail__wrap {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .pet-detail__wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.pet-gallery {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
}

.thumbs-gallery {
  height: 420px;
  padding: 10px;
}
.thumbs-gallery .swiper-slide {
  border-radius: 12px;
  overflow: hidden;
  opacity: 0.5;
  cursor: pointer;
}
.thumbs-gallery .swiper-slide-thumb-active {
  opacity: 1;
  outline: 2px solid #6b4eff;
}
.thumbs-gallery .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-gallery {
  border-radius: 24px;
  overflow: hidden;
}
.main-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Media queries */
@media (max-width: 1024px) {
  .pet-detail__wrap {
    grid-template-columns: 1fr;
  }
  .pet-gallery {
    grid-template-columns: 1fr;
  }
  .thumbs-gallery {
    order: 2;
    height: auto;
    grid-template-columns: repeat(4, 1fr);
  }
  .main-gallery {
    order: 1;
  }
  .pet-info__actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .pet-info__actions a {
    width: 100%;
  }
}
.block-form__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .block-form__wrap {
    flex-direction: column;
    gap: 30px;
  }
}
.block-form__left {
  flex: 1;
}
.block-form__right {
  flex: 1;
}
.block-form__image {
  border-radius: 30px;
  overflow: hidden;
}
.block-form__image img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .block-form__wrap {
    gap: 30px;
  }
  .block-form__left {
    width: 100%;
  }
  .block-form__right {
    width: 100%;
  }
}
.header_menu_mobile {
  display: none;
}

@media screen and (max-width: 1024px) {
  .header_menu_mobile {
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateX(-200%);
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100000000;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
  }
  .header_menu_mobile .container_mobile {
    width: 80%;
    height: 100%;
    max-width: 450px;
    overflow: hidden;
    overflow-y: scroll;
    background-color: #FFD83D;
    padding: 50px 20px;
  }
  .header_menu_mobile .container_mobile .menu_mobile nav > ul > li > a {
    display: block;
    padding: 10px 0;
    font-size: 18px;
    color: #000000;
    border-bottom: 2px solid rgba(0, 0, 0, 0);
    transition: all 0.3s ease;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    opacity: 1;
  }
  .header_menu_mobile .container_mobile .menu_mobile nav > ul > li > a:hover {
    opacity: 0.4;
  }
  .header_menu_mobile .container_mobile .menu_mobile nav ul li {
    position: relative;
  }
  .header_menu_mobile .container_mobile .menu_mobile nav ul li.sub-items::after {
    user-select: none;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f054";
    position: absolute;
    top: 13px;
    right: 0;
    color: #000000;
    font-size: 15px;
  }
  .header_menu_mobile .container_mobile .menu_mobile nav ul li.sub-items.active::after {
    transform: rotate(90deg);
  }
  .header_menu_mobile .container_mobile .menu_mobile .sub-menu {
    display: none;
    padding-left: 20px;
  }
  .header_menu_mobile .container_mobile .menu_mobile .sub-menu li a {
    display: block;
    padding: 7px 0;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    border-bottom: 2px solid rgba(0, 0, 0, 0);
    transition: all 0.3s ease;
  }
  .header_menu_mobile .container_mobile .menu_mobile .sub-menu.active {
    display: block;
  }
  .header_menu_mobile .container_mobile .menu_mobile hr {
    border: none;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 30px 0;
  }
  .header_menu_mobile .menu_mobile__close {
    background-color: #FFD83D;
    width: 50px;
    height: 50px;
    position: absolute;
    right: 15px;
    top: 15px;
    border-radius: 50%;
    border: none;
    outline: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header_menu_mobile .menu_mobile__close svg {
    width: 22px;
    height: 22px;
  }
  .header_menu_mobile .menu_mobile__close svg path, .header_menu_mobile .menu_mobile__close svg rect {
    fill: #000000;
  }
  .header_menu_mobile.active {
    opacity: 1;
    transform: translateX(0);
  }
}

/*# sourceMappingURL=style.css.map */
