.container-how-to-rental {
    color: #fff;
}

.container-block {
    font-family: "Inter", sans-serif !important;
    width: 100%;
    position: relative;
}

.title-how-to-rental {
    font-size: 140px;
    font-weight: bold;
    text-align: center;
    padding: 40px 0px;
    font-family: "greycliff_cfbold";
    text-transform: none;
    color: var(--black-color);
}

.description-how-to-rental {
    font-size: 22px;
    text-align: center;

    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #000;
    width: 100%;
    display: block;
    text-transform: uppercase;
    padding: 5px 0px;
    letter-spacing: 5px;
}

.container-lists {
    width: 100%;
    margin: 60px auto;
    text-align: center;
    padding: 20px;
    position: relative;
    max-width: 1300px;
}

.title {
    font-weight: 700;
    color: #000;
    position: relative;
    line-height: 29px;
    top: 100px;
    display: flex;
    justify-content: center;
    width: 100%;
    position: absolute;
}

.title-full {
    display: block;
}

.title-mobile {
    display: none;
}

.circles {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
}

.circle {
    border: 1px solid red;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 10px;
    text-align: left;
    flex-wrap: wrap;
    color: #000;
    flex-direction: column;
    opacity: 0;
}

.circle h2 span {
    font-weight: 400;
}

.circle-content {
    display: flex;
    justify-content: flex-start;
    letter-spacing: -3px;
    line-height: 30px;
    margin-bottom: 20px;
}

.circle .sub-content {
    margin: 0;
    font-size: 26px;
    line-height: 25px;
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    letter-spacing: -2px;
}

.container-locar {
    max-width: 991px;
    margin: 350px auto 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.container-locar.animated {
    opacity: 1;
    transform: translateY(0);
}

.texto-formas-locar {}

.texto-formas-locar h2,
.texto-formas-locar h5 {
    opacity: 0;
}

.texto-formas-locar h2.animated {
    animation: fadeInLeft 0.8s ease forwards;
}

.texto-formas-locar h2.animated.last {
    animation: fadeInRight 0.8s ease forwards;
}

.texto-formas-locar h5.animated {
    animation: fadeInLeft 0.8s ease forwards 0.3s;
}

.image-formas-locar img {
    width: 100%;
    max-width: 380px;
}

.container-terceira-secao {
    width: 100%;
    margin: 150px 0px;
    display: flex;
    align-items: center;
    position: relative;
}

.icone-lateral {
    width: 30%;
    background: #f9f9f9;
    padding: 90px 90px 90px 0px;
    display: flex;
    align-items: center;
    justify-content: end;
    -webkit-border-top-right-radius: 234px;
    -webkit-border-bottom-right-radius: 234px;
    -moz-border-radius-topright: 234px;
    -moz-border-radius-bottomright: 234px;
    border-top-right-radius: 234px;
    border-bottom-right-radius: 234px;
}

.icone-lateral img {
    width: 100%;
    max-width: 180px;
}

.content-expansive {
    width: 70%;
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    flex-direction: column;
    padding-left: 60px;
}

/* ACCORDION */
.accordion-general {
    overflow: hidden;
    background-color: white;
    width: 60%;
}

.number-accordion-container {
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
    font-size: 18px;
    padding: 20px 0px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.number-accordion-container.animated {
    opacity: 1;
    transform: translateX(0);
}

.number-accordion {
    font-size: 35px;
    font-weight: 400;
    color: #000;
    margin-right: 50px;
}

.accordion-general-header {
    background-color: #f9f9f9;
    color: #000;
    padding: 0px 40px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 800;
    font-size: 22px;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.accordion-general-header.animated {
    opacity: 1;
    transform: translateY(0);
}

.accordion-general-header:hover {
    background-color: #eeecec;
}

.number-accordion-container:hover+.accordion-general-header {
    background-color: #eeecec;
}

.number-accordion-container::after {
    content: "\f077";
    font-size: 20px;
    position: relative;
    display: flex;
    color: #eaeaea;
    align-items: center;
    height: 100%;
    font-family: "Font Awesome 6 Free";
    margin-left: 45px;
    top: 0px;
    font-weight: bolder;
    transition: transform 0.3s ease;
}

.accordion-general.active .number-accordion-container::after {
    transform: rotate(180deg);
    animation: roll 3s infinite;
    top: 0px;
}

.accordion-general-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.accordion-general.active .accordion-general-content {
    padding: 20px 0px 20px 130px;
    max-height: 500px;
    border-bottom: 2px dotted #000;
    opacity: 1;
}

.accordion-general-content p {
    line-height: 1.6;
    margin-bottom: 10px;
    color: #34495e;
}

.accordion-general-content .highlight {
    font-weight: bold;
    color: #e74c3c;
}

.accordion-general-content ul {
    padding-left: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #000;
}

.accordion-general-content li {
    margin-bottom: 5px;
}

.accordion-general-content .link {
    display: inline-block;
    margin-top: 10px;
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

.accordion-general-content .link:hover {
    text-decoration: underline;
}

.accordion-link:hover {
    transform: scale(1.1);
    transition: transform 0.2s;
    background: none;
}

.accordion-link img {
    width: 30px;
}

#progress-container-left {
    background: #f9f9f9;
    margin: 0px !important;
}

#progress-container,
#progress-container-left {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    z-index: 9999;
    transition: all 0.3s ease;
}

#progress-container-left #progress-bar {
    margin-left: auto;
    transform-origin: right;
}

#progress-bar {
    height: 100%;
    width: 0;
    background-color: #e53030;
    transition: width 0.3s ease-out;
    position: relative;
    overflow: hidden;
}

