* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #FFFFFF;
    color: #1b2f44;
}

header {
    width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
input,
button {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    color: #1b2f44;
}

.container {
    width: 100%;
    padding: 0 16px;
    margin: 0 auto;
}

/* =========================
   CABEÇALHO
========================= */

header .container {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.logo {
    width: 130px;
    height: auto;
    margin: 0 auto;
}

.logo img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.search {
    width: 100%;
    padding: 12px 14px;
    background-color: #F7F7F7;
    border: solid 0.5px #333;
    border-radius: 35px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search i {
    font-size: 18px;
    flex-shrink: 0;
}

input {
    width: 100%;
    border: none;
    background-color: #F7F7F7;
    font-weight: 400;
}

input:focus {
    outline: none;
}

.menu,
.menu-secundario {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu a,
.menu-secundario a {
    text-decoration: none;
    padding: 8px 10px;
    font-weight: 500;
}

.menu-secundario a {
    border-radius: 25px;
}

.menu-secundario .login {
    background-color: #1b2f44;
    color: #fff;
    font-size: 14px;
    text-align: center;
}

button {
    padding: 10px;
    border: none;
    background-color: #588BB3;
    border-radius: 20px;
    font-weight: bold;
}

/* =========================
   CALL TO ACTION
========================= */

#call-to-action {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

#call-to-action .container {
    padding: 16px;
    background-color: #588BB3;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.banner-cta {
    width: 100%;
    height: auto;
}

.banner-cta img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.linha-horizontal {
    display: none;
}

.aside-cta {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.titulo-cta {
    width: 100%;
    text-align: center;
}

.titulo-cta h1 {
    font-weight: bold;
    font-size: 28px;
    line-height: 1.1;
}

.conteudo-cta {
    text-align: center;
}

.conteudo-cta h3 {
    font-size: 16px;
}

.action {
    display: flex;
    justify-content: center;
}

.action h3 {
    padding: 12px 18px;
    font-size: 15px;
    background-color: #1b2f44;
    color: #fff;
    border-radius: 30px;
}

/* =========================
   SEÇÕES DE CARDS
========================= */

.cards {
    margin: 50px auto 0;
    display: flex;
    justify-content: center;
}

.cards-viagens {
    margin: 70px auto 0;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    background-color: #F7F7F7;
}

.titulo-categorias,
.titulo-viagens {
    margin-bottom: 15px;
}

.titulo-categorias h3,
.titulo-viagens h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

.titulo-categorias h2 {
    font-weight: bold;
}

.card-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.card-body {
    width: 100%;
    height: auto;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset,
        rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset,
        rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset,
        rgba(0, 0, 0, 0.06) 0px 2px 1px,
        rgba(0, 0, 0, 0.09) 0px 4px 2px,
        rgba(0, 0, 0, 0.09) 0px 8px 4px,
        rgba(0, 0, 0, 0.09) 0px 16px 8px,
        rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

.card-body img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.card-body h2 {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    color: #fff;
    font-weight: bolder;
    font-size: 20px;
}

.cards-viagens .card-body {
    display: block;
    position: initial;
    box-shadow: none;
    overflow: visible;
}

.cards-viagens .card-body img {
    box-shadow: none;
}

.titulo-card {
    margin-top: 10px;
}

.titulo-card h3 {
    font-size: 18px;
    font-weight: 600;
}

.text-card {
    margin-top: 4px;
}

.text-card h4 {
    font-size: 15px;
    color: #333;
}

/* =========================
   BANNER
========================= */

.banner {
    width: 100%;
    margin-top: 50px;
}

.banner .container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.banner .container img {
    width: 100%;
    height: auto;
    display: block;
}

/* =========================
   RODAPÉ
========================= */

#rodape {
    width: 100%;
    background-color: #F7F7F7;
    margin-top: 50px;
}

#rodape .container {
    display: flex;
    flex-direction: column;
    padding-top: 25px;
    padding-bottom: 25px;
    gap: 24px;
}

.logo-rodape,
.links-rapidos,
.info,
.links-social {
    width: 100%;
}

.logo-img {
    width: 180px;
}

.logo-img img {
    width: 100%;
    height: auto;
}

.text-rodape {
    color: #333;
    margin-top: 10px;
}

.text-rodape h5 {
    color: #333;
    line-height: 1.5;
}

.links-rodape {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.titulo-rodape h2 {
    font-weight: bold;
    margin-bottom: 8px;
}

.links-rodape a {
    text-decoration: none;
    font-size: 14px;
    color: #333;
}

.direitos,
.creditos {
    font-size: 14px;
    color: #333;
}

/* =========================
   VIDEO
========================= */

#video {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    position: relative;
}

#video .container {
    position: relative;
}

#video .container iframe {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.titulo-video h1 {
    position: absolute;
    left: 50%;
    bottom: 12%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    text-align: center;
    font-size: 28px;
    font-weight: bolder;
    color: #fff;
}

/* =========================
   BANNER DIVISÓRIO
========================= */

.banner-divisorio .container {
    margin-top: 70px;
}

.banner-divisorio img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

/* =========================
   CONTATO
========================= */

#contact-hero {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.contact-hero-box {
    width: 100%;
    background:
        linear-gradient(135deg, rgba(88, 139, 179, 0.12), rgba(27, 47, 68, 0.08));
    border: 1px solid rgba(27, 47, 68, 0.08);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 18px 50px rgba(27, 47, 68, 0.08);
}

