/* Resetear estilos por defecto */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  margin-block-start: 0px;
  margin-block-end: 0px;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
a {
  text-decoration: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Estilos contenedores y columnas en base a móviles mobile firts*/
.img-fluid {
  max-width: 100%;
  height: auto;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm,
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md,
  .container-sm,
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1320px;
  }
}
:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1400px;
}

.row {
  display: flex;
  flex-wrap: wrap;
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.d-flex {
  display: flex !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

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

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

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

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

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

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

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

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

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

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}

:root {
  --color-primario: #202124;
  --color-fondo: #ffffff;
  --color-fondo-hover: #f8f9fa;
  --color-fondo-visited: #5f6368;
  --color-texto-primario: #202124;
  --color-texto-opaco: #5f6368;
  --color-bordes: #dadce0;
  --color-azul: #4285f4;
  --color-rojo: #ea4335;
  --color-verde: #34a853;
  --color-amarillo: #e37400;
}

/* background de colores */
.fondo-azul {
  background-color: var(--color-azul);
}

.fondo-rojo {
  background-color: var(--color-rojo);
}

.fondo-verde {
  background-color: var(--color-verde);
}

.fondo-amarillo {
  background-color: var(--color-amarillo);
}

.texto-blanco {
  color: #ffffff;
}

.sombra {
  -webkit-box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.3s);
  transition: box-shadow 1s ease;
}

.sombra:hover,
.sombra:active {
  -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  -moz-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 1s ease;
}

/* span de colores */
span.azul {
  color: var(--color-azul);
}

span.rojo {
  color: var(--color-rojo);
}

span.verde {
  color: var(--color-verde);
}

span.amarillo {
  color: var(--color-amarillo);
}

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

.pb-extra-grande {
  padding-bottom: 96px;
}

.pt-extra-grande {
  padding-top: 96px;
}

.pb-grande {
  padding-bottom: 64px;
}

.pt-grande {
  padding-top: 64px;
}

.pt-normal {
  padding-top: 36px;
}

.pt-medio {
  padding-top: 18px;
}

.pb-normal {
  padding-bottom: 36px;
}

.pb-medio {
  padding-bottom: 18px;
}

.mt-medio {
  margin-top: 18px;
}
.mt-normal {
  margin-top: 36px;
}

.mt-grande {
  margin-top: 64px;
}

.mt-extra-grande {
  margin-top: 96px;
}

.mb-medio {
  margin-bottom: 18px;
}

.mb-grande {
  margin-bottom: 64px;
}

.mb-extra-grande {
  margin-bottom: 96px;
}

/* Línea divisora arriba o abajo para elementos */
.borde-bajo {
  border-bottom: 1px solid var(--color-bordes);
}

.borde-arriba {
  border-top: 1px solid var(--color-bordes);
}

html,
body {
  height: 100%;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  color: var(--color-texto-primario);
  font-size: 16px;
  line-height: 1.444;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  word-wrap: normal;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html body strong,
html body b {
  font-weight: 500;
}

/* Darle diseño al scrollbar */
/* Estilo para navegadores WebKit/Blink (Chrome, Edge, Safari, Opera) */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--color-texto-primario);
}

/*::-webkit-scrollbar-track-piece {
  background: var(--color-texto-primario);
}*/

::-webkit-scrollbar-button {
  background: var(--color-texto-opaco);
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-fondo);
  border-radius: 5px;
  border: 1px solid var(--color-texto-opaco);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-azul);
}

::-webkit-scrollbar-corner {
  background: var(--color-texto-primario);
}

/* Chrome/Edge con prefijo (a partir de la version 121)*/
/* Estilo estándar (Firefox) */
html {
  -webkit-scrollbar-color: var(--color-texto-primario) var(--color-texto-opaco);
  -webkit-scrollbar-width: auto;
  scrollbar-color: var(--color-azul);
  scrollbar-width: auto;
}

.sin-margen {
  margin: 0;
}

.sin-padding {
  padding: 0;
}

.padding-section {
  padding-right: 5vw;
  padding-left: 5vw;
}

.oculto-celular {
  display: none;
}

.margin-top-celular {
  margin-top: 2rem;
}