#progress-bar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.container-conceito {
    width: 100%;
    margin: 100px auto 0px;
    display: flex;
    align-items: baseline;
    background: #f9f9f9;
    padding: 190px 0px 160px 0px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.title-conceito {
    font-size: 100px;
    font-weight: 800;
    text-align: center;
    color: #000;
    position: relative;
    width: 100%;
    display: flex;
    margin: 0px auto;
    justify-content: center;
}

.title-conceito-span {
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    color: #000;
    display: block;
    position: relative;
    top: -11px;
    left: 150px;
}

.title-conceito-span-2 {
    font-size: 75px;
    font-weight: 800;
    text-align: center;
    color: #000;
}

.container-conceito-content {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    background: #fff;
    padding: 35px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    will-change: transform, opacity;
}

.container-conceito-content-item {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    text-align: left;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    will-change: transform, opacity;
}

.container-conceito-content-item h3 {
    font-size: 25px;
    font-weight: 700;
    text-align: left;
    color: #000;
    letter-spacing: 5px;
    width: 100%;
    margin-left: 50px;
    margin-bottom: 20px;
}

.container-conceito-content-item p {
    font-size: 16px;
    text-align: left;
    color: #000;
}

.container-conceito-content-2 {
    width: 70%;
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    flex-wrap: wrap;
    background: #fff;
    padding: 35px;
    margin-top: 40px;
    position: relative;
    margin-left: auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    will-change: transform, opacity;
}

.container-conceito-content-item-2 {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    text-align: left;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    will-change: transform, opacity;
}

.container-conceito-content-item-2 h3 {
    font-size: 25px;
    font-weight: 700;
    text-align: left;
    color: #000;
    letter-spacing: 5px;
    margin-bottom: 20px;
    margin-top: 50px;
}

.container-conceito-content-item-2 p {
    font-size: 16px;
    text-align: left;
    color: #000;
}

.circle-conceito {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 10px 110px;
    border: 2px solid #525252;
    border-style: dotted;
    border-spacing: 10px;
    display: flex;
    align-items: center;
    padding: 5px;
}

.circle-conceito-span {
    width: 30%;
    height: 5px;
    border-radius: 6px;
    background: #e53030;
    margin: 0px auto;
    display: block;
}

.modelo-entrega-retirada {
    width: 100%;
    padding: 100px 0px 150px;
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background: #fafafa;
}

.modelo-entrega-retirada-content {
    width: 100%;
    display: flex;
    align-items: center;
    height: 85vh;
    min-height: 65vh;
    position: relative;
    margin-bottom: 80px;
}