.contact-hero-text {
    width: 100%;
}

.contact-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background-color: #1b2f44;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.contact-hero-text h1 {
    font-size: 32px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 14px;
}

.contact-hero-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5c6b;
    max-width: 650px;
}

.contact-hero-actions {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-primary-btn,
.contact-secondary-btn {
    text-decoration: none;
    text-align: center;
    padding: 14px 18px;
    border-radius: 999px;
    font-weight: 600;
    transition: 0.25s ease;
}

.contact-primary-btn {
    background-color: #1b2f44;
    color: #FFFFFF;
}

.contact-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(27, 47, 68, 0.15);
}

.contact-secondary-btn {
    border: 1px solid rgba(27, 47, 68, 0.15);
    background-color: #FFFFFF;
    color: #1b2f44;
}

.contact-secondary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(27, 47, 68, 0.08);
}

.contact-hero-side {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-highlight-card {
    background-color: #FFFFFF;
    border-radius: 18px;
    padding: 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 10px 30px rgba(27, 47, 68, 0.07);
}

.contact-highlight-icon,
.contact-info-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background-color: #588BB3;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-highlight-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-highlight-content p {
    font-size: 14px;
    color: #4b5c6b;
    line-height: 1.6;
}

#contact-info-cards {
    margin-top: 35px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.contact-info-card {
    background-color: #F7F7F7;
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 8px 24px rgba(27, 47, 68, 0.05);
}

.contact-info-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 18px;
    margin-bottom: 8px;
}

.contact-info-card p {
    font-size: 15px;
    color: #4b5c6b;
    line-height: 1.6;
}

#contact-form-area {
    margin-top: 50px;
    margin-bottom: 70px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-section-title h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 10px;
}

.contact-section-title p {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5c6b;
}

.contact-content-box {
    background-color: #F7F7F7;
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 8px 24px rgba(27, 47, 68, 0.05);
}

.contact-content-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-content-box ul {
    padding-left: 18px;
}

.contact-content-box li {
    color: #4b5c6b;
    line-height: 1.9;
    font-size: 15px;
}