button {
  appearance: auto;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  text-rendering: auto;
  color: var(--color-texto-primario);
  background-color: transparent;
  letter-spacing: normal;
  word-spacing: normal;
  line-height: 1.444;
  text-transform: none;
  text-indent: 0px;
  text-shadow: none;
  display: inline-block;
  text-align: center;
  align-items: flex-start;
  cursor: pointer;
  box-sizing: border-box;
  margin: 0em;
  padding-block: 1px;
  padding-block-start: 0;
  padding-block-end: 0;
  padding-inline: 6px;
  border-width: 2px;
  border-style: outset;
  border: none;
  border-image: initial;
}

/* Estilos para el botón Volver Arriba */
.btn-volver-arriba {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-azul, #4285f4);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
  transform: translateY(20px);
}

.btn-volver-arriba.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btn-volver-arriba:hover {
  transform: translateY(-5px);
  background-color: var(--color-azul, #4285f4);
}

.btn-volver-arriba:focus {
  outline: 3px solid var(--color-fondo-visited, #5f6368);
  transform: translateY(-5px);
}

.btn-volver-arriba:active {
  transform: translateY(0);
}

.btn-volver-arriba svg {
  fill: white;
}

/* Estilos para el indicador de carga de reCAPTCHA */
.loading-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 10;
  border-radius: 4px;
}

.loading-indicator span {
  padding: 8px 16px;
  background-color: #4285f4;
  color: white;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}

/* Estilos para mensajes de error y éxito de reCAPTCHA */
.mensaje-error {
  background-color: #f8d7da;
  color: #721c24;
  padding: 10px;
  margin: 10px 0;
  border-radius: 4px;
  text-align: center;
  font-weight: 500;
}

.mensaje-exito {
  background-color: #d4edda;
  color: #155724;
  padding: 10px;
  margin: 10px 0;
  border-radius: 4px;
  text-align: center;
  font-weight: 500;
}

/* Asegurar que los formularios tengan posición relativa para el indicador de carga */
form {
  position: relative;
}

/* Estilos para campos con error */
input.error,
textarea.error,
select.error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.error-message {
  color: #dc3545;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}

h1 {
  font-family: "Google Sans", Roboto, Arial, Helvetica, sans-serif;
  font-size: 30px;
  line-height: 1.2em;
  font-weight: 500;
  letter-spacing: 0;
  word-wrap: normal;
}

h2 {
  font-family: "Google Sans", Roboto, Arial, Helvetica, sans-serif;
  font-size: 25px;
  line-height: 35px;
  font-weight: 500;
  display: block;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-bottom: 0.83em;
  padding-top: 0.83em;
  unicode-bidi: isolate;
}

h3 {
  font-family: "Google Sans", Roboto, Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  display: block;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-bottom: 0.83em;
  padding-top: 0.83em;
  unicode-bidi: isolate;
}

h4 {
  font-family: "Google Sans", Roboto, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  display: block;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-bottom: 0.83em;
  padding-top: 0.83em;
  unicode-bidi: isolate;
}

.una-linea {
  white-space: nowrap;
}

.texto-grande {
  font-size: 2.5rem;
  font-weight: 800;
}

.texto-muy-grande {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 3rem;
}

.boton-contacto {
  display: inline-block;
  width: auto;
  margin-top: 16px;
  background-color: var(--color-azul);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  transition: background-color 1s;
}

.boton-contacto:hover {
  background-color: #1a73e8;
  transition: background-color 1s;
}

.mercadopago-button,
.paypal-button,
.boton-link-blanco {
  font-family: Roboto, Arial, Helvetica, sans-serif !important;
  margin-top: 16px !important;
  margin-right: 16px !important;
  line-height: 1.15rem !important;
  background: var(--color-fondo) !important;
  background-color: var(--color-fondo) !important;
  color: var(--color-primario) !important;
  padding: 12px 24px !important;
  border-radius: 26px !important;
  border: 1px solid var(--color-bordes) !important;
  cursor: pointer !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  -moz-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 1s ease, background-color 0.5s !important;
}

.mercadopago-button:hover,
.mercadopago-button:active,
.paypal-button:hover,
.paypal-button:active,
.boton-link-blanco:hover,
.boton-link-blanco:active {
  -webkit-box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.3s);
  transition: box-shadow 1s ease, background-color 0.5s !important;
}

.paypal-button img {
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
}

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

.logo-chibcha {
  height: 20px;
}

#imagen-header img {
  max-width: 100%;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid var(--color-bordes);
  box-sizing: border-box;
  color: var(--color-texto-primario);
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 14px;
}