.fundo {
    display: flex;
    height: 100%;
    width: 100%;
}

.fundo .cinza {
    width: 30%;
    background-color: #666;
    /* ou #6c6c6c ou outro tom cinza */
}

.fundo .imagem {
    width: 70%;
    background-image: url("../img/como-alugar/modelo-entrega.png");
    /* substitua com o caminho real */
    background-size: 100%;
    background-position: top;

    background-repeat: no-repeat;
    height: 100%;
    background-color: #f2f2f2;
}

.conteudo {
    position: absolute;
    top: 60%;
    left: 22%;
    transform: translateY(-50%);
    z-index: 2;
}

.conteudo p {
    font-size: 22px;
    margin: 0 0 10px 0;
    font-weight: 500;
    color: #fff;
}

.conteudo h1 {
    font-size: 110px;
    font-weight: bold;
    line-height: 90px;
    color: #fff;
    padding-left: 25px;
}

.modelo-entrega-retirada-content-2 {
    width: 100%;
    display: flex;
    align-items: baseline;
    margin: 0px auto;
}

.card-modelo-entrega-retirada {
    width: 33%;
    display: flex;
    align-items: center;
    opacity: 0;
}

.card-modelo-entrega-retirada:nth-child(1) {
    justify-content: flex-end;
}

.card-modelo-entrega-retirada:nth-child(2) {
    justify-content: center;
    border-left: 5px solid #f2f2f2;
    border-right: 5px solid #f2f2f2;
}

.card-modelo-entrega-retirada:nth-child(3) {
    justify-content: flex-start;
}

.modelo-entrega-retirada-content-2 .card-modelo-entrega-retirada {
    width: 100%;
    display: flex;
    align-items: baseline;
    flex-wrap: nowrap;
    background: #f2f2f2;
    color: #000;
    padding: 40px 40px 80px;
}

.number-modelo-entrega-retirada {
    font-size: 49px;
    font-weight: 400;
    color: #000;
    margin-right: 5px;
}

.card-modelo-entrega-retirada p {
    font-family: "Inter", sans-serif !important;
    font-size: 18px;
    line-height: 28px;
}

.card-modelo-entrega-retirada p strong {
    font-weight: 700;
    text-transform: uppercase;
}

.italic-content {
    font-style: italic;
}

.highlight-red {
    color: red;
    font-weight: bold;
}

.highlight-green {
    color: green;
}

.highlight-yellow {
    color: goldenrod;
}

.card-content-ent {
    display: flex;
    align-items: baseline;
    position: relative;
    width: 65%;
}

.card-content-ent:nth-child(1) .circle-entrega {
    left: 15%;
    bottom: -142px;
}

.card-content-ent:nth-child(2) {}

.card-content-ent:nth-child(3) {
    height: 320px;
}

.circle-entrega {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 10px 110px;
    border: 2px solid #525252;
    border-style: dotted;
    border-spacing: 10px;
    display: flex;
    align-items: center;
    padding: 5px;
    position: absolute;
    background: #fff;
}

.circle-entrega-span {
    width: 30%;
    height: 5px;
    border-radius: 6px;
    background: #e53030;
    margin: 0px auto;
    display: block;
}

.local-retirada {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 100px 0px 0px;
    position: relative;
    flex-wrap: wrap;
}

.local-retirada-content {
    padding-bottom: 50px;
}