.contact-form-box {
    background-color: #FFFFFF;
    border: 1px solid rgba(27, 47, 68, 0.08);
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 18px 50px rgba(27, 47, 68, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-field label {
    font-size: 14px;
    font-weight: 600;
    color: #1b2f44;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    border: 1px solid #d7e0e7;
    background-color: #f9fbfc;
    border-radius: 14px;
    padding: 14px 16px;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    color: #1b2f44;
    transition: 0.25s ease;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #8ea0af;
}

.contact-field input:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: #588BB3;
    box-shadow: 0 0 0 4px rgba(88, 139, 179, 0.15);
    background-color: #FFFFFF;
}

.contact-field textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-submit-btn {
    width: 100%;
    padding: 15px 18px;
    border: none;
    border-radius: 999px;
    background-color: #1b2f44;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(27, 47, 68, 0.18);
}

/* =========================
   >= 768px
========================= */

@media (min-width: 768px) {
    .container {
        padding: 0 24px;
    }

    header .container {
        gap: 14px;
    }

    .logo {
        width: 145px;
    }

    .menu,
    .menu-secundario {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 14px;
    }

    #call-to-action .container {
        padding: 22px;
    }

    .titulo-cta h1 {
        font-size: 38px;
    }

    .card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .titulo-video h1 {
        font-size: 38px;
        bottom: 18%;
    }

    #rodape .container {
        gap: 30px;
    }

        .contact-page {
        padding: 70px 0 90px;
    }

    .contact-hero {
        padding: 40px 32px;
        border-radius: 24px;
        margin-bottom: 32px;
    }

    .contact-badge {
        font-size: 14px;
        padding: 8px 16px;
    }

    .contact-hero-content h1 {
        font-size: 42px;
        line-height: 1.1;
    }

    .contact-hero-content p {
        font-size: 16px;
        max-width: 680px;
    }

    .contact-grid {
        gap: 24px;
    }

    .contact-info {
        gap: 18px;
    }

    .contact-info-card {
        padding: 18px;
        border-radius: 18px;
    }

    .contact-info-icon {
        width: 52px;
        height: 52px;
        font-size: 18px;
    }

    .contact-info-text h3 {
        font-size: 18px;
    }

    .contact-info-text p {
        font-size: 15px;
    }

    .contact-side-text {
        padding: 24px;
        border-radius: 20px;
    }

    .contact-side-text h2 {
        font-size: 28px;
    }

    .contact-side-text p {
        font-size: 15px;
        line-height: 1.7;
    }

    .contact-form-wrapper {
        padding: 28px;
        border-radius: 24px;
    }

    .contact-form {
        gap: 18px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input,
    .form-group textarea {
        padding: 15px 16px;
        font-size: 15px;
        border-radius: 14px;
    }

    .form-group textarea {
        min-height: 180px;
    }

    .contact-btn {
        width: fit-content;
        min-width: 220px;
        padding: 14px 22px;
        font-size: 15px;
    }

    #video .container iframe {
    height: 500px;
    }

}

/* =========================
   >= 1024px
========================= */

@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
        padding: 0 20px;
    }

    header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .logo {
        width: 150px;
        margin: 0;
    }

    .search {
        flex: 1;
        min-width: 260px;
        max-width: 430px;
        padding: 15px;
    }

    .search i {
        font-size: 20px;
    }

    .menu {
        display: flex;
        gap: 25px;
        flex-wrap: nowrap;
    }

    .menu a {
        padding: 5px;
    }

    .menu-secundario {
        display: flex;
        gap: 25px;
        flex-wrap: nowrap;
    }

    .menu-secundario a {
        padding: 10px;
    }

    #call-to-action {
        margin-top: 50px;
    }

    #call-to-action .container {
        padding: 25px;
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
        gap: 24px;
    }

    .banner-cta {
        width: 50%;
    }

    .aside-cta {
        width: 40%;
        gap: 20px;
    }

    .linha-horizontal {
        display: block;
        background-color: #1b2f44;
        width: 1px;
        min-height: 100%;
    }

    .titulo-cta {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .titulo-cta h1 {
        font-size: 44px;
        line-height: 46px;
    }

    .cards {
        margin-top: 70px;
    }

    .cards-viagens {
        margin-top: 120px;
        padding: 50px 0;
    }

    .card-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .titulo-categorias h3,
    .titulo-viagens h3 {
        font-size: 19px;
        margin-bottom: 10px;
    }

    .banner {
        margin-top: 70px;
    }

    #rodape {
        margin-top: 70px;
    }

    #rodape .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2%;
    }

    .logo-rodape {
        width: 23%;
    }

    .links-rapidos,
    .info,
    .links-social {
        width: auto;
    }

    .logo-img {
        width: 200px;
    }

    #video {
        margin-top: 70px;
    }

    #video .container video {
        border-radius: 25px;
    }

    .titulo-video h1 {
        bottom: 40%;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        font-size: 50px;
    }

    .banner-divisorio .container {
        margin-top: 120px;
    }

    .banner-divisorio img {
        height: 500px;
        border-radius: 25px;
    }

    .contact-page {
        padding: 80px 0 110px;
    }

    .contact-hero {
        padding: 55px 48px;
        margin-bottom: 40px;
    }

    .contact-hero-content h1 {
        font-size: 52px;
    }

    .contact-hero-content p {
        font-size: 17px;
        max-width: 760px;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 0.95fr 1.05fr;
        align-items: start;
        gap: 28px;
    }

    .contact-info {
        position: sticky;
        top: 24px;
    }

    .contact-info-card {
        padding: 20px;
    }

    .contact-side-text {
        margin-top: 6px;
        padding: 28px;
    }

    .contact-side-text h2 {
        font-size: 32px;
    }

    .contact-side-text p {
        font-size: 16px;
    }

    .contact-form-wrapper {
        padding: 34px;
    }

    .contact-form {
        gap: 20px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 15px;
    }

    .form-group textarea {
        min-height: 220px;
    }

    .contact-btn {
        padding: 15px 28px;
        font-size: 16px;
    }
}