header {
  position: relative;
  z-index: 5;
  background-color: var(--color-fondo);
}

/* CSS del menú de la página web */
.menu {
  background-color: var(--color-fondo);
  color: var(--color-texto-opaco);
  /*position: fixed; /* Fijar el menú en la parte superior */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100; /* Asegurar que esté por encima de otros elementos */
}

.menu-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1200px; /* Ancho máximo del contenido */
  margin: 0 auto; /* Centrar el contenedor */
}

.logo {
  font-weight: bold;
  text-decoration: none;
  padding: 0;
  margin-right: 36px;
}

/* --- Estilos del Menú Principal --- */
.menu-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.menu-links li {
  margin: 0 8px;
}

.menu-links a {
  border: 1px solid transparent;
  color: var(--color-texto-opaco);
  text-decoration: none;
  font-weight: 500;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding: 12px 12px;
  display: block;
  border-radius: 4px;
  letter-spacing: 0.25px;
  word-wrap: initial;
  -webkit-transition: background-color 0.2s, color 0.2s, -webkit-box-shadow 0.2s;
  transition: background-color 0.2s, color 0.2s, -webkit-box-shadow 0.2s;
  -o-transition: background-color 0.2s, box-shadow 0.2s, color 0.2s;
  transition: background-color 0.2s, box-shadow 0.2s, color 0.2s;
  transition: background-color 0.2s, box-shadow 0.2s, color 0.2s,
    -webkit-box-shadow 0.2s;
}

.menu-links a:hover {
  background-color: var(--color-fondo-hover);
  color: var(--color-primario);
}

/* --- Estilos del Submenú --- */
.submenu {
  display: none;
  position: absolute;
  background-color: var(--color-fondo);
  border: 1px solid var(--color-bordes);
  border-radius: 4px;
  list-style: none;
  padding: 0;
  width: 250px; /* Ancho del submenú */
  z-index: 101; /* Asegurar que el submenú esté encima del contenido principal */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.has-submenu:hover .submenu {
  display: block;
}

.submenu li {
  margin: 0;
}

.submenu a {
  padding: 10px 20px;
  display: block;
  border-radius: 0;
  border-bottom: 1px solid var(--color-bordes);
}

.submenu a:hover {
  background-color: var(--color-fondo-hover);
  color: var(--color-primario);
}

.submenu li:last-child a {
  border-bottom: none;
}

/* --- Estilos del Menú Hamburguesa (Responsive) --- */
.hamburger {
  display: none; /* Ocultar en pantallas grandes */
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-texto-opaco);
  margin: 5px 0;
  transition: 0.4s;
}

/* --- Dieseños de imagenes utilizadas en diferentes partes de la web --- */
.imagenes-servicios {
  min-width: 200px;
  max-width: 100%;
}

.imagenes-paginas-disenos-web {
  border: 0.2px solid #777;
  width: 350px;
  min-width: 200px;
  max-width: 100%;
}

.logotipos-varios {
  width: 150px;
}

.capsulas {
  border-radius: 26px;
  padding: 10px;
  margin-right: 10px;
}

