:root {
    --c1: #1a1a1a;     /* Preto mais suave */
    --c2: #0077cc;     /* Azul forte, confiável */
    --c3: #f0f2f5;     /* Cinza bem claro */
    --br: 20px;
    --brb: 30px;
    --brm: 5px;
    --bo: #00000010;   /* Borda suave preta */
}
::-webkit-scrollbar-thumb {
    background: black;
    border-radius: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #fff;
    border-radius: var(--br);
  }
  ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  ::placeholder {
    color: #5d5d5d;
}
  html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, 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;
    vertical-align: baseline;
    font: inherit;
    font-size: 100%;
  }
  * {
    transition: all 0.2s;
  }
  *, *:before, *:after {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
  }  
  html {
    height: 100%;
    scroll-behavior: smooth; 
  }
body {
    background-color: var(--c3);
    height: 100%;
    color: #000000;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
}
h1 {
    font-weight: 600;
    font-size: 3rem;
    text-transform: uppercase;
}
h2 {
  font-size: 1.1rem;
  font-weight: 400;
}
ul {padding: 0}
ul li {list-style-type: none}
b {
    font-weight: 600;
    white-space: nowrap;
}
button {
    background-color: var(--c1);
    color: #000000;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}
a {
    color: var(--c1);
    text-decoration: none;
}
textarea {
    width: 100%;
    min-height: 150px;
    padding: 10px;
    border: 1px solid var(--bo);
    background: #22222d;
    font-size: 13px;
    color: #ffffff;
    resize: none;
    box-shadow: 0 0px 10px -5px black inset;
    transition: border-color 0.3s ease;
}

textarea:focus {
    border-color: var(--c1);
    outline: none;
}
.hidden {
    display: none;
}
.button {
    position: relative;
    overflow: hidden;
  }
  .button:hover::after {
    content: "";
    position: absolute;
    top: -3em;
    left: -100%;
    width: 61px;
    height: 150px;
    background: linear-gradient(248deg, #ffffff78, #ffffff00, transparent);
    transform: rotate(30deg);
    z-index: 1000;
    pointer-events: none;
    animation: button_hover 3s ease infinite;
  }
  @keyframes button_hover {
    0% {
        left: -100%;
    }  
    50% {
        left: 200%;
    }
    100% {
        left: -100%;
    }
    }

    @media (max-width:768px) {
        h1 {
          font-size: 2.5rem;
      }
    }

/* Estilo geral do select */
select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 14px;
    width: 100%;
    margin-left: 10px;
    padding: 10px;
    font-size: 16px;
    color: #ffffff;
    background-color: black;
    border: 0;
    outline: none;
    appearance: none;
    cursor: pointer;
    z-index: 1;
}

/* Quando o select está ativo */
select:focus {
    border-color: var(--c1);
    box-shadow: 0 0 10px rgba(157, 255, 0, 0.5);
}

/* Setinha para dropdown */
select::-ms-expand {
    display: none;
}

/* Opções no dropdown */
select option {
    color: #fff; /* Cores das opções no dropdown */
}

/* header */

header {
    background: var(--c2);
    position: relative;
    display: flex;
    width: 100%;
    height: 60px;
    margin: 0 auto;
    padding: 10px;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.logo {
    margin: 0 30px 0 15px;
}
.nav {
    display: none;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.nav li {
    margin: 0 0 0 30px;
    font-size: 20px;
    font-weight: 500;
}
.title {
    display: flex;
    color: #000000;
    width: 100%;
    margin: 6rem auto 6rem;
    padding: 2rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    text-align: center;
}
.title h1 {
    font-weight: 700;
    color: var(--c2);
}
.title h2 {
    max-width: 700px;
    font-size: 1.6rem;
}
@media (max-width:500px) {
    .title {
        margin: 3rem auto 3rem;
        padding: 15px;
    }
    .title h2 {
        font-size: 17px;
    }
}

/* main */

#main-content {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main {
    display: flex;
    padding: 0 15px;
    flex: 1;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.features-section {
    display: grid;
    color: #fff;
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 0 0;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    display: flex;
    text-align: center;
    padding: 1rem;
    border-bottom: 1px dashed var(--c2);
    flex-direction: column;
    justify-content: center;
}

.feature-card i {
    font-size: 2rem;
    color: var(--c2); 
    margin-bottom: 1rem;
}

.feature-card h3 {
  color: #000000;
}

.feature-card p {
  color: #000000 !important;
}


#btnBox {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}
.btnService {
    background: white;
    margin: 0 10px 3rem;
    width: 100%;
    max-width: 400px;
    padding: 0;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    overflow: hidden;
    }
.btnService .titleBox {
    position: relative;
    display: flex;
    width: 100%;
    left: 0;
    bottom: 0;
    padding: 10px;
    flex-direction: column;
    align-items: flex-start;
}
.btnService .titleBox span {
    display: flex;
    margin: 6px 0;
    justify-content: center;
    align-items: center;
}
.btnService .titleBox img {
    background: black;
    max-height: 30px;
    margin-right: 13px;
    padding: 5px;
}
.btnService .titleBox p {
    margin: 6px 0 0;
    font-size: 16px;
    font-weight: 100;
}
#btn1 div {
    background: url(../images/package.webp) no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100px;
}
#btn2 div {
    background: url(../images/flag.webp) no-repeat;
    background-size: 200%;
    background-position: right;
    width: 100%;
    height: 100px;
}

@media (max-width:500px) {
    .btnService {
        width: 100%;
        max-width: 100%;
        margin: 0 0 2rem;
    }
}
#container {
    display: flex;
    position: relative;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}
