/* ===== VARIÁVEIS CSS ===== */
:root {
    --main-color: #b9e9fb;
    --primary-text-color: #000000;
    --secondary-text-color: #FFFFFF;
    --secondary-color: #84BDD9;
    --tertiary-color: #407B98;
    --secondary-bg-color: #257293;
    --accent-color: #2D8B9D;
    --button-color: #1C82AD;
    --light-accent: #E8F9FD;
}

/* ===== RESET E CONFIGURAÇÕES GLOBAIS ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    background-color: var(--main-color);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== HEADER E BANNER ===== */
#header {
    display: flex;
    min-height: 70vh;
    width: 100%;
    background-image: url("../img/capa_principal1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-direction: column;
    position: relative;
}

#header__banner {
    display: flex;
    align-items: center;
    padding: 30px 100px;
    justify-content: flex-end;
    position: relative;
    z-index: 10;
}

/* Navegação */
.navbar {
    display: flex;
    gap: 30px;
    transition: all 0.3s ease;
}

.navbar a {
    text-decoration: none;
    color: var(--primary-text-color);
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.navbar a:hover {
    color: var(--tertiary-color);
}

.navbar a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--tertiary-color);
    transition: width 0.3s ease;
}

.navbar a:hover::after {
    width: 100%;
}

/* Menu Mobile */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-text-color);
    margin: 3px 0;
    transition: 0.3s ease;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Overlay do menu mobile */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.menu-overlay.active {
    display: block;
}

/* Imagem do header */
.header__info {
    display: flex;
    align-items: center;
    flex: 1;
    padding: 20px;
}

.header_img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    margin-left: 300px;
}

/* ===== SEÇÃO QUEM SOMOS ===== */
#information {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 100px;
    background-color: var(--main-color);
}

.information__text1, 
.information__text2, 
.information__text3 {
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background-color: var(--main-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.information__text1:hover,
.information__text2:hover,
.information__text3:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.information__titulo1, 
.information__titulo2, 
.information__titulo3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--tertiary-color);
    font-weight: 700;
}

.information__descricao1, 
.information__descricao2 {
    color: var(--primary-text-color);
    font-size: 16px;
}

.information__descricao3 {
    list-style: none;
    padding: 0;
}

.information__descricao3 li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    color: var(--primary-text-color);
}

.information__descricao3 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--tertiary-color);
    font-weight: bold;
}

/* ===== SEÇÃO LIBERDADE PARA VIAJAR ===== */
#message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background-image: url("../img/map.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    text-align: center;
}

#message::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.message__principal {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.message__title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-text-color);
    line-height: 1.2;
}

.message__subTitle {
    font-size: 28px;
    font-weight: 600;
    color: var(--tertiary-color);
    margin-bottom: 30px;
}

/* Botões */
.btn_faleConosco, 
.btn__faleConosco,
.btn_faleConosco_leberdade {
    background-color: var(--button-color);
    color: var(--secondary-text-color);
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(28, 130, 173, 0.3);
    text-decoration: none;
}

.btn_faleConosco:hover, 
.btn__faleConosco:hover,
.btn_faleConosco_leberdade:hover {
    background-color: var(--tertiary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(28, 130, 173, 0.4);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
}

/* ===== SEÇÃO PLANOS ===== */
#plans {
    padding: 60px 20px;
}

.plans__div {
    text-align: center;
    margin-bottom: 40px;
}

.plans__divs__text {
    max-width: 1200px;
    margin: 0 auto;
}

.plans__principal {
    margin-bottom: 30px;
}

#plans__title1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--tertiary-color);
    margin-bottom: -180px;
}

.img_div {
    max-width: 100%;
    height: auto;
    margin-bottom: 40px;
}

/* ===== CARROSSEL DE PLANOS ===== */
.carrossel__wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

#plans__carrossel {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 0px 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-top: -270px;
    align-items: baseline;
}

#plans__carrossel::-webkit-scrollbar {
    display: none;
}

.carrossel__1, .carrossel__2, .carrossel__3, .carrossel__4,
.carrossel__5, .carrossel__6, .carrossel__7, .carrossel__8 {
    flex: 0 0 300px;
    min-width: 300px;
    transition: transform 0.3s ease;
}