/* =========================
   >= 1440px
========================= */

@media (min-width: 1440px) {
    .container {
        width: 1200px;
        max-width: none;
        padding: 0;
    }

    header .container {
        padding: 5px;
    }

    .search {
        padding: 15px;
        padding-left: 15px;
        max-width: none;
    }

    input {
        width: 400px;
    }

    #call-to-action .container {
        padding: 25px;
    }

    .banner-cta {
        width: 50%;
    }

    .aside-cta {
        width: 40%;
    }

    .titulo-cta h1 {
        font-size: 48px;
        line-height: 46px;
    }

    .cards {
        margin-top: 70px;
    }

    .cards-viagens {
        margin-top: 120px;
        padding: 50px;
    }

    .card-grid {
        display: flex;
        justify-content: space-between;
        gap: 0;
    }

    .card-body {
        width: 24%;
    }

    .cards-viagens .card-body {
        width: 24%;
    }

    .banner .container {
        width: 100%;
    }

    .logo-rodape {
        width: 23%;
    }

    #rodape .container {
        padding: 25px;
        align-items: center;
    }

    #video .container video {
        width: 1200px;
        height: 500px;
    }

    .titulo-video h1 {
        bottom: 40%;
        left: 35%;
        transform: none;
        font-size: 50px;
    }

    .banner-divisorio img {
        width: 1200px;
        height: 500px;
    }

    .contact-page {
        padding: 90px 0 120px;
    }

    .contact-hero {
        padding: 64px 56px;
        border-radius: 28px;
        margin-bottom: 48px;
    }

    .contact-hero-content h1 {
        font-size: 60px;
    }

    .contact-hero-content p {
        font-size: 18px;
        max-width: 820px;
    }

    .contact-grid {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 32px;
    }

    .contact-info {
        gap: 20px;
    }

    .contact-info-card {
        padding: 22px;
        border-radius: 20px;
    }

    .contact-info-icon {
        width: 58px;
        height: 58px;
        font-size: 20px;
    }

    .contact-info-text h3 {
        font-size: 19px;
    }

    .contact-info-text p {
        font-size: 16px;
    }

    .contact-side-text {
        padding: 30px;
        border-radius: 24px;
    }

    .contact-side-text h2 {
        font-size: 34px;
    }

    .contact-side-text p {
        font-size: 16px;
    }

    .contact-form-wrapper {
        padding: 40px;
        border-radius: 28px;
    }

    .form-row {
        gap: 18px;
    }

    .form-group input,
    .form-group textarea {
        padding: 16px 18px;
        font-size: 16px;
    }

    .form-group textarea {
        min-height: 240px;
    }

    .contact-btn {
        min-width: 240px;
        padding: 16px 30px;
        font-size: 16px;
    }
}