#container p i {
    display: inline-flex;
    width: 30px;
    height: 30px;
    margin-right: .5rem;
    border: 1px solid var(--bo);
    font-size: 14px;
    align-items: center;
    justify-content: center;
}
.form-container {
    background: #fff;
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 10px;
    padding: 15px;
    overflow: hidden;
}
.form-container:before {
    content: '';
    background: #ffffff0a;
    position: absolute;
    width: 400px;
    height: 300%;
    top: -34rem;
    left: -150%;
    transform: rotate(45deg);
    border-radius: 100%;
    box-shadow: 20rem 12px 10rem 0 #ffffff26;
    animation: showPage 1s linear forwards;
}

@keyframes showPage {
    0% { 
        left: -100%;
    }
    100% { 
        left: 150%;
     }
}
.form-container:first-child:after {
    content: '';
    background: #ffffff;
    background-clip: border-box;
    position: absolute;
    display: none;
    top: -17rem;
    left: -23rem;
    width: 500px;
    height: 500px;
    border-radius: 100% 0;
    transform: rotate(237deg);
    box-shadow: 0 0 26px -6px #0000009e inset;
    z-index: 0;
}
.formTitle {
    position: relative;
    display: flex;
    margin: 0 0 1rem;
    font-size: 17px;
    z-index: 1;
    flex-wrap: wrap;
    justify-content: space-between;
}
.logoForm {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logoForm span {
    margin: 0 0 -20px 10px;
    font-weight: 500;
    font-style: italic;
}
.logoForm img {
    width: 100%;
    min-height: 70px;
    max-width: 230px;
    filter: invert(1);
}
@media (max-width: 500px) {
    .logoForm img {
        width: 100%;
        min-height: 70px;
        max-width: 100px;
    }
}
.flags {
    display: flex;
    margin: 5px 0 0;
    flex-direction: column;
    align-items: flex-end;
}
.flags svg {
    max-width: 25px;
    margin-right: 5px;
}
.form-group {
    display: flex;
    margin-bottom: 15px;
    align-items: center;
}

.form-group label {
    display: block;
    margin: 10px 10px 10px 0;
    font-size: 14px;
    white-space: pre;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: none;
    background-color: var(--c3);
    color: #000000;
    font-size: 16px;
}

/* Estilização específica para input type="date" */
.form-group input[type="date"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--c3);
    padding: 10px;
    color: #000000;
    font-family: inherit;
    cursor: pointer;
    position: relative;
}