/* --- Media Queries (Responsive) --- */
@media (max-width: 768px) {
  .menu-links {
    display: none; /* Ocultar menú principal */
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 60px; /* Ajusta según la altura de tu menú */
    left: 0;
    background-color: var(--color-fondo);
    border: 1px solid var(--color-bordes);
    z-index: 100;
  }

  .menu-links.active {
    display: flex; /* Mostrar menú al hacer clic en la hamburguesa */
  }

  .menu-links li {
    margin: 0;
    text-align: center;
    border-bottom: 1px solid var(--color-bordes);
  }

  .menu-links li:last-child {
    border-bottom: none;
  }

  .hamburger {
    display: block; /* Mostrar la hamburguesa */
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .has-submenu:hover .submenu {
    display: none; /* Ocultar submenú en mobile por defecto */
  }

  .submenu {
    position: static; /* Flujo normal del documento */
    width: 100%;
    display: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background-color: var(--color-fondo-hover);
  }

  .submenu.active {
    display: block !important; /* Mostrar submenú al hacer clic en "Servicios" */
  }

  .has-submenu.active .submenu {
    display: block !important; /* Asegurar que el submenú se muestre cuando el padre está activo */
  }

  .submenu a {
    padding-left: 30px; /* Indentación para indicar que es un subítem */
  }

  .has-submenu > a::after {
    content: "+"; /* Indica que hay un submenú */
    margin-left: 5px;
  }

  .has-submenu.active > a::after {
    content: "-"; /* Cambiar indicador cuando está abierto */
  }

  .btn-volver-arriba {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }

  .oculto-celular {
    display: none;
  }
}

.contacto-directo {
  width: 110px;
}

.cabecera {
  position: relative;
  background-color: var(--color-fondo);
  z-index: 3;
}

.hero-content {
  background-color: var(--color-fondo);
  -webkit-box-shadow: 0px 10px 8px -8px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 10px 8px -8px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 10px 8px -8px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 3;
}

/* Pestañas de contacto */
/* Estilos generales */
#contenedor-pestanas {
  position: relative;
  padding-right: 32px;
  padding-left: 32px;
  margin-right: 16px;
  margin-left: 16px;
  top: -100vh;
  /*height: 100vh;*/
  max-height: 0;
  left: 0;
  transition: top 1s ease-in-out, max-height 1s ease-in-out; /* Transición suave */
  z-index: 0; /* Asegura que esté por encima de otros elementos */
  overflow: hidden;
  /* Sombra interna para simular profundidad */
  box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
  background-color: #eee;
}

#contenedor-pestanas.oculto {
  top: -100vh; /* Lo oculta arriba */
  max-height: 0;
}

#contenedor-pestanas.visible {
  top: 0; /* Lo muestra en la posición normal */
  max-height: 150vh;
}

.cerrar-x {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 20px;
  color: var(--color-texto-opaco);
  font-weight: 700;
}

.cerrar-x:hover {
  transform: rotate(180deg);
  color: var(--color-texto-primario);
}

.cerrar-x:active {
  color: var(--color-texto-rojo);
}

/* Estilos para las pestañas */
.pestanas {
  list-style: none;
  padding: 0;
  padding-top: 36px;
  margin: 0;
  margin-top: 32px;
  display: flex; /* Usamos flexbox para alinear las pestañas */
}

.pestana {
  padding: 10px 20px;
  background-color: #eee;
  border: 1px solid #ddd;
  cursor: pointer;
}

#cerrar-pestanas {
  float: right;
  margin-top: 20px;
  margin-right: 20px;
  margin-bottom: 60px;
  border: 1px solid var(--color-bordes);
  border-radius: 25px;
  height: 30px;
  width: 30px;
}

.pestana.activa {
  background-color: #ddd;
  border-bottom: 1px solid transparent; /* Quitamos el borde inferior en la pestaña activa */
  font-weight: 500;
}