.conteudo-local-retirada {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.conteudo-local-retirada h1 {
    font-size: 110px;
    font-weight: bold;
    line-height: 90px;
    padding-left: 25px;
    color: #000;
}

.local-retirada-icon {
    display: flex;
    position: relative;
    top: 95px;
    left: 90px;
    z-index: -4;
}

.local-retirada-info {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.local-retirada-info-item {
    width: 50%;

    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 70px 0px 0px 0px;
}

.content-disponibilidade {
    display: flex;
    flex-wrap: wrap;
    width: 60%;
}

.content-disponibilidade p {
    color: #000;
}

.content-disponibilidade h2 {
    font-size: 25px;
    font-weight: 700;
    text-align: left;
    color: #000;
    text-transform: uppercase;
}

.local-retirada-info-text {
    width: 50%;
    background: #f9f9f9;
    padding: 140px 90px 180px 140px;
    display: flex;
    align-items: center;
    justify-content: start;
    -webkit-border-top-left-radius: 255px;
    -webkit-border-bottom-left-radius: 255px;
    -moz-border-radius-topleft: 255px;
    -moz-border-radius-bottomleft: 255px;
    border-top-left-radius: 255px;
    border-bottom-left-radius: 255px;
}

.content-importante {
    width: 100%;
}

.content-importante h2 {
    font-size: 75px;
    font-weight: 800;
    text-align: left;
    color: #000;
}

.content-importante p {
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    color: #000;
    line-height: 21px;
}

.mapa-local-retirada {
    width: 100%;
    height: 100%;
    position: relative;
    bottom: 60px;
    border-top: 3px solid #fff;
    margin-bottom: -60px;
}

#map {
    width: 100%;
    height: 300px;
    position: relative;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s ease;
}

#map.animated {
    opacity: 1;
    transform: scale(1);
}

.barra-cinza {
    width: 100%;
    height: 100px;
    background: #333333;
}

.formas-full {
    width: 100%;
    height: 100%;
    background: #fafafa;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.texto-formas-pagamento {
    display: block;
    padding: 40px 30% 70px;
    font-size: 18px;
    width: 100%;
    color: #000;
}

.container-diferent-forms {
    width: 100%;
    display: flex;
    background: #fafafa;
    position: relative;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 160px;
}

.diferent-forms-item {
    background-color: #fff;
    border-radius: 6px;
    position: relative;
    box-shadow: -1px 0px 19px 2px rgba(0, 0, 0, 0.12);
    -webkit-box-shadow: -1px 0px 19px 2px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: -1px 0px 19px 2px rgba(0, 0, 0, 0.12);
}

.diferent-forms-item:nth-child(1) {
    display: flex;
    width: 40%;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    padding: 100px 60px 100px 0px;
    z-index: 10;
}

.diferent-forms-item:nth-child(2) {
    width: 57%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 100px 0px 100px 60px;
    top: 50px;
    right: 0px;
    z-index: 5;
}

.diferent-forms-item:nth-child(3) {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    padding: 100px 60px 100px 0px;
    z-index: 8;
    bottom: 48px;
}

.diferent-forms-item:nth-child(4) {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 100px 0px 100px 60px;
    top: 30px;
}

.diferent-forms-item:nth-child(1) .diferent-line {
    left: 0px;
}

.diferent-forms-item:nth-child(3) .diferent-line {
    left: 0px;
}

.diferent-line {
    width: 93%;
    height: 2px;
    border: 1px dashed #1d1d1b;
    display: block;
    position: absolute;
    right: 0px;
    bottom: 80px;
}

.diferent-forms-item h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1d1d1b;
    letter-spacing: 15px;
}

.infos-pagamentos {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    padding: 50px 0px;
}

.infos-pagamentos-item {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #000;
    font-size: 18px;
    flex-wrap: wrap;
    text-align: left;
}

.important {
    width: 100%;
    display: flex;
    align-items: start;
    justify-content: space-between;
    background: #fafafa;
    position: relative;
    padding-top: 170px;
}

.important-item-message {
    background: #fff;
    padding: 190px 90px 190px 110px;
    display: flex;
    align-items: center;
    width: 50%;
    position: relative;
    z-index: 5;
    flex-wrap: wrap;
    justify-content: start;
    -webkit-border-top-right-radius: 370px;
    -webkit-border-bottom-right-radius: 370px;
    -moz-border-radius-topright: 370px;
    -moz-border-radius-bottomright: 370px;
    border-top-right-radius: 370px;
    border-bottom-right-radius: 370px;
}

.circle-svg {
    width: 100px;
    height: 100px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 60px;
    bottom: 160px;
}

.red-line {
    width: 22px;
    height: 4px;
    background-color: #e53030;
    border-radius: 10px;
    position: absolute;
}