/* Estilo para o ícone do calendário nativo */
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    opacity: 0.5;
}

/* Garante que o texto da data fique visível no iOS */
.form-group input[type="date"]::-webkit-datetime-edit {
    color: #000000;
}

/* Estilo para placeholder no iOS */
.form-group input[type="date"]::-webkit-datetime-edit-text,
.form-group input[type="date"]::-webkit-datetime-edit-month-field,
.form-group input[type="date"]::-webkit-datetime-edit-day-field,
.form-group input[type="date"]::-webkit-datetime-edit-year-field {
    color: #000000;
}
/* Checkbox estilizado */
.form-group input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

/* Checkbox quando selecionado */
.form-group input[type="checkbox"]:checked {
    background-color: var(--c2);
    border-color: var(--c2);
}

/* Marca de seleção */
.form-group input[type="checkbox"]::after {
    content: '';
    display: block;
    width: 8px;
    height: 14px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    position: absolute;
    top: 2px;
    left: 5px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Mostrar a marca de seleção ao marcar o checkbox */
.form-group input[type="checkbox"]:checked::after {
    opacity: 1;
}

/* Efeito de foco */
.form-group input[type="checkbox"]:focus {
    outline: 2px solid var(--c1);
    outline-offset: 2px;
}
.checkOption {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;    
}
.checkBox {
    flex-direction: column;
    align-items: flex-start;
    max-width: 45%;
    min-width: 250px;    
}
.date-picker {
    width: 100%;
}
.date-picker>.placeholder::after {
    display: none;
}
@media (max-width:500px) {
    .checkBox {
        max-width: 100%;
    }
    .date-picker {
        display: inline-flex;
        width: 100%;
        background: var(--c3);
        position: relative;
        isolation: isolate;
    }
    
    .date-picker,
    .date-picker>* {
        cursor: text;
        font-size: 17px;
        text-align: center;
    }
    
    .date-picker:focus>.placeholder,
    .date-picker:focus-within>.placeholder,
    .date-picker>input[type="date"]:valid+.placeholder {
      display: none;
    }
}
#add-multiple-locals {
    background: linear-gradient(90deg, transparent, #afb7ef7d, transparent);
    width: 100%;
    margin-top: 10px;
    font-weight: 600;
    filter: drop-shadow(0px 10px 6px black);
    color: #ffffff;
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-image: linear-gradient(to right, #00000000 0%, #ffffff61, #00000000 100%) 1;
    border-radius: 0;
    text-transform: uppercase;
}
#field_textarea {
    display: none;
    flex-direction: column;
}
#field_textarea.show_local {
    display: flex;
}
#available-count {
    display: none;
    width: 100%;
    margin-left: 1rem;
}
.button-group {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.button-group button {
    width: 45%;
    margin: 0 5px;
}

#add-to-cart {
    background: none;
    border: 2px solid;
    color: var(--c2);
}
#add-to-cart i {
    transition: 1s;
}
#add-to-cart:hover i {
    transform: rotate(360deg);
    transition: 1s;
}
#clear-cart {
    background: none;
    border: 2px solid;
    color: red;
}

#cart-items {
    display: none;
    max-height: 300px;
    overflow: auto;
}
.cartItems {
    display: inline-flex;
    height: 100%;
    flex-wrap: wrap;
    align-items: center;
}
.cartItems input {
    max-width: 70px;
    margin-right: 15px;
    padding: 4px 0 4px 10px;
    border: none;
    background-color: #40405a;
    color: #ffffff;
    font-size: 16px;
}
.item-count {
    margin-right: 10px;
}
.city-name, .country-name {
    margin: 0px;
    padding: 5px 10px;
    border: 2px solid;
}
.item-date {
    padding: 5px 20px;
}
.cart-item button {
    background: none;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 2px solid black;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item button:hover {
    color: #ff4433;
}
#btnBuy, #btnDownload {
    display: none;
}
#btnDownload {
    margin: 1rem 0 0;
}
#btnDownload button {
    background: linear-gradient(45deg, var(--c1), #0089ff);
    position: relative;
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    text-shadow: 0 0 10px #00000070;
    overflow: hidden;
    animation: pulse 3s infinite;
}
@keyframes pulse { 
    0% { 
        transform: scale(1);
        border: 1px solid var(--bo);        
     }
    50% { 
        transform: scale(1.03);
        border: 1px solid #00f6ff;
        letter-spacing: 10px;
        box-shadow: 0 0 20px -4px #00ffbf;        
    }
    100% { 
        transform: scale(1);
        border: 1px solid var(--bo);       
     }
}
#btnDownload button:after {
    content: '';
    background: #ffffff42;
    position: absolute;
    width: 100%;
    height: 100%;
    top: -20px;
    left: 0;
    border-radius: 100%;
}

