.hidden {
   display: none;
}
/* ESTILOS GLOBAIS */
.error-input {
   border: 1px solid red !important;
}

/* SISTEMA DE ESPAÇAMENTOS */
:root {
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    --spacing-xxxl: 6rem;
    
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    
    --color-primary: rgb(61, 176, 219);
    --color-primary-dark: rgb(45, 129, 161);
    --color-bg-dark: rgb(16, 33, 60);
    --color-text-light: white;
}

/* CLASSES UTILITÁRIAS */
.section-padding {
    padding: var(--spacing-xxxl) 0;
}

.section-padding-sm {
    padding: var(--spacing-xl) 0;
}

.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* NAVBAR RESPONSIVO */
.navbar {
    background: rgba(16, 33, 60, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

/* AJUSTE DO PADDING TOP PARA DESKTOP */
@media (min-width: 900px) {
    body {
        padding-top: 0 !important;
    }
}

.navbar-brand {
    padding: 0;
}

.logo-navbar {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    color: white !important;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    margin: 0 0.5rem;
    padding: 0.75rem 1rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: rgb(61, 176, 219) !important;
    background-color: rgba(61, 176, 219, 0.1);
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 50%;
    background-color: rgb(61, 176, 219);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* HERO SECTION */
.hero-section {
    padding: var(--spacing-xxxl) 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-family: 'Syncopate', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-light);
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
}

.highlight {
    color: var(--color-primary);
    display: block;
    font-size: 2.8rem;
    margin: var(--spacing-sm) 0;
}

.hero-features {
    padding-left: var(--spacing-lg);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: bold;
    margin-right: var(--spacing-md);
    flex-shrink: 0;
}

/* CTA SECTION */
.cta-section {
    padding: var(--spacing-xl) 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    text-decoration: none;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 300px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: white;
    text-decoration: none;
}

.cta-text {
    font-size: 1.1rem;
}

.cta-icon {
    font-size: 1.3rem;
}

/* TIPOGRAFIA MELHORADA */
.section-title {
    font-family: 'Syncopate', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.section-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    color: var(--color-text-light);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    opacity: 0.9;
}

.section-header {
    margin-bottom: var(--spacing-xxxl);
}

/* TRAVEL SECTION */
.travel-section {
    background-color: var(--color-bg-dark);
}

.travel-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
}

.service-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.service-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-light);
    margin: 0;
}