svg {
    position: absolute;
    top: 0;
    left: 0;
}

.important-item-message h2 {
    font-size: 75px;
    font-weight: 800;
    text-align: left;
    color: #000;
}

.important-item-message p {
    font-size: 22px;
    font-weight: 400;
    text-align: left;
    color: #000;
    line-height: 33px;
}

.important-item-message-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px;
    position: relative;
    border-radius: 50%;
    position: relative;
    margin-top: 300px;
    right: 200px;
}

.circle-border {
    width: 1400px;
    height: 1400px;
    border-radius: 50%;
    background-image: url("../img/como-alugar/circulo-alugar.svg");
    /* substitua com o caminho real */
    background-size: 100%;
    background-position: top;
    position: absolute;
    bottom: -20%;
    right: 0;
}

.important-item-message-2 img {
    width: 100%;
    max-width: 370px;
    margin-right: 60px;
}

.important-item-message-2-content {
    position: relative;
    z-index: 1;
}

.important-item-message-2-content p {
    font-size: 22px;
    font-weight: 400;
    text-align: left;
    color: #000;
    line-height: 33px;
}

.container-atencao {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #424242;
    padding: 160px 0px 60px;
    flex-wrap: wrap;
}

@keyframes fadeInUpAttention {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.atencao-content {
    width: 100%;
    display: block;
    margin: 0px auto 80px;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.atencao-content.animated {
    animation: fadeInUpAttention 0.9s ease forwards;
}

/* Animação para os blocos finais */
@keyframes fadeInUpFinal {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.barra-atencao {
    width: 100%;
    height: 2px;
    background: #333333;
}

.atencao-content h2 {
    font-weight: 800;
    font-size: 100px;
    color: #b2b2b2;
    text-transform: uppercase;
}

.atencao-content p {
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    color: #b2b2b2;
    line-height: 0px;
    margin-bottom: 0px;
    position: relative;
    left: -220px;
}

.container-info-finais {
    width: 100%;
    display: flex;
    background: #333333;
    justify-content: center;
}

.info-finais-item {
    width: 22%;
    display: block;
    background: #333333;
    padding: 100px 50px;
    opacity: 0;
    transform: translateY(60px) scale(0.97);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.info-finais-item.animated {
    animation: fadeInUpFinal 0.9s ease forwards;
}

.info-finais-item:nth-child(2) {
    border-left: 2px solid #424242;
    border-right: 2px solid #424242;
}

.info-finais-item h3 {
    font-size: 18px;
    font-weight: 800;
    text-align: left;
    text-transform: uppercase;
    color: #b2b2b2;
}

.info-finais-item p {
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    color: #757575;
    margin-bottom: 0px;
    line-height: 18px;
}

/* Responsivo */
@media (max-width: 992px) {
    .circles {
        flex-direction: column;
        align-items: center;
    }
}

@media print {

    header,
    footer {
        display: none;
    }

    rs-fullwidth-wrap {
        display: none !important;
    }

    .first-footer {
        display: none;
    }

    .product-name a {
        display: none;
    }

    .product-thumbnail {
        width: 10%;
    }

    .cart_totals a.checkout-button {
        display: none !important;
    }

    .nav-icons-container {
        display: none;
    }

    .content-carts {
        position: relative;
    }

    div#printCart .product-remove {
        display: none;
    }

    div#printCart .actions {
        display: none !important;
    }

    .barra-cart {
        display: none;
    }

    .top-header {
        display: none;
    }

    .woocommerce .coupon {
        display: none;
    }

    table tr td:first-child {
        display: none;
    }

    .woocommerce-cart table.cart .product-thumbnail {
        width: 300px;
        max-width: 300px;
        word-wrap: break-word;
    }

    .woocommerce td.product-quantity {
        display: none;
    }

    .woocommerce .shop_table.cart thead {
        display: none;
    }

    .woocommerce table.shop_table th {
        display: none !important;
    }
}

@media screen and (max-width: 63.9375em) {
    header.l-header .top-bar-container .site-title-bar .show-cart-btn {
        display: none !important;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Classes de animação */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
}

.card-modelo-entrega-retirada {
    opacity: 0;
}

.container-conceito-content,
.container-conceito-content-2,
.container-conceito-content-item,
.container-conceito-content-item-2 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    will-change: transform, opacity;
}

.container-conceito-content.animated,
.container-conceito-content-2.animated,
.container-conceito-content-item.animated,
.container-conceito-content-item-2.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Animações para o accordion */
.accordion-general-content {
    transition: max-height 0.4s ease, padding 0.3s ease, opacity 0.3s ease;
}

.accordion-general.active .accordion-general-content {
    opacity: 1;
}

/* Animações para o mapa */
#map {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s ease;
}

#map.animated {
    opacity: 1;
    transform: scale(1);
}

