:root {
  --first-color: #ffffff;
  --second-color: #f0f0f0;
  --thert-color: #000000;
  --font-family: 'inter-variable', sans-serif;
  --line-height-text: 1.15;
  --line-height-heading: 1.2;
  --btn-color: #057299;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #057299 var(--first-color);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

*::-webkit-scrollbar {
  width: 8px
}

*::-webkit-scrollbar-track {
  background: var(--first-color);
}

*::-webkit-scrollbar-thumb {
  background-color: var(--first-color);
  border-radius: 10px;
  border: 2px solid var(--first-color)
}

html {
  line-height: var(--line-height-text);
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-family), -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--first-color);
  width: 100%;
  direction: ltr;
  unicode-bidi: embed;
  overflow-wrap: break-word;
  text-overflow: ellipsis;
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  word-break: break-word;
  line-height: var(--line-height-text);
  letter-spacing: 0.01em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: var(--line-height-heading);
  text-wrap: balance;
  letter-spacing: -0.02em;
}


hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: var(--transition-default);
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

strong {
  font-weight: 500;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}


button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

main {
  height: 100dvh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0px;
}

#skcFormBlackFriday {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  max-width: 100%;
}

.get-text-section {
  flex: 1;
  width: 100%;
  max-width: 43dvw;
}

.products-section {
  flex: 1;
  width: 100%;
  max-width: 43dvw;
}

.required-legend {
  display: block;
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  background-color: var(--second-color);
  font-size: clamp(0.8rem, 0.6182rem + 0.9091vw, 1.2rem);
}

input:focus,
select:focus {
  outline: none;
  border-color: var(--btn-color);
}


select {

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevron-down size-4 opacity-50" aria-hidden="true"><path d="m6 9 6 6 6-6"></path></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;

  /* Agregar padding a la derecha para que el texto no se superponga */
  padding-right: 35px;
}


.wrapper-inputs {
  display: flex;
  gap: 1rem;
}

.first-input-form,
.second-input-form {
  flex: 1;
}

.checkLine input {
  display: none;
}


/* Checkbox */
.checkLine {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: clamp(0.7rem, 0.6091rem + 0.4545vw, 0.9rem);
}

.checkLine:nth-child(3) {
  margin-top: 1rem;
}

.checkLine input[type="checkbox"] {
  width: auto;
  margin: 0;
  margin-top: 0.125rem;
}

.checkLine .fake {
  width: 18px;
  height: 18px;
  background: #fff;
  border: 1px solid #d4d4d4;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: -1px
}

.checkLine input:checked+.fake::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  bottom: 3px;
  left: 3px;
  background: var(--btn-color);
  outline: none;
}


.error {
  color: #dc3545;
  font-size: 0.875rem;
  margin: 0.25rem 0 clamp(0.7rem, 0.3364rem + 1.8182vw, 1.5rem);
  display: block;
}


.btn-cadastrar {
  width: 100%;
  padding: 1.2rem 2.4rem;
  background-color: var(--btn-color);
  color: var(--first-color);
  border: none;
  border-radius: 4px;
  font-size: clamp(1rem, 0.7727rem + 1.1364vw, 1.5rem);
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin: 2rem 0;
}

.btn-cadastrar:hover {
  background-color: #057299cc;
}

.btn-cadastrar:disabled {
  background-color: #6c757d;
  cursor: not-allowed;
}

/* Contenedor del slider */
.slider-wrapper {
  width: 100%;
  cursor: pointer;
}

/* Tarjeta de producto */
.slider-wrapper .product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  text-align: center;
  text-transform: uppercase;
  position: relative;
}

/* Imagen del producto */
.slider-wrapper .product img {
  width: 150px;
  height: 250px;
  object-fit: contain;
  object-position: bottom;
}

.slider-wrapper .product img:hover {
  filter: contrast(1.1) saturate(1.5);
}

/* Texto del producto */
.slider-wrapper .product p {
  font-size: 0.9rem;
  font-weight: 700;
}

/* Descripción del producto */
.slider-wrapper .product span {
  display: block;
  font-size: 0.8rem;
  line-height: var(--line-height-text);
  margin-top: 5px;
  ;
}

/* Botón de selección de producto */
.slider-wrapper .product button {
  border: none;
  background-color: rgba(0, 0, 0, 0);
  color: #fff;
  font-size: 8px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
  margin-top: auto;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  position: absolute;
  right: 0;
  cursor: pointer;
}


/* Botones de navegación del swiper */
.swiper-button-next,
.swiper-button-prev {
  top: 50%;
  top: var(--swiper-navigation-top-offset, 50%);
  width: 45px;
  height: auto;
}


.swiper-button-prev circle,
.swiper-button-next circle {
  fill: black;
}

.swiper-button-prev path,
.swiper-button-next path {
  fill: white;
}

/* Descripción del producto - estilo especial */
.x-product__description {
  font-weight: 400;
  text-transform: none;
  margin-top: 0.25rem;
  line-height: 1;
}

#ot-sdk-btn {
  position: fixed;
  bottom: 0px;
  right: 0px;
  z-index: 1000;
  outline: none;
  border: none;
  border-radius: 4px;
}

@media (max-width: 320px) {
  .btn-cadastrar {
    margin: 4px 0 0;
  }
}

@media (max-width: 768px) {

  #skcFormBlackFriday {
    flex-direction: column;
    margin: 1rem;
  }

  .desktop {
    display: none;
  }

  .get-text-section,
  .products-section {
    flex: 1;
    width: 100%;
    max-width: 100dvw;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 25px;
  }

  .swiper-wrapper {
    appearance: none;
  }

  #ot-sdk-btn {
    padding: 3px 8px !important;
    top: 0;
    bottom: auto;
    right: 0;
    left: auto;
    border-radius: 0;
  }
}


@media (min-width: 769px) {
  .mobile {
    display: none;
  }
}