.carrossel__1:hover, .carrossel__2:hover, .carrossel__3:hover, .carrossel__4:hover,
.carrossel__5:hover, .carrossel__6:hover, .carrossel__7:hover, .carrossel__8:hover {
    transform: translateY(-10px);
}

.car__1, .car__2, .car__3, .car__4, .car__5, .car__6, .car__7, .car__8 {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.car__1:hover, .car__2:hover, .car__3:hover, .car__4:hover,
.car__5:hover, .car__6:hover, .car__7:hover, .car__8:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Botões do carrossel */
.btn__carrossel {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--button-color);
    color: var(--secondary-text-color);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: bold;
}

.btn__carrossel:hover {
    background-color: var(--tertiary-color);
    transform: translateY(-50%) scale(1.1);
}

/* ===== SEÇÃO DEPOIMENTOS ===== */
.depoimentos {
    padding: 60px 20px;
    margin-top: 60px;
    margin-bottom: 80px;
}

.testimonials__1 {
    text-align: center;
    margin-bottom: 40px;
}

#depoimentos__text {
    font-size: 42px;
    font-weight: 700;
    color: var(--tertiary-color);
}

/* Carrossel de depoimentos */
#testimonials {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    gap: 20px;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

#testimonials::-webkit-scrollbar {
    display: none;
}

.testimonials__img1, .testimonials__img2, .testimonials__img3, .testimonials__img4,
.testimonials__img5, .testimonials__img6, .testimonials__img7, .testimonials__img8 {
    flex: 0 0 300px;
    min-width: 300px;
    transition: transform 0.3s ease;
}

.testimonials__img1:hover, .testimonials__img2:hover, .testimonials__img3:hover, .testimonials__img4:hover,
.testimonials__img5:hover, .testimonials__img6:hover, .testimonials__img7:hover, .testimonials__img8:hover {
    transform: scale(1.05);
}

.dp1, .dp2, .dp3, .dp4, .dp5, .dp6, .dp7, .dp8 {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.dp1:hover, .dp2:hover, .dp3:hover, .dp4:hover,
.dp5:hover, .dp6:hover, .dp7:hover, .dp8:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* ===== IMAGEM DO RODAPÉ ===== */
.rodape__img__container {
    width: 100%;
    display: flex;
    justify-content: flex-end; /* Muda para flex-end se quiser na direita */
    align-items: center;
    margin-top: 220px;
    z-index: 100;
    padding-left: 50px;

}

.rodape__img {
    height: 490px; /* Defina aqui o tamanho desejado */
    width: auto;
    margin-top: 130px;
}


/* ===== RODAPÉ (CONTATO) ===== */
#contact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 10px 0px;
    background-color: var(--secondary-color);
    color: var(--primary-text-color);
}

.contact__logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo__rodape {
    max-width: 150px;
    height: auto;
}

.atendimento, .funcionamento {
    line-height: 1.8;
}

.atendimento p, .funcionamento p {
    margin-bottom: 10px;
    font-size: 16px;
}

.atendimento strong, .funcionamento strong {
    display: block;
    margin-bottom: 15px;
    font-size: 20px;
    color: var(--tertiary-color);
    font-weight: 700;
}

/* ===== RODAPÉ FINAL ===== */
.rodape__final {
    background-color: var(--secondary-bg-color);
    color: var(--secondary-text-color);
    text-align: center;
    padding: 20px 0;
}

.rodape__final__text p {
    font-size: 14px;
    margin: 0;
}

/* ===== MEDIA QUERIES - RESPONSIVIDADE ===== */

/* ===== TABLETS E TELAS MÉDIAS (768px - 1024px) ===== */
@media screen and (max-width: 1024px) {
    /* Header */
    #header {
        display: flex;
        min-height: 20vh;
        width: 100%;
        background-image: url("../img/capa_principal1.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        flex-direction: column;
        position: relative;
    }
    
    #header__banner {
        display: flex;
        padding: 30px 100px;
        margin-left: 130px;
    }
    .header_img {
        max-height: 270px;
        margin-left: 70px;
    }
    
    /* Seção Information */
    #information {
        padding: 40px 50px;
        gap: 20px;
    }
    
    /* Message */
    .message__title {
        font-size: 36px;
    }
    
    .message__subTitle {
        font-size: 24px;
    }
    
    /* Plans */
    #plans__title1 {
        font-size: 36px;
        margin-bottom: -150px;
    }
    
    #plans__carrossel {
        margin-top: -200px;
    }
    
    /* Contact */
    #contact {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center; /* Centraliza no eixo horizontal */
        text-align: center;  /* Centraliza o texto */
    }

    
    /* Rodapé Image */
    
    .rodape__img {
        height: 400px;
    }

}