/* Estilos para el contenido */
.contenidos {
  border: 1px solid #ddd;
  padding: 32px;
  margin-bottom: 32px;
  background-color: #ddd;
  box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.contenido {
  display: none; /* Ocultamos todos los contenidos por defecto */
}

.contenido.activo {
  display: block; /* Mostramos solo el contenido activo */
}

.razones-para-tener-web {
  position: relative;
  z-index: 5;
  background-color: var(--color-fondo);
  padding-top: 64px;
  margin-top: -1px;
}

/* CSS de acordeon */
.razones {
  border: 1px solid var(--color-bordes);
  padding-top: 0px;
  max-width: 99%;
}

.razones-para-tener-web h2 {
  padding-top: 0;
  padding-bottom: 0;
}

/* Estilos del acordeon de razones */
.acordeon {
  background-color: #eee;
  cursor: pointer;
  padding: 16px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  transition: none;
}

.acordeon:hover {
  background-color: #ccc;
  transition: background-color 0.5s; /*Solo al hacer hover*/
}

.panel {
  padding: 0px;
  background-color: var(--color-fondo);
  border: 1px solid var(--color-bordes);
  overflow: hidden;
  max-height: 0; /* Inicialmente la altura máxima es 0 */
  transform-origin: top; /* Para que la escala se haga desde arriba */
  transition: transform 1s linear;
  margin: 16px;
}

.acordeon:after {
  content: "\002B";
  color: #777;
  float: right;
  margin-left: 5px;
}

.acordeon.activo:after {
  content: "\2212";
}

/* Para los paneles activos */
.panel.activo {
  max-height: 500px; /* Un valor suficientemente grande para el contenido */
  padding: 16px;
}

.notas {
  font-size: 14px;
  color: var(--color-texto-opaco);
}

.politica-privacidad {
  /* Aseguramos que el contenedor ocupe el ancho completo disponible */
  width: 100%;
}
.checkbox-label-container {
  display: flex; /* Activamos flexbox */
  align-items: flex-start; /* Alineamos los elementos al inicio en el eje vertical (arriba) */
}

section .contenidos .contenido .notas label[for="politicaPrivacidadLlamada"] a,
section .contenidos .contenido .notas label[for="politicaPrivacidadEmail"] a,
section .contenidos .contenido .notas label[for="politicaPrivacidadReunion"] a,
#formularioDeContacto label[for="politicaPrivacidadContacto"] a {
  color: var(--color-azul);
}
/* Portfolio en el home y en la página de Portfolio */
#portafolio {
  display: grid;
  grid-gap: 1rem; /* Aumentamos el gap entre cards */
  padding: 1rem; /* Aumentamos el padding del contenedor */
  max-width: 1024px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Ajustes responsive */
@media (min-width: 768px) {
  #portafolio {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem; /* Mantenemos el mismo gap en tablets */
  }
}

@media (min-width: 992px) {
  #portafolio {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem; /* Mantenemos el mismo gap en desktop */
  }
}

/* Ajustamos los márgenes de las cards */
.card {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 3rem;
  padding-top: 1rem;
  width: 100%;
  height: 300px; /* Ajustado para mejor proporción */
  text-align: center;
  color: whitesmoke;
  background-color: whitesmoke;
  width: calc(100% - 1rem); /* Ajustamos el ancho para compensar los márgenes */
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1),
    0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1),
    0 16px 16px rgba(0, 0, 0, 0.1);
}

/* Añadimos un overlay gradiente oscuro que será más visible al hacer hover */
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  opacity: 0.3;
  transition: opacity var(--d) var(--e);
}

/* Al hacer hover el gradiente se hace más oscuro */
.card:hover::before {
  opacity: 0.8;
}

/* Estilos para el título */
.content > .title {
  /* ...existing code... */
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* Estilos para el texto copy */
.content > .copy {
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  margin-bottom: 1rem;
}

.content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 1rem;
  transform: translateY(calc(100% - 4.5rem));
  transition: transform var(--d) var(--e);
  z-index: 1;
}

.content > * {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform var(--d) var(--e), opacity var(--d) var(--e);
  position: relative;
  z-index: 2;
}

.content > .title {
  opacity: 1;
  transform: translateY(0);
}

.card:hover .content {
  transform: translateY(0);
}

.card:hover .content > * {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--d) / 8);
}

/* Variables necesarias si no están definidas */
:root {
  --d: 700ms;
  --e: cubic-bezier(0.19, 1, 0.22, 1);
}

/* Ajustes responsive */
@media (min-width: 768px) {
  #portafolio {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  #portafolio {
    grid-template-columns: repeat(4, 1fr);
  }
}
#servicios {
  position: relative;
  background-color: var(--color-fondo);
  z-index: 3;
}

.contactar-por-tel,
.contactar-por-email,
.contactar-whatsapp {
  border: 2px solid var(--color-texto-opaco);
  padding-right: 15px;
  padding-top: 25px;
  padding-left: 15px;
  padding-bottom: 10px;
  border-radius: 35px;
}