/* Animações para formas de pagamento */
@keyframes slideInPayment {
    0% {
        opacity: 0;
        transform: translateX(-50px) scale(0.9);
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }

    50% {
        opacity: 0.5;
        transform: translateX(25px) scale(1.05);
        box-shadow: -1px 0px 19px 2px rgba(0, 0, 0, 0.2);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
        box-shadow: -1px 0px 19px 2px rgba(0, 0, 0, 0.12);
    }
}

.diferent-forms-item {
    opacity: 0;
    transform: translateX(-50px) scale(0.9);
    transition: all 0.8s ease;
    will-change: transform, opacity, box-shadow;
}

.diferent-forms-item:nth-child(1) {
    animation: none;
}

.diferent-forms-item:nth-child(2) {
    animation: none;
}

.diferent-forms-item:nth-child(3) {
    animation: none;
}

.diferent-forms-item:nth-child(4) {
    animation: none;
}

/* Ajuste para o container de formas de pagamento */
.container-diferent-forms {
    position: relative;
    overflow: hidden;
    padding: 20px 0 60px;
}

/* Animações para textos e headers */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.texto-formas-locar h2 {
    font-weight: 800;
    font-size: 100px;
    line-height: 65px;
    color: #000;
}

.texto-formas-locar h2:first-child {
    opacity: 0;
    animation: fadeInLeft 0.8s ease forwards;
}

.texto-formas-locar h5 {
    opacity: 0;
    animation: fadeInLeft 0.8s ease forwards 0.3s;
}

.texto-formas-locar h2:last-child {
    opacity: 0;
    animation: fadeInRight 0.8s ease forwards 0.6s;
}