/* FOOTER LINKS */
.contato a,
.numero a,
.local a {
    color: white !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contato a:hover,
.numero a:hover,
.local a:hover {
    color: var(--color-primary) !important;
    text-decoration: none !important;
    transform: translateY(-1px);
}

/* Efeitos específicos para cada tipo de contato */
.contato a:hover::before {
    content: "✉️";
    animation: pulse 0.5s ease-in-out;
}

.numero a:hover::before {
    content: "💬";
    animation: pulse 0.5s ease-in-out;
}

.local a:hover::before {
    content: "🗺️";
    animation: pulse 0.5s ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* FORMULÁRIO MODERNO */
.modal-content {
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    border-bottom: none;
    padding: var(--spacing-lg);
}

.modal-title {
    font-family: 'Syncopate', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.modal-body {
    padding: var(--spacing-xl);
    background-color: #f8f9fa;
}

.form-label {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    color: #333;
    margin-bottom: var(--spacing-xs);
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius-md);
    padding: var(--spacing-sm) var(--spacing-md);
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: white;
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(61, 176, 219, 0.25);
    outline: none;
}

.form-control.error-input {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-check-input {
    width: 1.2rem;
    height: 1.2rem;
    margin-right: var(--spacing-sm);
    border: 2px solid #dee2e6;
}

.form-check-input:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.form-check-label {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    color: #333;
    margin-left: var(--spacing-xs);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
}

.form-group span {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
    display: block;
    margin-top: var(--spacing-xs);
}

.btn-submit {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border: none;
    border-radius: var(--border-radius-md);
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: var(--spacing-md) var(--spacing-xl);
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.layout-preview {
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    margin-top: var(--spacing-sm);
    background-color: white;
    transition: all 0.3s ease;
}

.layout-preview:hover {
    border-color: var(--color-primary);
}

.preview-btn {
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: var(--border-radius-sm);
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.preview-btn:hover {
    background-color: var(--color-primary-dark);
}

@media (min-width: 900px){
/* DESKTOP STYLES */

.background2{
    background-image: url('Imagens/celular.png');
    background-size: 75%;
    background-repeat: no-repeat;
    background-position: 120% 15%;
}

.background1 {
    background-image: url('Imagens/background-1.png'); 
    background-size: cover;
}

/* HERO SECTION DESKTOP */
.hero-section {
    padding: 0;
    min-height: 100vh;
}

.hero-section .container-custom {
    max-width: none;
    padding: 0;
}

.hero-section .row {
    margin: 0;
}

.hero-section .col-lg-6 {
    padding: 0;
}

.hero-title {
    font-family: 'Syncopate', cursive;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-text-light);
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
    margin-left: 6.5rem;
    margin-top: 6rem;
}

.highlight {
    color: var(--color-primary);
    display: block;
    font-size: 3.2rem;
    margin: var(--spacing-sm) 0;
}

.hero-features {
    padding-left: 2rem;
    margin-left: 6.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 4rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
    font-family: 'Open Sans', sans-serif;
    font-size: 1.25rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: bold;
    margin-right: var(--spacing-md);
    flex-shrink: 0;
}

/* CTA DESKTOP */
.cta-section {
    padding: 0;
    margin-left: 12.75rem;
    margin-top: 3.5rem;
    margin-bottom: 6.25rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    text-decoration: none;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 18.75rem;
    height: 4rem;
}

/* BENEFICIOS SECTION - MANTENDO ESTRUTURA ATUAL */
    .pc {
        display: flex;
        justify-content: start;
        width: 8.5rem;
    }
    .beneficios {
        font-size: 2.25rem; 
        margin-top: 4rem;
    }
    .textinho {
        display: flex;
        font-size: 1.25rem;
        justify-content: flex-start;
        margin-top: 2.5rem;
        margin-right: 3.5rem;
    }

    .lista2 {
        margin-top: 2.5rem;
    }
    .listinha {
        display: flex;
        font-size: 1.25rem;
        justify-content: flex-start;
        margin-left: 1.25rem;
    }
    .iconezinho {
        height: 2.25rem;
        width: 2.25rem;
    }
    .item1 {
        display: flex;
        flex-direction: row;
        vertical-align: middle;
    }
    .item2 {
        display: flex;
        flex-direction: row;
        margin-top: 1rem;
        vertical-align: middle;
    }
    .item3 {
        display: flex;
        flex-direction: row;
        margin-top: 1rem;
        vertical-align: middle;
    }
    .item4 {
        display: flex;
        flex-direction: row;
        margin-top: 1rem;
        vertical-align: middle;
    }

    .secaoVideos {
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin-top: 10rem;
    }
    .video1 {
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    .video {
        height: 14.9375rem;
        width: 26.5rem;
    }
    .titulo {
        display: flex;
        justify-content: center;
        font-family: 'Open-sans', sans-serif;
        margin-top: 0.5rem;
        margin-left: 1.5rem;
        font-size: 2rem;
    }

/* INÍCIO DAS INTEGRAÇÕES */
    .site1 {
        margin-right: 0px;
        margin-left: 0px;
    }
    .inter {
        display: flex;
        justify-content: center;
        font-size: 1.5rem;
        margin-top: 1.5rem;
    }
    .texto3 {
        display: flex;
        justify-content: center;
        font-size: 2rem;
        margin-top: 2.75rem;
        margin-bottom: 3.5rem;
    }
    
    .empresas0 {
        display: flex;
        justify-content: center;
    }
    .empresa1 {
        display: flex;
        flex-direction: column;
    }
    .empresa2 {
        display: flex;
        flex-direction: column;
    }
    .empresa3 {
        display: flex;
        flex-direction: column;
    }
    .empresa4 {
        display: flex;
        flex-direction: column;
    }
    .empresa5 {
        display: flex;
        flex-direction: column;
    }

    .cangoro {
        height: 9.375rem;
        width: 12.5rem;
    }
    .omni {
        height: 9.375rem;
        width: 12.5rem;
        margin-top: 1.25rem;
    }
    .hotelbeds {
        height: 9.375rem;
        width: 12.5rem;
        margin-top: 1.25rem;
    }
    .ezlink {
        height: 9.375rem;
        width: 12.5rem;
    }
    .hoteldo {
        height: 9.375rem;
        width: 12.5rem;
        margin-top: 1.25rem;
    }
    .gol {
        height: 9.375rem;
        width: 12.5rem;
        margin-top: 1.25rem;
    }
    .amadeus {
        height: 9.375rem;
        width: 12.5rem;
    }
    .sabre {
        height: 9.375rem;
        width: 12.5rem;
        margin-top: 1.25rem;
    }
    .latam {
        height: 9.375rem;
        width: 12.5rem;
        margin-top: 1.25rem;
    }
    .arkbeds {
        height: 9.375rem;
        width: 12.5rem;
    }
    .copair {
        height: 9.375rem;
        width: 12.5rem;
        margin-top: 1.25rem;
    }
    .assisticard {
        height: 9.375rem;
        width: 12.5rem;
        margin-top: 1.25rem;
    }
    .azul {
        height: 9.375rem;
        width: 12.5rem;
    }
    .restel {
        height: 9.375rem;
        width: 12.5rem;
        margin-top: 1.25rem;
    }
    .ark4 {
        height: 9.375rem;
        width: 12.5rem;
        margin-top: 1.25rem;
        margin-bottom: 5.5rem;
    }
/*FIM DAS INTEGRAÇÕES*/

/*INÍCIO DOS PLANOS*/
    .acesso {
       font-size: 1.75rem; 
       margin-left: 3.75rem;
       margin-top: 3.75rem;
    }
    .site {
        font-size: 1.25rem;
        margin-left: 3.75rem;
        margin-top: 3.25rem;
    }
    
    .imagenzinhas {
        display: flex;
        flex-direction: row;
        margin-top: 3.75rem;
        margin-left: 3.5rem;
    }
    .tls {
        margin-left: 3rem;
    }
    .seo {
        margin-left: 3rem;
    }

    .fraseFidelidade {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 2rem;
        margin-top: 5rem;
    }
    .contraste {
        font-size: 1.25rem;
        color: red;
    }

    .item8 {
        display: flex;
        flex-direction: row;
        margin-top: 4rem;
        vertical-align: middle;
    }
    .item9 {
        display: flex;
        flex-direction: row;
        margin-top: 1.5rem;
        vertical-align: middle;
    }

    .icone {
        height: 2.5rem;
        width: 2.5rem;
        margin-left: 0.25rem;
    }

    .listinha1 {
        font-size: 1.25rem;
        margin-left: 1rem;
    }

    .de {
        font-size: 1.25rem;
        margin-top: 2.5rem;
        margin-left: 2rem;
        border-top: solid 1px;
        border-color: gray;
    }
    .por {
        font-size: 1.25rem;
        margin-top: 1.5rem;
        margin-left: 2rem; 
    }
    .preco1 {
        font-size: 2.25rem;
    }
    .preco2 {
        font-size: 3rem;
    }
    .condicao {
        font-size: 1.25rem;
        margin-left: 2rem;
    }
    .taxa {
        font-size: 1.25rem;
        margin-left: 2rem;
    }

    .botaoModal {
        display: flex;
        justify-content: center;
    }
    .botao1 {
        display: flex;
        justify-content: center;
        width: 18.75rem;
        height: 4.0625rem;
        margin-left: 2rem;
        margin-top: 2rem;
        border-color: rgb(61, 176, 219) !important;
        background-color: rgb(61, 176, 219) !important;
        cursor: pointer;
    }
    .adquirir {
        margin-top: 2%;
    }

    #cadastroModalLabel {
        line-height: 1.25;
    }
    .formulario {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .miniSessao1 {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
    }
    .miniSessao2 {
        display: flex;
        flex-direction: column;
    }

    .miniSessao01 {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
    }
    .miniSessao001 {
        display: flex;
        justify-content: flex-start;
    }
    /* .miniSessao02 {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    } */

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

    .possuiSite {
        display: flex;
        align-self: center;
    }
    .circular {
        display: flex;
        align-self: center;
        border-radius: 50%;
        border-color: gray;
        background-color: white;
        width: 2.25rem;
        height: 2.25rem;
        margin-left: 0.75rem;
    }
    .circular01 {
        display: flex;
        align-self: center;
        border-radius: 50%;
        border-color: gray;
        background-color: white;
        width: 2.25rem;
        height: 2.25rem;
        margin-left: 0.75rem;
    }
    .circular02 {
        display: flex;
        align-self: center;
        border-radius: 50%;
        border-color: gray;
        background-color: white;
        width: 2.25rem;
        height: 2.25rem;
    }
    .opcoes {
        display: flex;
        align-self: center;
        margin-left: 0.25rem;
    }
    .botaoForm {
        border-radius: 0.5rem;
        border-color: rgb(67, 194, 240) !important;
        background-color: rgb(67, 194, 240) !important;
        color: white;
        border: none;
        width: 11.625rem;
        height: 4.0625rem;
        font-family: 'Open-sans', sans-serif;
        font-size: 1.25rem;
    }
    .botaoForm1 {
        border-radius: 0.5rem;
        border-color: rgb(67, 194, 240) !important;
        background-color: rgb(67, 194, 240) !important;
        color: white;
        border: none;
        width: 11.625rem;
        height: 4.0625rem;
        font-family: 'Open-sans', sans-serif;
        font-size: 1.25rem;
        padding: 0.25rem;
    }
    .botaoForm2 {
        border-radius: 0.5rem;
        border-color: rgb(67, 194, 240) !important;
        background-color: rgb(67, 194, 240) !important;
        color: white;
        border: none;
        width: 9.75rem;
        height: 3.5rem;
        font-family: 'Open-sans', sans-serif;
        font-size: 1.25rem;
        padding: 0.25rem;
        margin-top: 0.75rem;
        margin-right: 0.75rem;
    }
    .envArq {
        display: flex;
        align-items: center;
    }
    
    .sessaoLayout {
        display: flex;
        flex-direction: row;
        /* justify-content: space-between; */
    }
    .opcoesLayout {
        margin-left: 0.75rem;
    }
    .sessaoLayout1 {
        display: flex;
        justify-content: flex-start;
    }
    .sessaoLayout2 {
        display: flex;
        align-items: end;
    }
    .layout1 {
        display: flex;
        align-self: center;
        margin-left: 0.5rem;
    }
    .box {
        background-image: url('Imagens/layoutmachupicchu.png');
        background-color: #D9D9D9;
        border-radius: 0.5rem;
        padding-left: 8.125rem;
        padding-right: 8.125rem;
        padding-top: 5.3125rem;
        padding-bottom: 5.3125rem;
        margin: 0.75rem;
        background-size: cover;
        background-position-y: center;
        display: inline-table;
    }
      .box1{
        background-image: url('Imagens/layoutcoliseu.png');
        background-color: #D9D9D9;
        border-radius: 0.5rem;
        padding-left: 8.125rem;
        padding-right: 8.125rem;
        padding-top: 5.3125rem;
        padding-bottom: 5.3125rem;
        margin: 0.75rem;
        background-size: cover;
        background-position-y: center;
        display: inline-table;
    }
    .ultimaSessao {
        display: flex;
        justify-content: center;
    }
    .sessaoBox {
        display: flex;
        justify-content: space-between;
    }
/*FIM DOS PLANOS*/

/*INÍCIO DO FOOTER*/
    .logo1 {
        margin-top: 3.25rem;
        margin-left: 4.25rem;
        margin-bottom: 3rem;
    }
    .contato1 {
        margin-left: 4.25rem;
    }
    .contato {
        font-size: 1.25rem;
    }
    .numero {
        font-size: 1.25rem;
    }
    .local {
        font-size: 1.25rem;
        margin-bottom: 4rem;
    }

    .sobre {
        font-size: 1.75rem;
        margin-top: 3.25rem;
        margin-left: 3.5rem;
    }
    .sobreTexto1 {
        font-size: 1.25rem;
        margin-top: 1.25rem;
        margin-left: 3.5rem;
    }
    .sobreTexto2 {
        font-size: 1.25rem;
        margin-top: 2rem;
        margin-left: 3.5rem;
    }
/* FIM DO FOOTER */
body {
    overflow-x: hidden !important;
}
}
@media (max-width: 575px){
/* RESPONSIVIDADE MOBILE */

/* NAVBAR MOBILE */
.navbar {
    padding: 0.5rem 0;
}

.logo-navbar {
    height: 40px;
}

.navbar-nav .nav-link {
    font-size: 1rem;
    margin: 0.25rem 0;
    padding: 0.75rem 1rem !important;
}

/* HERO SECTION MOBILE */
.hero-section {
    padding: var(--spacing-xl) 0;
    min-height: auto;
}

.hero-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.highlight {
    font-size: 2.2rem;
    margin: var(--spacing-xs) 0;
}

.hero-features {
    padding-left: 0;
    margin-top: var(--spacing-lg);
}

.feature-item {
    font-size: 1rem;
    margin-bottom: var(--spacing-sm);
}

.feature-icon {
    width: 20px;
    height: 20px;
    font-size: 0.8rem;
    margin-right: var(--spacing-sm);
}

/* CTA MOBILE */
.cta-button {
    min-width: 280px;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 1rem;
}

/* TRAVEL SECTION MOBILE */
.section-title {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
}

.section-description {
    font-size: 1rem;
    margin-bottom: var(--spacing-lg);
}

.travel-services {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: var(--spacing-md);
}

.service-item {
    padding: var(--spacing-sm);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--spacing-sm);
}

.service-img {
    width: 35px;
    height: 35px;
}

.service-title {
    font-size: 0.9rem;
}

/* LAYOUT ANTIGO REMOVIDO */
    .row {
        padding-right: 0px !important;
    }
    .container {
        padding-left: 0px !important; 
        padding-right: 0px !important;
    }

    .logo {
        width: 20rem;
        margin: 2rem;
    }
    .h3 {
        display: flex;
    }
    .ferramentas {
        margin: 0.5rem;
        font-size: 2rem;
    }
    .botao2 {
        color: white;
        text-decoration: none;
    }
    .integracoes {
        margin: 0.5rem;
        font-size: 2rem;
    }
    .botao3 {
        color: white;
        text-decoration: none;
    }
    .planos {
        margin: 0.5rem;
        font-size: 2rem;
    }
    .botao4 {
        color: white;
        text-decoration: none;
    }
    .videos {
        font-size: 2rem;
        margin: 0.5rem;
    }
    .botao7 {
        color: white;
        text-decoration: none;
    }
    .contatos {
        margin: 0.5rem;
        font-size: 2rem;
    }
    .botao5 {
        color: white;
        text-decoration: none;
    }
    .sessao {
        display: flex;
        justify-content: center;
    }
    .descricao1 {
        font-size: 2.25rem;
        margin-top: 4rem;
        margin-bottom: 3.5rem;
        margin-left: 1rem;
        text-align: center;
    }

    .lista1 {
        margin-top: 5.75rem;
        margin-bottom: 3.25rem;
        font-size: 1.25rem;
    }
    li {
        margin-top: 0.5rem;
    }
    .seta1 {
        display: none;
    }
    .zap {
        display: flex;
        justify-content: center;
    }
    .btn{
        width: 18.75rem;
        height: 5rem;
        margin-bottom: 4rem;
        border-color: rgb(61, 176, 219) !important;
        background-color: rgb(61, 176, 219) !important;
        
    }
    .entrar-cont2 {
        width: 17.1875rem;
        height: 3.125rem;
        font-size: 1.25rem;
        margin-right: 4rem;
        margin-bottom: 0px;
    }
    .botao6 {
        color: white;
        text-decoration: none;
    }
/* FIM DO "CABEÇALHO" */

/* INÍCIO DAS VENDAS DE VIAGENS */
    .viagens {
        background-size: cover;
        margin-top: 2.25rem;
    }
    .texto1 {
        font-size: 2rem;
        margin-left: 0.25rem;
        text-align: center;
    }
    .texto2 {
        font-size: 1.25rem;
        margin-top: 3.75rem;
        margin-left: 0.25rem;
    }

    .imagens {
        display: flex;
        align-items: center;     
        flex-direction: column;
        margin-top: 3rem;
        margin-bottom: 4rem;
    }
    .pacotes {
        width: 12.5rem;
    }
    .aereos {
        width: 12.5rem;
        margin-top: 5%;
    }
    .hoteis {
        width: 12.5rem;
        margin-top: 5%;
    }
    .passeios {
        width: 12.5rem;
        margin-top: 5%;
    }
    .carros {
        width: 12.5rem;
        margin-top: 5%;
    }
    .seguro {
        width: 12.5rem;
        margin-top: 5%;
    }
    .orcamento {
        width: 12.5rem;
        margin-top: 5%;
    }
/* FIM DAS VENDAS DE VIAGENS */

/* INÍCIO DOS BENEFÍCIOS */
    .benimagens {
        display: flex;
        flex-direction: column;
    }
    .pc {
        display: flex;
        justify-content: center;
        height: 18.5rem;
        margin-left: 0.25rem;
    }

    .beneficios {
        display: flex;
        justify-content: center;
        font-size: 2rem; 
        margin-top: 3rem;
        margin-left: 0.25rem;
    }
    .textinho {
        display: flex;
        font-size: 1.25rem;
        justify-content: center;
        margin-top: 2.5rem;
        text-align: center;
        margin-left: 1rem;
        margin-right: 0.25rem;
    }

    .lista2 {
        margin-top: 10%;
    }
    .listinha {
        display: flex;
        font-size: 1.25rem;
        justify-content: flex-start;
        margin-left: 2.5%;
    }
    .iconezinho {
        height: 2.5rem;
        width: 2.5rem;
        margin-left: 0.75rem;
    }
    .item1 {
        display: flex;
        flex-direction: row;
        vertical-align: middle;
        margin-top: 0px;
    }
    .item2 {
        display: flex;
        flex-direction: row;
        vertical-align: middle;
        margin-top: 1rem;
    }
    .item3 {
        display: flex;
        flex-direction: row;
        vertical-align: middle;
        margin-top: 1rem;
    }
    .item4 {
        display: flex;
        flex-direction: row;
        vertical-align: middle;
        margin-top: 1rem;
        margin-bottom: 1.5rem;
    }
    .participar {
        display: flex;
        justify-content: center;
        padding-left: 0.75rem;
    }
    .botaoParti {
        display: flex;
        justify-content: center;
        width: 17rem;
        height: 4rem;
        margin-left: 0.25rem;
        margin-top: 1rem;
        margin-bottom: 3rem;
        border-radius: 10px;
        border: none;
        border-color: rgb(61, 176, 219) !important;
        background-color: rgb(61, 176, 219) !important;
    }
    .buttonText {
        font-family: 'Open-sans', sans-serif;
        text-align: center;
        padding: 1rem;
    }
    /* .secaoVideos {
        display: flex;
        align-items: center;
        margin-top: 10rem;
    }
    .video1 {
        display: flex;
        flex-direction: column;
        justify-content: center;
    } */
    .secaoVideos {
        display: flex;
        justify-content: center;
        margin-top: 10rem;
    }
    .video1 {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* margin: 2.5rem; */
    }
    .video {
        height: 12rem;
        width: 20rem;
        max-width: 100%;
    }
    .titulo {
        text-align: center;
        font-family: 'Open-sans', sans-serif;
        margin-top: 0.5rem;
        font-size: 2rem;
    }
/* FIM DOS BENEFÍCIOS */

/* INÍCIO DAS INTEGRAÇÕES */
    .site1 {
    margin-top: 1.75rem;
    margin-left: 0px;
    }
    .inter {
        display: flex;
        justify-content: center;
        font-size: 1.25rem;
    }
    .texto3 {
        font-size: 1.75rem;
        margin-top: 2rem;
        margin-bottom: 3rem;
        margin-left: 0.5rem;
    }

    .empresas {
        display: flex;
        justify-content: center;
    }
    .empresas0 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .empresa1, .empresa2, .empresa3, .empresa4, .empresa5 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cangoro {
        height: 12.5rem;
        width: 15.625rem;
        margin-left: 0.5rem; 
    }
    .omni {
        height: 12.5rem;
        width: 15.625rem;
        margin-left: 0.5rem;
        margin-top: 1.75rem;
    }
    .hotelbeds {
        height: 12.5rem;
        width: 15.625rem;
        margin-left: 0.5rem;
        margin-top: 1.75rem;
    }
    .ezlink {
        height: 12.5rem;
        width: 15.625rem;
        margin-left: 0.5rem;
        margin-top: 1.75rem;
    }
    .hoteldo {
        height: 12.5rem;
        width: 15.625rem;
        margin-left: 0.5rem;
        margin-top: 1.75rem;
    }
    .gol {
        height: 12.5rem;
        width: 15.625rem;
        margin-left: 0.5rem;
        margin-top: 1.75rem;
    }
    .amadeus {
        height: 12.5rem;
        width: 15.625rem;
        margin-left: 0.5rem;
        margin-top: 1.75rem;
    }
    .sabre {
        height: 12.5rem;
        width: 15.625rem;
        margin-left: 0.5rem;
        margin-top: 1.75rem;
    }
    .latam {
        height: 12.5rem;
        width: 15.625rem;
        margin-left: 0.5rem;
        margin-top: 1.75rem;
    }
    .arkbeds {
        height: 12.5rem;
        width: 15.625rem;
        margin-left: 0.5rem;
        margin-top: 1.75rem;
    }
    .copair {
        height: 12.5rem;
        width: 15.625rem;
        margin-left: 0.5rem;
        margin-top: 1.75rem;
    }
    .assisticard {
        height: 12.5rem;
        width: 15.625rem;
        margin-left: 0.5rem;
        margin-top: 1.75rem;
    }
    .azul {
        height: 12.5rem;
        width: 15.625rem;
        margin-left: 0.5rem;
        margin-top: 1.75rem;
    }
    .restel {
        height: 12.5rem;
        width: 15.625rem;
        margin-left: 0.5rem;
        margin-top: 1.75rem;
    }
    .ark4 {
        height: 12.5rem;
        width: 15.625rem;
        margin-left: 0.5rem;
        margin-top: 1.75rem;
        margin-bottom: 5rem;
    }
/* FIM DAS INTEGRAÇÕES */

/* INÍCIO DOS PLANOS */
    .acesso {
        font-size: 1.75rem; 
        margin: 1rem;
        margin-top: 3.5rem;
        text-align: center;
    }
    .site {
        font-size: 1.25rem;
        margin: 1rem;
        margin-top: 1.5rem;
        text-align: center;
    }

    .siglas {
        display: flex;
        justify-content: center;
    }
    .imagenzinhas {
        display: flex;
        justify-content: center;
        flex-direction: column;
        margin-top: 4rem;
    }
    .lgpd {
        height: 21.875rem;
        width: 14.0625rem;
        margin-left: 0.25rem;
    }
    .tls {
        margin-top: 2rem;
        height: 21.875rem;
        width: 14.0625rem;
        margin-left: 0.25rem;
    }
    .seo {
        margin-top: 2rem;
        height: 21.875rem;
        width: 14.0625rem;
        margin-left: 0.25rem;
        margin-bottom: 1rem;
    }

    .contrato {
        display: none;
    }

    .listinha1 {
        font-size: 1.25rem;
        margin-left: 0.75rem;
    }
    .icone {
        height: 2.5rem;
        width: 2.5rem;
        margin-left: 0.25rem;
    }
    .item8 {
        display: flex;
        flex-direction: row;
        margin-top: 2.75rem;
        vertical-align: middle;
    }
    .item9 {
        display: flex;
        flex-direction: row;
        margin-top: 1rem;
        vertical-align: middle;
    }

    .de {
        font-size: 1.5rem;
        margin-top: 3rem;
        margin-left: 0.75rem;
    }
    .por {
        font-size: 2rem;
        margin-top: 0.75rem;
        margin-left: 0.75rem;
    }
    .preco1 {
        font-size: 2.25rem;
    }
    .preco2 {
        font-size: 2.5rem;
    }

    .condicao {
        font-size: 1.5rem;
        margin-left: 1rem;
    }
    .taxa {
        font-size: 1.5rem;
        margin-left: 1rem;
    }

    #cadastroModalLabel {
        line-height: 1.25;
    }
    .botaoPlano {
        display: flex;
        justify-content: center;
    }
    .botao1 {
        display: flex;
        justify-content: center;
        width: 15.625rem;
        height: 4.0625rem;
        margin-top: 3rem;
        border-color: rgb(61, 176, 219) !important;
        background-color: rgb(61, 176, 219) !important;
    }
    .adquirir {
        display: flex;
        justify-content: center;
        margin-top: 2.5%;
        font-size: 1.5rem;
    }

    .ultimaSessao {
        display: flex;
        justify-content: center;
    }
    .circular {
        border-radius: 50%;
        border-color: gray;
        background-color: white;
        width: 2rem;
        height: 2rem;
        margin: 0.5rem;
    }
    .botaoForm {
        border-radius: 0.5rem;
        border-color: rgb(67, 194, 240) !important;
        background-color: rgb(67, 194, 240) !important;
        color: white;
        border: none;
        width: 6.25rem;
        height: 3.5rem;
        font-family: 'Open-sans', sans-serif;
        font-size: 1.25rem;
    }
    .botaoForm1 {
        border-radius: 0.5rem;
        border-color: rgb(67, 194, 240) !important;
        background-color: rgb(67, 194, 240) !important;
        color: white;
        border: none;
        width: 11.625rem;
        height: 4.0625rem;
        font-family: 'Open-sans', sans-serif;
        font-size: 1.25rem;
        padding: 0.25rem;
    }
    .botaoForm2 {
        border-radius: 0.5rem;
        border-color: rgb(67, 194, 240) !important;
        background-color: rgb(67, 194, 240) !important;
        color: white;
        border: none;
        width: 8rem;
        height: 3rem;
        font-family: 'Open-sans', sans-serif;
        font-size: 1rem;
        padding: 0.25rem;
        margin-top: 0.5rem;
        margin-right: 0.25rem;
    }
    .miniSessao2 {
        margin: 0.75rem;
    }
    
    .miniSessao001 {
        display: flex;
        align-items: center;
    }
    .miniSessao3 {
        display: flex;
        flex-direction: column;
    }
    .circular01 {
        display: flex;
        align-self: center;
        border-radius: 50%;
        border-color: gray;
        background-color: white;
        width: 2.25rem;
        height: 2.25rem;
        margin: 0.25rem;
    }
    .circular02 {
        display: flex;
        align-self: center;
        border-radius: 50%;
        border-color: gray;
        background-color: white;
        width: 2.25rem;
        height: 2.25rem;
        margin: 0.25rem;
    }
    .sessaoLayout {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        margin-bottom: 1.75rem;
    }
    .sessaoLayout1 {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .sessaoLayout2 {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .opcoesLayout {
        display: flex;
        justify-content: center;
    }
    .sessaoBox {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
    }
/* FIM DOS PLANOS */

/* INÍCIO DO FOOTER */
.footer1 {
    display: flex;
    flex-direction: column;
    text-align: center;
}
.logo1 {
    margin-bottom: 4rem;
    margin-top: 4rem;
    margin-left: 2rem;
    width: 16.75rem;
}
.contato {
    font-size: 1.75rem;
}
.numero {
    font-size: 1.75rem;
    margin-top: 1.5rem;
}
.local {
    font-size: 1.75rem;
    margin-top: 1.5rem;
    margin-bottom: 1.75rem;
}

.sobre {
    font-size: 2rem;
    margin-top: 5rem;
}
.sobreTexto1 {
    font-size: 1.5rem;
    margin-top: 2rem;
}
.sobreTexto2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 3.5rem;
}
/* FIM DO FOOTER */
}

@media (min-width: 576px) and (max-width: 899px){
/* TABLET STYLES */

/* NAVBAR TABLET */
.navbar {
    padding: 0.75rem 0;
}

.logo-navbar {
    height: 45px;
}

.navbar-nav .nav-link {
    font-size: 1.05rem;
    margin: 0 0.25rem;
}

/* HERO SECTION TABLET */
.hero-section {
    padding: var(--spacing-xxl) 0;
    min-height: 80vh;
}

.hero-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.highlight {
    font-size: 2.5rem;
    margin: var(--spacing-xs) 0;
}

.hero-features {
    padding-left: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-item {
    font-size: 1.05rem;
    margin-bottom: var(--spacing-sm);
}

/* CTA TABLET */
.cta-button {
    min-width: 290px;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 1.1rem;
}

/* TRAVEL SECTION TABLET */
.section-title {
    font-size: 2.2rem;
    margin-bottom: var(--spacing-md);
}

.section-description {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
}

.travel-services {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--spacing-lg);
}

.service-item {
    padding: var(--spacing-md);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: var(--spacing-sm);
}

.service-img {
    width: 45px;
    height: 45px;
}

.service-title {
    font-size: 1rem;
}

/* LAYOUT ANTIGO REMOVIDO */
    .row {
        padding-right: 0px !important;
    }
    .container {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .logo {
        width: 20rem;
        margin: 2rem;
    }
    .ferramentas {
        margin: 0.5rem;
        font-size: 2rem;
    }
    .botao2 {
        color: white;
        text-decoration: none;
    }
    .integracoes {
        margin: 0.5rem;
        font-size: 2rem;
    }
    .botao3 {
        color: white;
        text-decoration: none;
    }
    .planos {
        margin: 0.5rem;
        font-size: 2rem;
    }
    .botao4 {
        color: white;
        text-decoration: none;
    }
    .videos {
        font-size: 2rem;
        margin: 0.5rem;
    }
    .botao7 {
        color: white;
        text-decoration: none;
    }
    .contatos {
        margin: 0.5rem;
        font-size: 2rem;
    }
    .botao5 {
        color: white;
        text-decoration: none;
    }
    .sessao {
        display: flex;
        justify-content: center;
    }
    .descricao1 {
        font-size: 2.25rem;
        margin-top: 4rem;
        margin-bottom: 3.5rem;
        text-align: center;
    }

    .lista1 {
        margin-top: 5.75rem;
        margin-bottom: 3.25rem;
        font-size: 1.25rem;
        margin-left: 0.25rem;
    }
    li {
        margin-top: 0.5rem;
    }
    .seta1 {
        display: none;
    }
    .zap {
        display: flex;
        justify-content: center;
    }
    .btn{
        width: 18.75rem;
        height: 5rem;
        margin-bottom: 4rem;
        border-color: rgb(61, 176, 219) !important;
        background-color: rgb(61, 176, 219) !important;
        
    }
    .entrar-cont2 {
        width: 17.1875rem;
        height: 3.125rem;
        font-size: 1.25rem;
        margin-right: 4rem;
        margin-bottom: 0px;
    }
    .botao6 {
        color: white;
        text-decoration: none;
    }
/* FIM DO "CABEÇALHO" */

/* INÍCIO DAS VENDAS DE VIAGENS */
    .viagens {
        background-size: cover;
        margin-top: 2.25rem;
    }
    .texto1 {
        font-size: 2rem;
        text-align: center;
    }
    .texto2 {
        font-size: 1.25rem;
        margin-top: 3.75rem;
        margin-left: 0.25rem;
    }

    .imagens {
        display: flex;
        align-items: center;     
        flex-direction: column;
        margin-top: 3rem;
        margin-bottom: 4rem;
    }
    .pacotes {
        width: 12.5rem;
    }
    .aereos {
        width: 12.5rem;
        margin-top: 5%;
    }
    .hoteis {
        width: 12.5rem;
        margin-top: 5%;
    }
    .passeios {
        width: 12.5rem;
        margin-top: 5%;
    }
    .carros {
        width: 12.5rem;
        margin-top: 5%;
    }
    .seguro {
        width: 12.5rem;
        margin-top: 5%;
    }
    .orcamento {
        width: 12.5rem;
        margin-top: 5%;
    }
/* FIM DAS VENDAS DE VIAGENS */

/* INÍCIO DOS BENEFÍCIOS */
    .benimagens {
        display: flex;
        flex-direction: column;
    }
    .pc {
        display: flex;
        justify-content: center;
        height: 22.5rem;
        margin-left: 0.25rem;
    }

    .beneficios {
        display: flex;
        justify-content: center;
        font-size: 2rem; 
        margin-top: 3rem;
        margin-left: 0.5rem;
    }
    .textinho {
        display: flex;
        font-size: 1.25rem;
        justify-content: center;
        margin-top: 2.5rem;
        text-align: center;
        margin-left: 0.75rem;
    }

    .lista2 {
        margin-top: 10%;
    }
    .listinha {
        display: flex;
        font-size: 1.25rem;
        justify-content: flex-start;
        margin-left: 2.5%;
    }
    .iconezinho {
        height: 2.5rem;
        width: 2.5rem;
        margin-left: 1.25rem;
    }
    .item1 {
        display: flex;
        flex-direction: row;
        vertical-align: middle;
        margin-top: 0px;
    }
    .item2 {
        display: flex;
        flex-direction: row;
        vertical-align: middle;
        margin-top: 1rem;
    }
    .item3 {
        display: flex;
        flex-direction: row;
        vertical-align: middle;
        margin-top: 1rem;
    }
    .item4 {
        display: flex;
        flex-direction: row;
        vertical-align: middle;
        margin-top: 1rem;
        margin-bottom: 1.5rem;
    }
    .participar {
        display: flex;
        justify-content: center;
    }
    .botaoParti {
        display: flex;
        justify-content: center;
        width: 17rem;
        height: 4rem;
        margin-top: 1rem;
        margin-bottom: 3rem;
        border-radius: 10px;
        border: none;
        border-color: rgb(61, 176, 219) !important;
        background-color: rgb(61, 176, 219) !important;
    }
    .buttonText {
        font-family: 'Open-sans', sans-serif;
        text-align: center;
        padding: 1rem;
    }
    .secaoVideos {
        display: flex;
        justify-content: center;
        margin-top: 10rem;
    }
    .video1 {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* margin: 2.5rem; */
    }
    .video {
        height: 15rem;
        width: 25rem;
    }
    .titulo {
        display: flex;
        justify-content: center;
        font-family: 'Open-sans', sans-serif;
        margin-top: 0.5rem;
        font-size: 2rem;
    }
/* FIM DOS BENEFÍCIOS */

/* INÍCIO DAS INTEGRAÇÕES */
    .site1 {
    margin-top: 1.75rem;
    margin-left: 0px;
    }
    .inter {
        display: flex;
        justify-content: center;
        font-size: 1.25rem;
    }
    .texto3 {
        font-size: 1.75rem;
        margin-top: 2rem;
        margin-bottom: 3rem;
    }

    .empresas {
        display: flex;
        justify-content: center;
        text-align: center;
    }
    .empresas0 {
        display: flex;
        flex-direction: column;
    }
    .empresa1 {
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    .empresa2 {
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    .empresa3 {
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    .empresa4 {
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    .empresa5 {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .cangoro {
        height: 12.5rem;
        width: 15.625rem;
        margin-left: 0.5rem; 
    }
    .omni {
        height: 12.5rem;
        width: 15.625rem;
        margin-left: 0.5rem;
        margin-top: 1.75rem;
    }
    .hotelbeds {
        height: 12.5rem;
        width: 15.625rem;
        margin-left: 0.5rem;
        margin-top: 1.75rem;
    }
    .ezlink {
        height: 12.5rem;
        width: 15.625rem;
        margin-left: 0.5rem;
        margin-top: 1.75rem;
    }
    .hoteldo {
        height: 12.5rem;
        width: 15.625rem;
        margin-left: 0.5rem;
        margin-top: 1.75rem;
    }
    .gol {
        height: 12.5rem;
        width: 15.625rem;
        margin-left: 0.5rem;
        margin-top: 1.75rem;
    }
    .amadeus {
        height: 12.5rem;
        width: 15.625rem;
        margin-left: 0.5rem;
        margin-top: 1.75rem;
    }
    .sabre {
        height: 12.5rem;
        width: 15.625rem;
        margin-left: 0.5rem;
        margin-top: 1.75rem;
    }
    .latam {
        height: 12.5rem;
        width: 15.625rem;
        margin-left: 0.5rem;
        margin-top: 1.75rem;
    }
    .arkbeds {
        height: 12.5rem;
        width: 15.625rem;
        margin-left: 0.5rem;
        margin-top: 1.75rem;
    }
    .copair {
        height: 12.5rem;
        width: 15.625rem;
        margin-left: 0.5rem;
        margin-top: 1.75rem;
    }
    .assisticard {
        height: 12.5rem;
        width: 15.625rem;
        margin-left: 0.5rem;
        margin-top: 1.75rem;
    }
    .azul {
        height: 12.5rem;
        width: 15.625rem;
        margin-left: 0.5rem;
        margin-top: 1.75rem;
    }
    .restel {
        height: 12.5rem;
        width: 15.625rem;
        margin-left: 0.5rem;
        margin-top: 1.75rem;
    }
    .ark4 {
        height: 12.5rem;
        width: 15.625rem;
        margin-left: 0.5rem;
        margin-top: 1.75rem;
        margin-bottom: 5rem;
    }
/* FIM DAS INTEGRAÇÕES */

/* INÍCIO DOS PLANOS */
    .acesso {
        font-size: 1.75rem; 
        margin: 1rem;
        margin-top: 3.5rem;
        text-align: center;
    }
    .site {
        font-size: 1.25rem;
        margin: 1rem;
        margin-top: 1.5rem;
        text-align: center;
    }

    .siglas {
        display: flex;
        justify-content: center;
    }
    .imagenzinhas {
        display: flex;
        justify-content: center;
        flex-direction: column;
        margin-top: 4rem;
    }
    .lgpd {
        height: 21.875rem;
        width: 14.0625rem;
    }
    .tls {
        margin-top: 2rem;
        height: 21.875rem;
        width: 14.0625rem;
    }
    .seo {
        margin-top: 2rem;
        height: 21.875rem;
        width: 14.0625rem;
        margin-bottom: 1rem;
    }

    .contrato {
        display: none;
    }

    .listinha1 {
        font-size: 1.25rem;
        margin-left: 0.75rem;
    }
    .icone {
        height: 2.5rem;
        width: 2.5rem;
    }
    .item8 {
        display: flex;
        flex-direction: row;
        margin-top: 2.75rem;
        vertical-align: middle;
    }
    .item9 {
        display: flex;
        flex-direction: row;
        margin-top: 1rem;
        vertical-align: middle;
    }

    .de {
        font-size: 1.5rem;
        margin-top: 3rem;
        margin-left: 0.75rem;
    }
    .por {
        font-size: 2rem;
        margin-top: 0.75rem;
        margin-left: 0.75rem;
    }
    .preco1 {
        font-size: 2.25rem;
    }
    .preco2 {
        font-size: 2.5rem;
    }

    .condicao {
        font-size: 1.5rem;
        margin-left: 1rem;
    }
    .taxa {
        font-size: 1.5rem;
        margin-left: 1rem;
    }

    .botaoPlano {
        display: flex;
        justify-content: center;
    }
    .botao1 {
        display: flex;
        justify-content: center;
        width: 15.625rem;
        height: 4.0625rem;
        margin-top: 3rem;
        border-color: rgb(61, 176, 219) !important;
        background-color: rgb(61, 176, 219) !important;
    }
    .adquirir {
        display: flex;
        justify-content: center;
        margin-top: 2.5%;
        font-size: 1.5rem;
    }

    #cadastroModalLabel {
        line-height: normal;
    }
    .modal-footer {
        padding: 1rem;
    }
    .botaoForm2 {
        border-radius: 0.5rem;
        border-color: rgb(67, 194, 240) !important;
        background-color: rgb(67, 194, 240) !important;
        color: white;
        border: none;
        width: 8.5rem;
        height: 3.25rem;
        font-family: 'Open-sans', sans-serif;
        font-size: 1rem;
        padding: 0.25rem;
        margin-top: 0.25rem;
        margin-right: 0.25rem;
    }
    .opcoesLayout {
        display: flex;
        justify-content: center;
    }
    .circular {
        display: flex;
        align-self: center;
        border-radius: 50%;
        border-color: gray;
        background-color: white;
        width: 2rem;
        height: 2rem;
        margin-left: 0.75rem;
        margin-right: 0.25rem;
    }
    .circular01 {
        display: flex;
        align-self: center;
        border-radius: 50%;
        border-color: gray;
        background-color: white;
        width: 2.25rem;
        height: 2.25rem;
    }
    .circular02 {
        display: flex;
        align-self: center;
        border-radius: 50%;
        border-color: gray;
        background-color: white;
        width: 2.25rem;
        height: 2.25rem;
    }
    .sessaoLayout {
        display: flex;
        justify-content: space-evenly;
    }
    .sessaoLayout1 {
        display: flex;
        align-items: center;
    }
    .sessaoLayout2 {
        display: flex;
        align-items: center;
    }
    .layout1 {
        margin: 0.25rem;
    }
    .layout {
        margin: 0.25rem;
    }
    .miniSessao001 {
        display: flex;
        flex-direction: row;
    }
    .opcoes {
        display: flex;
        align-self: center;
    }
    .miniSessao2 {
        margin: 0.75rem;
    }
    .miniSessao02 {
        margin: 0.75rem;
    }
    .possuiSite {
        display: flex;
        align-self: center;
        margin-bottom: 0px;
    }

    .botaoForm {
        border-radius: 0.5rem;
        border-color: rgb(67, 194, 240) !important;
        background-color: rgb(67, 194, 240) !important;
        color: white;
        border: none;
        width: 7.75rem;
        height: 3rem;
        font-family: 'Open-sans', sans-serif;
        font-size: 1.25rem;
    }
    .botaoForm1 {
        border-radius: 0.5rem;
        border-color: rgb(67, 194, 240) !important;
        background-color: rgb(67, 194, 240) !important;
        color: white;
        border: none;
        width: 10rem;
        height: 4.5rem;
        font-family: 'Open-sans', sans-serif;
        font-size: 1.25rem;
        padding: 0.25rem;
    }
    .ultimaSessao {
        display: flex;
        justify-content: center;
    }
    .sessaoBox {
        display: flex;
        justify-content: space-evenly;
        margin-top: 1.5rem;
    }
/* FIM DOS PLANOS */

/* INÍCIO DO FOOTER */
.logo1 {
    display: flex;
    justify-content: center;
    margin-left: 2.5rem;
    margin-bottom: 4rem;
    margin-top: 4rem;
}
.contato1 {
    margin-left: 0.25rem;
}
.contato {
    font-size: 1.75rem;
}
.numero {
    font-size: 1.75rem;
    margin-top: 1.5rem;
}
.local {
    font-size: 1.75rem;
    margin-top: 1.5rem;
    margin-bottom: 1.75rem;
}

.sobre {
    font-size: 2rem;
    margin-top: 5rem;
    margin-left: 0.25rem;
}
.sobreTexto1 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-left: 0.25rem;
}
.sobreTexto2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-left: 0.25rem;
    margin-bottom: 3.5rem;
}
/* FIM DO FOOTER */
}