/* ===== TABLETS (768px - 991px) ===== */
@media screen and (max-width: 991px) {
    /* Mostrar menu mobile */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Esconder menu desktop */
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--main-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .navbar.active {
        right: 0;
    }
    
    .navbar a {
        font-size: 18px;
        padding: 15px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    /* Mudança de cor do hambúrguer quando ativo */
    .mobile-menu-toggle.active .bar {
        background-color: var(--tertiary-color);
    }
    
    /* Header */
    .header_img {
        margin-left: 0px;
        max-height: 200px;
    }

    #header {
        display: flex;
        min-height: -40vh;
        width: 100%;
        background-image: url("../img/capa_principal1.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        flex-direction: column;
        position: relative;
    }
    
    #header__banner {
        padding: 10px 70px; 
    }

    
    /* Plans */
    .carrossel__wrapper {
        padding: 0 40px;
    }
    
    /* Ajustar tamanho dos cards do carrossel */
    .carrossel__1, .carrossel__2, .carrossel__3, .carrossel__4,
    .carrossel__5, .carrossel__6, .carrossel__7, .carrossel__8 {
        flex: 0 0 280px;
        min-width: 280px;
    }
    
    .testimonials__img1, .testimonials__img2, .testimonials__img3, .testimonials__img4,
    .testimonials__img5, .testimonials__img6, .testimonials__img7, .testimonials__img8 {
        flex: 0 0 280px;
        min-width: 280px;
    }
}

/* ===== SMARTPHONES (576px - 767px) ===== */
@media screen and (max-width: 767px) {
    /* Header */
    #header {
        min-height: 60vh;
    }
    
    #header__banner {
        padding: 15px 20px;
    }
    
    .navbar {
        width: 280px;
    }
    
    .header__info {
        padding: 15px 20px;
    }
    
    .header_img {
        max-height: 300px;
        margin-left: -10px;
    }
    
    /* Information */
    #information {
        padding: 30px 20px;
        grid-template-columns: 1fr;
    }
    
    .information__text1, 
    .information__text2, 
    .information__text3 {
        padding: 20px;
    }
    
    .information__titulo1, 
    .information__titulo2, 
    .information__titulo3 {
        font-size: 20px;
    }
    
    /* Message */
    #message {
        padding: 60px 20px;
        background-attachment: scroll;
    }
    
    .message__title {
        font-size: 28px;
    }
    
    .message__subTitle {
        font-size: 20px;
    }
    
    /* Plans */
    #plans__title1 {
        font-size: 28px;
        margin-bottom: -120px;
    }
    
    #plans__carrossel {
        margin-top: -150px;
    }
    
    .carrossel__wrapper {
        padding: 0 30px;
    }
    
    .carrossel__1, .carrossel__2, .carrossel__3, .carrossel__4,
    .carrossel__5, .carrossel__6, .carrossel__7, .carrossel__8 {
        flex: 0 0 250px;
        min-width: 250px;
    }
    
    /* Depoimentos */
    #depoimentos__text {
        font-size: 28px;
    }
    
    .testimonials__img1, .testimonials__img2, .testimonials__img3, .testimonials__img4,
    .testimonials__img5, .testimonials__img6, .testimonials__img7, .testimonials__img8 {
        flex: 0 0 250px;
        min-width: 250px;
    }
    
    /* Contact */
    #contact {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center; /* Centraliza no eixo horizontal */
        text-align: center;  /* Centraliza o texto */
    }
    
    /* Rodapé Image */
    .rodape__img__container {
        margin-top: 100px;
        padding-left: 20px;
        display: flex;
    }
    
    .rodape__img {
        height: 300px;
        margin-top: 50px;
    }
    
    /* Botões */
    .btn_faleConosco, 
    .btn__faleConosco,
    .btn_faleConosco_leberdade {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .whatsapp-icon {
        width: 20px;
        height: 20px;
    }
}