/* Animações para o accordion */
.accordion-general-header {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.accordion-general-header.animated {
    opacity: 1;
    transform: translateY(0);
}

.number-accordion-container {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.number-accordion-container.animated {
    opacity: 1;
    transform: translateX(0);
}

.container-locar.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries para Responsividade */

/* 1600px */
@media screen and (max-width: 1600px) {
    .title-how-to-rental {
        font-size: 120px;
    }

    .modelo-entrega-retirada-content {
        height: 35vh;
        min-height: 30vh;
        margin-bottom: 50px;
    }

    .container-conceito-content,
    .container-conceito-content-2 {
        width: 80%;
    }

    .modelo-entrega-retirada-content {
        height: 30vh;
        min-height: 30vh;
    }

    .modelo-entrega-retirada-content {
        height: 75vh;
    }

    .conteudo h1 {
        font-size: 90px;
        line-height: 75px;
    }

    .important-item-message-2 {
        padding: 10px;
    }
}

/* 1440px */
@media screen and (max-width: 1440px) {
    .title-how-to-rental {
        font-size: 100px;
    }

    .content-expansive {
        width: 50%;
    }

    .important-item-message {
        padding: 150px 90px 150px 110px;
        width: 45%;
    }

    .important-item-message h2 {
        font-size: 60px;
    }

    .important-item-message p {
        font-size: 16px;
    }

    .accordion-general {
        width: 100%;
    }

    .icone-lateral {
        width: 50%;
    }

    .container-conceito-content,
    .container-conceito-content-2 {
        width: 85%;
    }

    .modelo-entrega-retirada-content-2 .card-modelo-entrega-retirada {
        padding: 40px 20px 80px;
    }

    .card-modelo-entrega-retirada p {
        font-size: 14px;
        line-height: 16px;
    }

    .modelo-entrega-retirada-content {
        height: 70vh;
    }

    .important-item-message-2 {
        padding: 10px;
        margin-top: 0px;
        right: 0;
    }

    .important-item-message-2 img {
        width: 100%;
        max-width: 170px;
        margin-right: 50px;
    }

    .circle-border {
        width: 1200px;
        height: 1200px;
        background-position: center;
        position: absolute;
        botto: -8%;
        left: 20%;
    }

    .conteudo h1 {
        font-size: 80px;
        line-height: 65px;
    }

    .diferent-forms-item {
        width: 45%;
    }
}

/* 1366px */
@media screen and (max-width: 1366px) {
    .title-how-to-rental {
        font-size: 90px;
    }

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

    .important-item-message-2 img {
        max-width: 170px;
        margin-right: 0px;
    }

    .container-conceito-content,
    .container-conceito-content-2 {
        width: 90%;
    }

    .modelo-entrega-retirada-content {
        height: 65vh;
    }

    .conteudo h1 {
        font-size: 70px;
        line-height: 60px;
    }

    .diferent-forms-item {
        width: 48%;
    }
}

/* 1280px */
@media screen and (max-width: 1280px) {
    .title-how-to-rental {
        font-size: 80px;
    }

    .important {
        flex-wrap: wrap;
    }

    .important-item-message {
        width: 100%;
    }

    .important-item-message-2 {
        width: 100%;
    }

    .important-item-message-2 {
        margin-top: 100px;
        right: 0px;
        padding: 50px;
    }

    .container-conceito-content,
    .container-conceito-content-2 {
        width: 95%;
    }

    .modelo-entrega-retirada-content {
        height: 15vh;
        min-height: 20vh;
    }

    .conteudo h1 {
        font-size: 60px;
        line-height: 50px;
    }

    .diferent-forms-item {
        width: 48%;
    }
}

/* 991px */
@media screen and (max-width: 991px) {
    .title-how-to-rental {
        font-size: 70px;
    }

    .title {
        position: relative;
        top: 0px;
    }

    .title-full {
        display: none;
    }

    .title-mobile {
        display: block;
        position: relative;
        line-height: 47px;
    }

    .title-mobile span {
        font-size: 20px;
    }

    .title-mobile span:last-child {
        font-size: 70px;
    }

    .container-terceira-secao {
        flex-wrap: wrap;
    }

    .container-locar {
        margin: 150px auto 0px;
    }

    .circle {
        position: relative !important;
        left: 0px !important;
        top: 0px !important;
        width: 290px !important;
        height: 290px !important;
    }

    .content-expansive {
        width: 100%;
        padding: 0px 20px;
    }

    .modelo-entrega-retirada-content-2 {
        width: 100%;
        display: flex;
        align-items: baseline;
        margin: 0px auto;
        flex-wrap: wrap;
    }

    .circle-entrega {
        display: none;
    }

    .modelo-entrega-retirada-content-2 .card-modelo-entrega-retirada {
        justify-content: flex-start;
        padding: 20px;
    }

    .local-retirada-info-text {
        width: 100%;

        padding: 110px 40px;
        display: flex;
        border-radius: 0px;
        justify-content: center;
        -webkit-border-top-left-radius: 0px;
        -webkit-border-bottom-left-radius: 0px;
        -moz-border-radius-topleft: 0px;
        -moz-border-radius-bottomleft: 0px;
        border-top-left-radius: 0px;
        border-bottom-left-radius: 0px;
    }

    .accordion-general {
        width: 100%;
    }

    .icone-lateral {
        display: none;
    }

    .container-conceito-content,
    .container-conceito-content-2 {
        width: 100%;
    }

    .image-formas-locar img {
        max-width: 270px;
    }

    .modelo-entrega-retirada-content {
        height: 50vh;
    }

    .texto-formas-locar h2 {
        font-size: 60px;
        line-height: 30px;
    }

    .texto-formas-locar h5 {
        font-size: 14px;
    }

    .conteudo h1 {
        font-size: 50px;
        line-height: 45px;
    }

    .diferent-forms-item {
        width: 100% !important;
        margin-bottom: 20px;
        justify-content: center !important;
        position: relative;
        top: 0px !important;
    }

    .important {
        width: 100%;
        display: flex;
        justify-content: center;
        position: relative;
        padding-top: 0px;
        flex-wrap: wrap;
    }

    .important-item-message-2 {
        display: flex;
        justify-content: center;
        padding: 40px;
        border-radius: 0px;
        width: 100%;
        margin-top: 30px;
        right: 0px;
    }

    .circle-border {
        display: none;
    }

    .important-item-message-2 img {
        display: none;
    }

    .important-item-message {
        padding: 190px 90px;
        width: 100%;
        position: relative;
        z-index: 5;
        justify-content: center;
        -webkit-border-top-right-radius: 0px;
        -webkit-border-bottom-right-radius: 0px;
        -moz-border-radius-topright: 0px;
        -moz-border-radius-bottomright: 0px;
        border-top-right-radius: 0px;
        border-bottom-right-radius: 0px;
    }

    .container-diferent-forms {
        flex-direction: column;
    }

    .local-retirada-info {
        flex-direction: column;
    }

    .local-retirada-info-item,
    .local-retirada-info-text {
        width: 100%;
    }

    .container-info-finais {
        flex-direction: column;
    }

    .container-atencao {
        padding: 40px 0px;
    }

    .container-conceito {
        margin: 50px auto 0px;
        padding: 90px 0px 90px 0px;
        flex-wrap: wrap;
    }

    .title-conceito-span-2 {
        font-size: 45px;
    }

    .atencao-content {
        margin: 0px auto;
    }

    .atencao-content p {
        font-size: 14px;
        left: -130px;
    }

    .atencao-content h2 {
        font-size: 60px;
    }

    .info-finais-item {
        width: 100%;
        padding: 30px;
    }
}

/* 768px */
@media screen and (max-width: 768px) {
    .title-how-to-rental {
        font-size: 60px;
    }

    .image-formas-locar {
        display: none;
    }

    .modelo-entrega-retirada-content {
        height: 40vh;
    }

    .conteudo h1 {
        font-size: 40px;
        line-height: 35px;
    }

    .title-conceito {
        flex-wrap: wrap;
    }

    .title-conceito-span {
        top: 0px;
        left: 0px;
    }

    .fundo .cinza {
        display: none;
    }

    .fundo .imagem {
        background-position: center;
        width: 100%;
        background-size: cover;
    }

    .conteudo-local-retirada h1 {
        font-size: 70px;
        line-height: 62px;
        padding-left: 0px;
    }

    .content-importante h2 {
        font-size: 45px;
    }

    .container-terceira-secao {
        flex-direction: column;
    }

    .texto-formas-pagamento {
        padding: 40px 10px;
    }

    .icone-lateral {
        width: 100%;
        padding: 40px;
    }

    .diferent-forms-item {
        padding: 100px 40px !important;
    }

    .infos-pagamentos-item {
        width: 100%;
        padding: 20px;
    }

    .diferent-forms-item h2 {
        font-size: 14px;
    }

    .content-expansive {
        width: 100%;
        padding-left: 20px;
    }

    .important-item-message,
    .important-item-message-2 {
        width: 100%;
    }
}

/* 480px */
@media screen and (max-width: 480px) {
    .title-how-to-rental {
        font-size: 40px;
    }

    .modelo-entrega-retirada-content {
        height: 30vh;
    }

    .conteudo h1 {
        font-size: 30px;
        line-height: 25px;
    }

    .container-conceito-content-item h3,
    .container-conceito-content-item-2 h3 {
        font-size: 20px;
    }

    .container-conceito-content-item p,
    .container-conceito-content-item-2 p {
        font-size: 14px;
    }

    .important-item-message h2 {
        font-size: 40px;
    }

    .important-item-message p {
        font-size: 16px;
    }

    .atencao-content h2 {
        font-size: 50px;
    }
}