.contactar-por-tel:hover {
  border: 2px solid var(--color-amarillo);
  transition: border 0.5s;
}

.contactar-por-email:hover {
  border: 2px solid var(--color-azul);
  transition: border 0.5s;
}

.contactar-whatsapp:hover {
  border: 2px solid var(--color-verde);
  transition: border 0.5s;
}

.svg-telefono,
.svg-email,
.svg-whatsapp {
  fill: var(--color-texto-opaco);
}

.contactar-por-tel:hover .svg-telefono path {
  fill: var(--color-amarillo); /* Cambia el color a verde al hacer hover */
  transition: fill 0.5s; /* Transición suave */
}

.contactar-por-email:hover .svg-email path {
  fill: var(--color-azul); /* Cambia el color a verde al hacer hover */
  transition: fill 0.5s; /* Transición suave */
}

.contactar-whatsapp:hover .svg-whatsapp path {
  fill: var(--color-verde); /* Cambia el color a verde al hacer hover */
  transition: fill 0.5s; /* Transición suave */
}

.cta {
  position: relative;
  background-color: var(--color-fondo);
  z-index: 5;
}

/* Formulario de contacto */
#formularioDeContacto {
  position: relative;
  top: -100vh;
  max-height: 0;
  left: 0;
  transition: top 1s ease-in-out, max-height 1s ease-in-out; /* Transición suave */
  z-index: 0; /* Asegura que esté por encima de otros elementos */
  overflow: hidden;
  /* Sombra interna para simular profundidad */
  box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
  background-color: #eee;
}

/* Estilos para el contenido */
.contenidos-contacto {
  border: 1px solid #ddd;
  background-color: #ddd;
  box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.contenidos-contacto .modos-de-contacto {
  padding-top: 64px;
}

.contenidos-contacto h3 {
  text-align: center;
  padding-left: 16px;
  padding-right: 16px;
}

.contenidos-contacto form {
  padding-right: 16px;
  padding-left: 16px;
  padding-bottom: 16px;
}

#formularioDeContacto.oculto {
  top: -100vh; /* Lo oculta arriba */
  max-height: 0;
}

#formularioDeContacto.mostrar {
  top: 0; /* Lo muestra en la posición normal */
  max-height: 160vh;
}

#cerrar-contacto {
  float: right;
  margin-top: 10px;
  margin-right: 10px;
  margin-bottom: 60px;
  border: 1px solid var(--color-bordes);
  border-radius: 25px;
  height: 30px;
  width: 30px;
}

.tecnologias {
  background-color: var(--color-bordes);
  font-weight: 600;
  padding: 5px 10px;
  margin: 5px;
  border-radius: 5px;
  font-family: "Courier New", Courier, monospace;
  border: 1px solid #d3d3d3;
  display: inline-block; /* Para que los márgenes se apliquen correctamente */
}

.tecnologias-oculta-celular {
  background-color: var(--color-bordes);
  font-weight: 600;
  padding: 5px 10px;
  margin: 5px;
  border-radius: 5px;
  font-family: "Courier New", Courier, monospace;
  border: 1px solid #d3d3d3;
  display: none; /* Para que los márgenes se apliquen correctamente */
}

.texto-hundido {
  color: #666;
  text-align: center;
  font-size: 14px;
  margin: 0;
  padding: 15px 10px;
  background-color: #e5e5e5;
  border-radius: 25px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: all 1s ease;
}

.texto-hundido:hover {
  background-color: var(--color-fondo);
  box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.2);
  text-shadow: 0 0px 0 rgba(255, 255, 255, 0.5);
  transition: all 1s ease;
}

/* Portfolio */
#portfolio {
  position: relative;
  background-color: var(--color-fondo);
  z-index: 4;
}