/* ===== SMARTPHONES PEQUENOS (max-width: 576px) ===== */
@media screen and (max-width: 576px) {
    /* Header */


    #header {
        display: flex;
        min-height: 10vh;
        width: 100%;
        background-image: url("../img/capa_principal1.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        flex-direction: column;
        position: relative;
    }
    
    #header__banner {
        display: flex;
        padding: 0px 20px;
    }
    
    .navbar {
        width: 250px;
    }
    
    .navbar a {
        font-size: 16px;
        padding: 12px 0;
    }
    
    .header__info {
        padding: 10px 15px;
    }
    
    .header_img {
        max-height: 100px;
        margin-left: 30px;
    }
    
    /* Information */
    #information {
        padding: 20px 15px;
    }
    
    .information__text1, 
    .information__text2, 
    .information__text3 {
        padding: 15px;
    }
    
    .information__titulo1, 
    .information__titulo2, 
    .information__titulo3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .information__descricao1, 
    .information__descricao2 {
        font-size: 14px;
    }
    
    /* Message */
    #message {
        padding: 40px 15px;
    }
    
    .message__title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .message__subTitle {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    /* Plans */
    #plans {
        padding: 40px 15px;
    }
    
    #plans__title1 {
        font-size: 24px;
        margin-bottom: -100px;
    }
    
    #plans__carrossel {
        margin-top: -130px;
    }
    
    .carrossel__wrapper {
        padding: 0 20px;
    }
    
    .carrossel__1, .carrossel__2, .carrossel__3, .carrossel__4,
    .carrossel__5, .carrossel__6, .carrossel__7, .carrossel__8 {
        flex: 0 0 220px;
        min-width: 220px;
    }
    
    /* Botões do carrossel */
    .btn__carrossel {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    /* Depoimentos */
    .depoimentos {
        padding: 40px 15px;
        margin-top: 40px;
        margin-bottom: 60px;
    }
    
    #depoimentos__text {
        font-size: 24px;
    }
    
    .testimonials__img1, .testimonials__img2, .testimonials__img3, .testimonials__img4,
    .testimonials__img5, .testimonials__img6, .testimonials__img7, .testimonials__img8 {
        flex: 0 0 220px;
        min-width: 220px;
    }
    
    /* Contact */
    #contact {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center; /* Centraliza no eixo horizontal */
        text-align: center;  /* Centraliza o texto */
    }
    
    .atendimento strong, .funcionamento strong {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .atendimento p, .funcionamento p {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    /* Logo do rodapé */
    .logo__rodape {
        max-width: 120px;
    }
    
    /* Rodapé Image */
    .rodape__img__container {
        margin-top: 80px;
        padding-left: 15px;
         display: flex;
        justify-content: flex-end;
    }
    
    .rodape__img {
        height: 250px;
        margin-top: 30px;
    }
    
    /* Botões */
    .btn_faleConosco, 
    .btn__faleConosco,
    .btn_faleConosco_leberdade {
        padding: 10px 20px;
        font-size: 13px;
        border-radius: 25px;
    }
    
    .whatsapp-icon {
        width: 18px;
        height: 18px;
    }
    
    /* Rodapé final */
    .rodape__final {
        padding: 15px 0;
    }
    
    .rodape__final__text p {
        font-size: 12px;
    }
}

/* ===== SMARTPHONES MUITO PEQUENOS (max-width: 375px) ===== */
@media screen and (max-width: 375px) {
    /* Header */
    .header_img {
        max-height: 90px;
    }
    
    /* Information */
    .information__titulo1, 
    .information__titulo2, 
    .information__titulo3 {
        font-size: 16px;
    }
    
    .information__descricao1, 
    .information__descricao2 {
        font-size: 13px;
    }
    
    /* Message */
    .message__title {
        font-size: 20px;
    }
    
    .message__subTitle {
        font-size: 16px;
    }
    
    /* Plans */
    #plans__title1 {
        font-size: 20px;
        margin-bottom: -80px;
    }
    
    #plans__carrossel {
        margin-top: -110px;
    }
    
    .carrossel__1, .carrossel__2, .carrossel__3, .carrossel__4,
    .carrossel__5, .carrossel__6, .carrossel__7, .carrossel__8 {
        flex: 0 0 200px;
        min-width: 200px;
    }
    
    /* Depoimentos */
    #depoimentos__text {
        font-size: 20px;
    }
    
    .testimonials__img1, .testimonials__img2, .testimonials__img3, .testimonials__img4,
    .testimonials__img5, .testimonials__img6, .testimonials__img7, .testimonials__img8 {
        flex: 0 0 200px;
        min-width: 200px;
    }
    
    /* Rodapé Image */
    .rodape__img {
        height: 200px;
    }
    
    /* Navbar mobile */
    .navbar {
        width: 220px;
    }
    
    .navbar a {
        font-size: 14px;
    }
}