/* Carrinho */

/* Estilo base para os itens do carrinho */
.cart-item {
    background: var(--c3);
    display: flex;
    margin: 8px 0;
    padding: 12px;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

/* Quantidade do item */
.item-count {
    background: #fff;
    min-width: 30px;
    height: 30px;
    padding: 0 8px;
    font-weight: 600;
    border-radius: var(--brm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.notAvailable {
    background: red;
}
/* Estilo para cidades indisponíveis */
.cart-item.unavailable {
    background: #2d2222;
    border-color: #ff444430;
}

.cart-item.unavailable .item-count {
    background: #ff4444;
    color: #fff;
}

.cart-item.unavailable .city-name {
    color: #ff4444;
}

/* Botão de remover */
.cart-item button {
    background: none;
    width: 30px;
    height: 30px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item button:hover {
    background: #ff444420;
    color: #ff4444;
    border-color: #ff4444;
}

/*-------*/

.format-select {
    max-width: 100px;
    border-radius: var(--brb);
}
#download-cart {
    background: var(--c2);
    background-clip: content-box;
    width: 100%;
    height: 50px;
    margin: 1rem 0 0;
    padding: 5px;
    border: 2px solid black;
    font-size: 16px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
}
#total-count {
    display: inline-block;
    width: 100%;
    margin: 20px 0 0;
    text-align: center;
}

#progress-bar {
    background: radial-gradient(#00ffcd, #7a00ff, #00adff);
    background-size: 300% 200%;
    width: 0;
    height: 10px;
    margin: 0 0 10px;
    border-radius: var(--br);
    position: relative;
    overflow: hidden;
    border-right: 1px #ffffff00;
    border-style: solid;
    animation: shimmer 2s linear infinite;
    transition: width 0.3s ease-out;
    box-shadow: 0 0 6px 2px #00ffbc inset, 0px 0px 18px -1px #00c9ff91;
}

#progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: translateX(-100%);
    animation: shine 1.5s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 300% 50%;
    }
}

@keyframes shine {
    100% {
        transform: translateX(100%);
    }
}

/* Container da barra de progresso */
#progress-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: var(--br);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    margin: 20px 0 0;
}

/* Texto do progresso */
#progress-text {
    color: var(--c1);
    font-weight: 600;
    text-align: center;
    margin-top: 5px;
    font-size: 20px;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

/* Campo de exclusão */

#excludeCodes {
    margin: 0;
    flex-direction: column;
    align-items: flex-start;
}
#excludeCodes span {
    margin: 0 0 1rem;
}
#excludeCodes p {
    width: 100%;
    padding: 0 0 16px;
    font-size: 17px;
    border-bottom: 1px solid var(--bo);
}

.repeatCodes {
    position: absolute;
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid var(--c1);
    border-bottom: 1px solid var(--c1);
    transition: opacity .5s ease;
    opacity: 0;
    z-index: -1;
}

.repeatCodes.show {
    position: relative;
    opacity: 1;
    transition: opacity .5s ease;
    z-index: 1;
}

/* Testar códigos */

#tracking-results {
    display: none;
    margin-top: 20px;
    padding: 10px;
    border: 1px solid var(--bo);
    border-radius: var(--br);
}

#tracking-results .result-item {
    display: flex;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    flex-wrap: wrap;
}

#tracking-results .result-item:last-child {
    border-bottom: none;
}