/* Nuevos estilos para el portfolio */
.filtros-portfolio {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.filtro-btn {
  font-family: Roboto, Arial, Helvetica, sans-serif !important;
  margin-top: 5px !important;
  margin-right: 2px !important;
  line-height: 1.15rem !important;
  background: var(--color-fondo) !important;
  background-color: var(--color-fondo) !important;
  color: var(--color-primario) !important;
  padding: 12px 24px !important;
  border-radius: 26px !important;
  border: 1px solid var(--color-bordes) !important;
  cursor: pointer !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  -moz-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 1s ease, background-color 0.5s !important;
}

.filtro-btn:hover,
.filtro-btn:active {
  background-color: var(--color-primario) !important;
  color: var(--color-fondo) !important;
  -webkit-box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.3s);
  transition: box-shadow 1s ease, background-color 0.5s !important;
}

.filtro-btn.active {
  background-color: var(--color-primario) !important;
  color: var(--color-fondo) !important;
  -webkit-box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.3s);
  transition: box-shadow 1s ease, background-color 0.5s !important;
}

/* Para las cards que se ocultan */
.card.hidden {
  display: none;
}

.port-tecnologias {
  background-color: var(--color-bordes);
  font-weight: 600;
  border-radius: 3px;
  font-family: "Courier New", Courier, monospace;
  font-size: 13px;
  border: 1px solid #d3d3d3;
  display: inline-block; /* Para que los márgenes se apliquen correctamente */
}