/* ===== AJUSTES ESPECÍFICOS PARA ORIENTAÇÃO LANDSCAPE EM DISPOSITIVOS MÓVEIS ===== */
@media screen and (max-height: 500px) and (orientation: landscape) {
    #header {
        min-height: 80vh;
    }
    
    #message {
        padding: 30px 20px;
    }
    
    .message__title {
        font-size: 24px;
    }
    
    .message__subTitle {
        font-size: 18px;
    }
}

/* ===== AJUSTES PARA TELAS MUITO GRANDES (acima de 1400px) ===== */
@media screen and (min-width: 1400px) {
    #header__banner {
        padding: 30px 120px;
    }
    
    #information {
        padding: 80px 120px;
    }
    
    #contact {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        padding: 60px 100px;
    }
    
    .carrossel__wrapper {
        max-width: 1400px;
        padding: 0 80px;
    }
    
    .message__title {
        font-size: 48px;
    }
    
    .message__subTitle {
        font-size: 32px;
    }
    
    #plans__title1 {
        font-size: 48px;
    }
    
    #depoimentos__text {
        font-size: 48px;
    }
}

/* ===== MELHORIAS DE ACESSIBILIDADE E UX ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== AJUSTES PARA IMPRESSÃO ===== */
@media print {
    .mobile-menu-toggle,
    .btn__carrossel,
    .menu-overlay {
        display: none !important;
    }
    
    .navbar {
        position: static !important;
        background: none !important;
        box-shadow: none !important;
        flex-direction: row !important;
        width: auto !important;
        height: auto !important;
    }
    
    #header {
        background-image: none !important;
    }
    
    #message {
        background-image: none !important;
    }
}

/* ===== MEDIA QUERIES ADICIONAIS ===== */

/* ===== TELAS INTERMEDIÁRIAS (1025px - 1199px) ===== */
@media screen and (min-width: 1025px) and (max-width: 1199px) {
    /* Header */
    #header__banner {
        padding: 25px 70px;
    }
    
    .header_img {
        max-height: 380px;
        margin-left: 150px;
    }
    
    /* Information */
    #information {
        padding: 50px 70px;
        gap: 25px;
    }
    
    .information__text1, 
    .information__text2, 
    .information__text3 {
        padding: 25px;
    }
    
    /* Plans */
    #plans__title1 {
        font-size: 38px;
        margin-bottom: -160px;
    }
    
    #plans__carrossel {
        margin-top: -210px;
    }
    
    .carrossel__wrapper {
        padding: 0 50px;
    }
    
    /* Contact */
    #contact {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center; /* Centraliza no eixo horizontal */
        text-align: center;  /* Centraliza o texto */
    }

    
    /* Rodapé Image */
    .rodape__img__container {
        margin-top: 180px;
        padding-left: 40px;
    }
    
    .rodape__img {
        height: 450px;
        margin-top: 100px;
    }
}