#tracking-codes {
    margin: 0 0 10px;
}

#tracking-results .result-item p {
    display: flex;
    margin: 12px;
    flex-direction: column;
    justify-content: flex-start;
}
#tracking-results .result-item p strong {
    color: var(--c1);
}
#test-tracking {
    background: #ffffff0f;
    width: 100%;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid var(--bo);
    color: #ffffff;
}
.consultCodes {
    background: #ffffff0a;
    width: 100%;
    max-width: 600px;
    margin: 30px 0 0;
    padding: 20px;
}

/* Footer */

.footer {
    background-color: var(--c2);
    color: #ffffff;
    /* REMOVA essa margem grande de cima */
    /* margin: 5rem 0 0; */
    padding: 20px;
    /* text-align center não é necessário aqui */
    border-top: 1px solid var(--bo);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center; /* Alinha verticalmente logo, ícones e crédito */
    gap: 20px; /* espaço entre itens, opcional */
}

.footer-logo {
    width: 150px; /* Largura da logo */
    height: auto; /* para manter proporção */
}

.social-icons {
    display: flex; /* Usar flexbox para os ícones sociais */
    gap: 15px; /* Espaçamento entre os ícones */
}
.social-icon {
    color: #ffffff;
    font-size: 16px;
    transition: color 0.3s;
}
.social-icon:hover {
    color: var(--c1);
}

/* Loading */

#loading-overlay {
    background: #00000033;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    backdrop-filter: blur(8px);
}

.loader-container {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-circle {
    width: 100px;
    height: 100px;
    border: 10px solid #f3f3f3;
    border-top: 10px solid #4caf50; /* Cor da animação */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-percentage {
    position: absolute;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Load 2 */



/* Upload */

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(30 30 33 / 64%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(7px);
}
.loading-container {
    color: white;
    font-size: 24px;
}

/* Páginas fetch */

#pages {
    display: flex;
    position: relative;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}
#render_html, #render_html2 {
    display: flex;
    position: relative;
    width: 100%;
    max-width: 700px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Logos */

:root {
    --color-text: navy;
    --color-bg: papayawhip;
    --color-bg-accent: #ecdcc0;
    --size: clamp(10rem, 1rem + 40vmin, 30rem);
    --gap: calc(var(--size) / 14);
    --duration: 60s;
    --scroll-start: 0;
    --scroll-end: calc(-100% - var(--gap));
  }
  
  @media (prefers-color-scheme: dark) {
    :root {
      --color-text: papayawhip;
      --color-bg: navy;
      --color-bg-accent: #2626a0;
    }
  }
  
  
  .marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
    mask-image: linear-gradient(
      var(--mask-direction, to right),
      hsl(0 0% 0% / 0),
      hsl(0 0% 0% / 1) 20%,
      hsl(0 0% 0% / 1) 80%,
      hsl(0 0% 0% / 0)
    );
  }
  
  .marquee__group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 130%;
    animation: scroll-x var(--duration) linear infinite;
  }
  .marquee__group img {
    max-width: 150px;
    max-height: 40px;
    margin: 0 20px;
}
  
  .marquee--reverse .marquee__group {
    animation-direction: reverse;
    animation-delay: -3s;
  }
  
  @keyframes scroll-x {
    from {
      transform: translateX(var(--scroll-start));
    }
    to {
      transform: translateX(var(--scroll-end));
    }
  }
  
  @keyframes scroll-y {
    from {
      transform: translateY(var(--scroll-start));
    }
    to {
      transform: translateY(var(--scroll-end));
    }
  }
  
  /* Parent wrapper */
  .wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    margin: 5rem 0 0;
    width: 100%;
    z-index: -1;
  }

.text_correios {
    display: inline-flex;
    margin: 7rem auto 0;
    padding: 10px;
    font-size: 25px;
    font-weight: 500;
    text-align: center;
    justify-content: center; 
  }
  
.shipping {
    display: flex;
    margin: 1rem 0 0;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    filter: invert(1) grayscale(1);
}
  .shipping img {
    max-width: 90px;
}