#port-cattleya {
  background-image: url(../images/portfolio/catthleya.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

#port-baraktic {
  background-image: url(../images/portfolio/baraktic.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

#port-villetaes {
  background-image: url(../images/portfolio/villetaes.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

#port-redmia {
  background-image: url(../images/portfolio/redmia.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

#port-digicoms {
  background-image: url(../images/portfolio/digicoms.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

#port-habana93 {
  background-image: url(../images/portfolio/habana93.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

#port-ideas24-7 {
  background-image: url(../images/portfolio/ideas24-7.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

#port-freddy-hernandez {
  background-image: url(../images/portfolio/freddyhernandez.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

#port-vehiculos {
  background-image: url(../images/portfolio/vehiculosycamiones.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

#port-transportes {
  background-image: url(../images/portfolio/transportesholding.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

#port-costosabc {
  background-image: url(../images/portfolio/costosabc.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

#port-riesgopsicosocial {
  background-image: url(../images/portfolio/psicostudio.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

#port-pqabogados {
  background-image: url(../images/portfolio/pqabogados.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

#port-domicilios {
  background-image: url(../images/portfolio/domiciliosvilleta.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

#port-abei {
  background-image: url(../images/portfolio/abei.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

#port-proservi {
  background-image: url(../images/portfolio/proservi.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

.servicio h3 {
  margin: 3px;
  padding: 3px 6px;
  border-radius: 26px;
  font-size: 13px;
}

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

.icon-check-si {
  height: 30px;
}
.icon-check-no {
  height: 30px;
}

footer {
  background: var(--color-fondo-hover);
  text-align: center;
  padding-bottom: 48px;
}

footer a {
  color: var(--color-texto-opaco);
  font-weight: 500;
}

footer a:hover {
  color: var(--color-texto-primario);
}

.email-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.copy-btn {
  background: none;
  border: none;
  padding: 0px;
  cursor: pointer;
  border-radius: 10px;
}

.copy-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.copy-btn svg {
  fill: var(--color-azul);
}

.copy-btn.copied svg {
  fill: var(--color-texto-primario);
}

.titulo-social {
  margin-right: 12px;
}

#redes-footer {
  display: flex;
  align-items: center;
  justify-content: center;
}

#svg-linkedin,
#svg-youtube,
#svg-tiktok {
  fill: #000000;
}

.iconos-contacto {
  fill: var(--color-texto-primario);
}

.links-redes {
  margin: 0;
  padding: 0;
  width: 48px;
  height: 48px;
  margin-right: 8px;
  text-decoration: none;
  background-color: transparent;
  transition: background-color 1s ease;
}

.links-redes:hover {
  background-color: #e8eaed;
  transition: background-color 1s ease;
}

footer ul li {
  margin-bottom: 12px; /* Añade un margen inferior de 1.5rem a cada <li> */
}

footer ul li:last-child {
  margin-bottom: 0; /* Elimina el margen inferior del último <li> para evitar espacio extra */
}

#cibcha-reservados {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px; /* Añade un espacio de 64px entre elementos, reemplazando el padding-left en .elemento-chibcha-footer */
}

#cibcha-reservados img {
  margin-bottom: 24px;
}

.elemento-chibcha-footer a {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Estilos para la tabla de planes */
.planes-tabla {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 16px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.planes-tabla caption {
  font-size: 0.9em;
  margin-bottom: 10px;
  color: #666;
  text-align: left;
}

.planes-tabla thead {
  background-color: #f8f9fa;
  border-bottom: 2px solid #dee2e6;
}

.planes-tabla th,
.planes-tabla td {
  padding: 12px 15px;
  text-align: center;
  border-bottom: 1px solid #dee2e6;
}

.planes-tabla th {
  font-weight: bold;
  color: #495057;
}

.planes-tabla th[scope="row"] {
  text-align: left;
  background-color: #f8f9fa;
}

.planes-tabla tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

.planes-tabla img {
  width: 20px;
  height: 20px;
}

/* Estilos responsive para la tabla */
@media (max-width: 767px) {
  .planes-tabla {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
    border-radius: 0;
  }

  .planes-tabla caption {
    font-size: 0.8em;
  }

  .planes-tabla th,
  .planes-tabla td {
    padding: 8px 10px;
    font-size: 14px;
  }
}

/* Media query para tablets */
@media (min-width: 768px) {
  .oculto-celular {
    display: inline;
  }

  .margin-top-celular {
    margin-top: 0rem;
  }

  .oculto-md {
    display: none;
  }

  .tecnologias-oculta-celular {
    display: inline-block; /* Para que los márgenes se apliquen correctamente */
  }

  h1 {
    font-size: 38.5px;
    line-height: 1.2em;
    letter-spacing: -0.5px;
  }

  h2 {
    font-size: 29px;
    line-height: 40.5px;
  }

  h3 {
    font-size: 24px;
    line-height: 32px;
  }

  h4 {
    font-size: 20px;
    line-height: 28px;
  }

  .razones {
    padding: 16px;
    max-width: 99%;
  }
  .pestanas {
    margin-top: 0px;
  }

  input[type="text"],
  input[type="tel"],
  input[type="email"],
  input[type="date"],
  select,
  textarea {
    width: 350px;
  }

  #cerrar-contacto {
    margin-top: 25px;
    margin-right: 25px;
  }

  .contenidos-contacto h3 {
    text-align: left;
  }

  .servicio h3 {
    margin: 3px;
    padding: 5px 15px;
    border-radius: 26px;
    font-size: 24px;
  }

  .inteligencias-artificiliales {
    text-align: left;
  }

  footer {
    text-align: left;
    padding-bottom: 0px;
  }

  #redes-footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  #cibcha-reservados {
    display: flex;
    flex-direction: row;
    align-items: center; /* Centra los elementos verticalmente */
    gap: 64px; /* Añade un espacio de 64px entre elementos, reemplazando el padding-left en .elemento-chibcha-footer */
  }

  #cibcha-reservados img {
    margin-bottom: 0px;
  }

  .imagenes-paginas-disenos-web {
    width: 400px;
  }
}

/* Media query para pantallas grandes */
@media (min-width: 992px) {
  .imagenes-paginas-disenos-web {
    width: 500px;
  }

  .razones-para-tener-web h3 {
    min-height: 100px;
  }

  #formularioDeContacto {
    /* Sombra interna para simular profundidad */
    box-shadow: none;
    background-color: var(--color-fondo);
  }
}

/* Media query para pantallas grandes */
@media (min-width: 1200px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 33px;
    line-height: 46px;
  }

  h3 {
    font-size: 28px;
    line-height: 36px;
  }

  .padding-section {
    padding-right: 0vw;
    padding-left: 0vw;
  }

  #contenedor-formulario-prestanas {
    padding-right: 32px;
    padding-left: 32px;
    /* Sombra interna para simular profundidad */
    box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
    background-color: #eee;
  }

  .imagenes-paginas-disenos-web {
    width: 600px;
  }
}

/* Media query para pantallas grandes */
@media (min-width: 1800px) {
  h1 {
    font-size: 77px;
  }
}