/* ===== TELAS MÉDIAS-GRANDES (1200px - 1399px) ===== */
@media screen and (min-width: 1200px) and (max-width: 1399px) {
    /* Header */
    #header__banner {
        padding: 30px 80px;
    }
    
    .header_img {
        max-height: 400px;
        margin-left: 200px;
    }
    
    /* Information */
    #information {
        padding: 60px 80px;
        gap: 30px;
    }
    
    /* Message */
    .message__title {
        font-size: 44px;
    }
    
    .message__subTitle {
        font-size: 30px;
    }
    
    /* Plans */
    #plans__title1 {
        font-size: 44px;
        margin-bottom: -200px;
    }
    
    #plans__carrossel {
        margin-top: -250px;
    }
    
    .carrossel__wrapper {
        max-width: 1300px;
        padding: 0 60px;
    }
    
    /* Depoimentos */
    #depoimentos__text {
        font-size: 44px;
    }
    
    /* Contact */
    #contact {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center; /* Centraliza no eixo horizontal */
        text-align: center;  /* Centraliza o texto */
    }

    
    /* Rodapé Image */
    .rodape__img__container {
        margin-top: 200px;
        padding-left: 45px;
    }
    
    .rodape__img {
        height: 480px;
        margin-top: 120px;
    }
}

/* ===== iPad PRO LANDSCAPE (1366px) ===== */
@media screen and (min-width: 1366px) and (max-width: 1366px) and (orientation: landscape) {
    /* Header */
    #header__banner {
        padding: 30px 90px;
    }
    
    .header_img {
        margin-left: 220px;
    }
    
    /* Information */
    #information {
        padding: 65px 90px;
    }
    
    /* Plans */
    .carrossel__wrapper {
        max-width: 1200px;
    }
    
    /* Contact */
    #contact {
        padding: 60px 30px;
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Rodapé Image */
    .rodape__img__container {
        padding-left: 50px;
    }
}

@media screen and (min-width: 1440px) {

    /* Header */
    .header_img {
        margin-left: 100px;
    }

    #header {
        display: flex;
        min-height: 30vh;
        width: 100%;
        background-image: url("../img/capa_principal1.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        flex-direction: column;
        position: relative;
    }
    
    #header__banner {
        display: flex;
        padding: 30px 100px;
        margin-left: 100px;
    }


}


/* ===== TELAS GRANDES (1600px - 1919px) ===== */
@media screen and (min-width: 1600px) and (max-width: 1919px) {
    /* Header */
    #header__banner {
        padding: 35px 150px;
    }
    
    .header_img {
        max-height: 450px;
        margin-left: 350px;
    }
    
    /* Information */
    #information {
        padding: 80px 150px;
        gap: 40px;
        max-width: 1500px;
        margin: 0 auto;
    }
    
    .information__text1, 
    .information__text2, 
    .information__text3 {
        padding: 35px;
    }
    
    /* Message */
    #message {
        padding: 120px 40px;
    }
    
    .message__title {
        font-size: 50px;
    }
    
    .message__subTitle {
        font-size: 34px;
    }
    
    /* Plans */
    #plans {
        padding: 80px 40px;
    }
    
    #plans__title1 {
        font-size: 50px;
        margin-bottom: -220px;
    }
    
    #plans__carrossel {
        margin-top: -290px;
    }
    
    .carrossel__wrapper {
        max-width: 1500px;
        padding: 0 100px;
    }
    
    .carrossel__1, .carrossel__2, .carrossel__3, .carrossel__4,
    .carrossel__5, .carrossel__6, .carrossel__7, .carrossel__8 {
        flex: 0 0 320px;
        min-width: 320px;
    }
    
    /* Depoimentos */
    .depoimentos {
        padding: 80px 40px;
    }
    
    #depoimentos__text {
        font-size: 50px;
    }
    
    #testimonials {
        max-width: 1500px;
    }
    
    .testimonials__img1, .testimonials__img2, .testimonials__img3, .testimonials__img4,
    .testimonials__img5, .testimonials__img6, .testimonials__img7, .testimonials__img8 {
        flex: 0 0 320px;
        min-width: 320px;
    }
    
    /* Contact */
    #contact {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        padding: 60px 100px;
    }
    
    /* Rodapé Image */
    .rodape__img__container {
        margin-top: 250px;
        padding-left: 60px;
        max-width: 1500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .rodape__img {
        height: 520px;
        margin-top: 140px;
    }
}

/* ===== TELAS MUITO GRANDES (1920px e acima) ===== */
@media screen and (min-width: 1920px) {
    /* Container geral para limitar largura máxima */
    #header__banner,
    #information,
    #contact {
        max-width: 1800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Header */
    #header__banner {
        padding: 40px 200px;
    }
    
    .header_img {
        max-height: 500px;
        margin-left: 400px;
    }
    
    /* Information */
    #information {
        padding: 100px 200px;
        gap: 50px;
    }
    
    .information__text1, 
    .information__text2, 
    .information__text3 {
        padding: 40px;
    }
    
    .information__titulo1, 
    .information__titulo2, 
    .information__titulo3 {
        font-size: 26px;
    }
    
    .information__descricao1, 
    .information__descricao2 {
        font-size: 18px;
    }
    
    /* Message */
    #message {
        padding: 140px 60px;
    }
    
    .message__title {
        font-size: 54px;
    }
    
    .message__subTitle {
        font-size: 38px;
    }
    
    /* Plans */
    #plans {
        padding: 100px 60px;
    }
    
    #plans__title1 {
        font-size: 54px;
        margin-bottom: -250px;
    }
    
    #plans__carrossel {
        margin-top: -320px;
    }
    
    .carrossel__wrapper {
        max-width: 1800px;
        padding: 0 120px;
    }
    
    .carrossel__1, .carrossel__2, .carrossel__3, .carrossel__4,
    .carrossel__5, .carrossel__6, .carrossel__7, .carrossel__8 {
        flex: 0 0 350px;
        min-width: 350px;
    }
    
    /* Depoimentos */
    .depoimentos {
        padding: 100px 60px;
    }
    
    #depoimentos__text {
        font-size: 54px;
    }
    
    #testimonials {
        max-width: 1800px;
    }
    
    .testimonials__img1, .testimonials__img2, .testimonials__img3, .testimonials__img4,
    .testimonials__img5, .testimonials__img6, .testimonials__img7, .testimonials__img8 {
        flex: 0 0 350px;
        min-width: 350px;
    }
    
    /* Contact */
    #contact {
        padding: 100px 200px;
        gap: 60px;
    }
    
    .logo__rodape {
        max-width: 180px;
    }
    
    .atendimento strong, .funcionamento strong {
        font-size: 22px;
    }
    
    .atendimento p, .funcionamento p {
        font-size: 18px;
    }
    
    /* Rodapé Image */
    .rodape__img__container {
        margin-top: 280px;
        padding-left: 80px;
        max-width: 1800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .rodape__img {
        height: 560px;
        margin-top: 160px;
    }
    
    /* Botões maiores para telas grandes */
    .btn_faleConosco, 
    .btn__faleConosco,
    .btn_faleConosco_leberdade {
        padding: 18px 35px;
        font-size: 18px;
        border-radius: 35px;
    }
    
    .whatsapp-icon {
        width: 26px;
        height: 26px;
    }
}

/* ===== AJUSTES ESPECÍFICOS PARA ULTRA WIDE (2560px e acima) ===== */
@media screen and (min-width: 2560px) {
    /* Limitar largura máxima para evitar elementos muito esticados */
    body {
        max-width: 9400px;
        margin: 0 auto;
    }

    /* Header */
    .header_img {
        margin-left: 200px;
    }

    #header {
        display: flex;
        min-height: 30vh;
        width: 100%;
        background-image: url("../img/capa_principal1.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        flex-direction: column;
        position: relative;
    }
    
    #header__banner {
        display: flex;
        padding: 90px 100px;
        margin-left: 1600px;
    }
    
    /* Information */
    #information {
        grid-template-columns: repeat(3, minmax(400px, 1fr));
        max-width: 2000px;
    }
    
    /* Plans e Depoimentos */
    .carrossel__wrapper,
    #testimonials {
        max-width: 2000px;
    }
    
    /* Contact */
    #contact {
        max-width: 100000px;
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Rodapé Image */
    .rodape__img__container {
        max-width: 100000px;
    }
}

/* ===== AJUSTES PARA TELAS DE ALTA DENSIDADE (Retina) ===== */
@media screen and (-webkit-min-device-pixel-ratio: 2),
       screen and (min-resolution: 192dpi),
       screen and (min-resolution: 2dppx) {
    .car__1, .car__2, .car__3, .car__4, .car__5, .car__6, .car__7, .car__8,
    .dp1, .dp2, .dp3, .dp4, .dp5, .dp6, .dp7, .dp8 {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}