@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Lisu+Bosa:wght@600;800&family=Poppins:wght@400;500;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");

:root {
    --primary-color-light: #20242f;
    --secondary-color: #f49e09;
    --extra-light: rgba(255, 255, 255, 0.5);
    --white: #ffffff;
    --blue: #01adfa;
    --max-width: 1200px;
    --header-font: "Lisu Bosa", serif;
    --header-height: 3.5rem;
    --black-color: #055160;
    --black-color-light: #8bb2c9;
    --black-color-lighten: hsl(220, 20%, 18%);
    --white-color: #fff;
    --body-color: hsl(220, 100%, 97%);
    --body-font: "Montserrat", sans-serif;
    --normal-font-size: .938rem;
    --font-regular: 400;
    --font-semi-bold: 600;
    --z-tooltip: 10;
    --z-fixed: 100;
    --primary-color: #00605f;
    --secondary-color: #017479;
    --text-dark: #0f172a;
    --text-light: #94a3b8;
    --white: #ffffff;
    --max-width: 1400px;
}


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/assets/amazoniaBanner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

@media (max-width:767px) {

    .destination__grid {
        gap: 0;
        display: grid;
    }

    .nameDestaque {
        width: 100px;
        color: rgb(255, 255, 255);
        font-size: 1.8rem;
        font-weight: 800;
        font-family: var(--header-font);
    }

    .destination__card img {
        width: 100%;
        height: 220px;
        border-radius: 10px;
        object-fit: cover;
    }

    .textoCriativos {
        position: relative;
        font-size: 5vw;
        color: white;
        text-transform: uppercase;
    }

    .imgLogo {
        border-radius: 240px;
        width: 25%;
        margin-top: 0px;
    }
}

@media (min-width:768px) {
    .col-md-6 {
        flex: 0 0 33%;
        max-width: 33%;
    }

    .destination__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .destination__card img {
        width: 100%;
        height: 228px;
        border-radius: 10px;
        object-fit: cover;
    }


    .nameDestaque {
        width: 100px;
        color: rgb(255, 255, 255);
        font-size: 1.8rem;
        font-weight: 800;
        font-family: var(--header-font);
    }


    .textoCriativos {
        position: relative;
        font-size: 28px;
        color: #ffffff;
        text-transform: uppercase;
    }

    .imgLogo {
        border-radius: 50%;
        width: 20%;
        display: flex;
        position: relative;
        margin: 10px;
    }
}

.services i {
    font-size: 50px;
}

.section {
    display: grid;
    place-items: center;
    align-items: center;
    min-height: 100vh;
}

.hidden {
    opacity: 0;
    filter: blur(15px);
    transform: translate(-100%);
    transition: all 1s;
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
    transition: all 1s;
}


p.lead {
    font-size: 1rem;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    text-align: center;
}

.hero {
    background: url('hero-bg.jpg') no-repeat center center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5em;
}

.read-more {
    display: inline-block;
    margin-bottom: 15px;
    padding: 10px 20px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.read-more:hover {
    background-color: #555;
}


.social-links a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

.social-links a:hover {
    text-decoration: underline;
}

img {
    width: 100%;
    display: flex;
}

.textContact {
    font-family: var(--header-font);
    margin-top: 30px;
}

.contact__cardd {
    max-width: 213px;
    margin: auto;
    aspect-ratio: 1;
    display: grid;
    place-content: center;
    text-align: center;
    border-radius: 100%;
    cursor: pointer;
    background: #13171d;
}

.contact__cardd span {
    font-size: 2rem;
    transition: 0.3s;
}

.contact__cardd:hover span {
    color: var(--secondary-color);
}

.textContato:hover {
    color: #f49e09;
}

.textContatoWpp {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--header-font);
}

.img-area {
    display: flex;
    overflow: hidden;
    justify-content: center;
}

.sectionContatoContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px 45px;
    background: transparent;
    width: 500px;
}

.sectionContatoContainer h2 {
    color: #f5f5f5;
    font-size: 2.5rem;
    margin: 2rem;
}

.sectionContatoContainer form {
    display: flex;
    flex-direction: column;
    width: 100%;
}


.formularioContato label {
    color: #f5f5f5;
    font-size: 17px;
    margin-bottom: 4px;
}

.formularioContato input {
    padding: 15px;
    outline: none;
    border: 0;
    margin-bottom: 20px;
    font-size: 15px;
    transition: all 0.5s;
    border-radius: 30px;
}

.formularioContato input:focus {
    border-radius: 16px;
}

.formularioContato textarea {
    padding: 10px;
    outline: none;
    border: 0;
    font-size: 15px;
    margin-bottom: 30px;
    transition: all 0.5s;
    border-radius: 30px;
}

.formularioContato textarea:focus {
    border-radius: 16px;
}

.formularioContato button {
    padding: 15px;
    cursor: pointer;
    font-size: 16px;
    background: transparent;
    border: 2px solid #f5f5f5;
    color: #f5f5f5;
    transition: all 1s;
    margin-bottom: 20px;
    border-radius: 30px;
}

.formularioContato button:hover {
    background: #f5f5f5;
    color: #101026;
    border-radius: 16px;
}

img,
video {
    max-width: 100%;
    height: auto;
}


.icon-insta {
    color: #fff;
    font-size: 38px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.icon {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.iconWhatsapp {
    color: #fff;
    font-size: 40px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.icon:hover {
    color: #4caf50;
}

.scroll__btn {
    font-size: 22px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 1px 15px hsla(220, 32%, 8%, .3);
    z-index: var(--z-fixed);
}


.nav__burger,
.nav__close {
    color: var(--white-color);
}


.nav__logo i {
    font-weight: initial;
    font-size: 1.25rem;
}

.nav__toggle {
    position: fixed;
    top: 0;
    margin-left: 130px;
    width: 100%;
    height: 15vh;
    overflow-y: auto;
    z-index: 9999;
    transition: transform .3s ease;
}

.nav__burger,
.nav__close {
    position: absolute;
    width: max-content;
    height: max-content;
    inset: 0;
    margin: auto;
    font-size: 2.25rem;
    cursor: pointer;
    transition: opacity .1s, transform .4s;
}

.nav__close {
    opacity: 0;
}

@media screen and (max-width:1118px) {
    .nav__menu {
        position: absolute;
        left: 0;
        top: 2.5rem;
        width: 100%;
        height: calc(100vh - 3.5rem);
        overflow: auto;
        pointer-events: none;
        opacity: 0;
        transition: top .4s, opacity .3s;
    }

    .nav__menu::-webkit-scrollbar {
        width: 0;
    }

    .nav__list {
        background-color: var(--black-color);
        padding-top: 1rem;
        padding: 0;
    }
}

.nav__link {
    color: var(--white-color);
    font-weight: var(--font-semi-bold);
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color .3s;
}

.nav__link:hover {
    background-color: var(--black-color-light);
}

.show-menu {
    opacity: 1;
    top: 6.5rem;
    pointer-events: initial;
}

.show-icon .nav__burger {
    opacity: 0;
    transform: rotate(90deg);
}

.show-icon .nav__close {
    opacity: 1;
    transform: rotate(90deg);
}

.dropdown__item {
    cursor: pointer;
}

.dropdown__arrow {
    font-size: 1.25rem;
    font-weight: initial;
    transition: transform .4s;
}

.dropdown__link,
.dropdown__sublink {
    padding: 1.25rem 1.25rem 1.25rem 2.5rem;
    color: var(--white-color);
    background-color: var(--black-color-light);
    display: flex;
    align-items: center;
    column-gap: .5rem;
    font-weight: var(--font-semi-bold);
    transition: background-color .3s;
    border-radius: 4px;
}

.dropdown__link i,
.dropdown__sublink i {
    font-size: 1.25rem;
    font-weight: initial;
}

.dropdown__link:hover,
.dropdown__sublink:hover {
    background-color: var(--black-color);
}

.dropdown__menu,
.dropdown__submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease-out;
}

.dropdown__item:hover .dropdown__menu,
.dropdown__subitem:hover>.dropdown__submenu {
    max-height: 1000px;
    padding: 0;
    transition: max-height .4s ease-in;
}

.dropdown__item:hover .dropdown__arrow {
    transform: rotate(180deg);
}

.dropdown__sublink {
    background-color: var(--black-color-lighten);
}

@media screen and (min-width:1118px) {
    .container {
        margin-inline: auto;
    }

    .nav {
        display: flex;
        justify-content: space-between;
    }

    .nav__toggle {
        display: none;
    }

    .nav__list {
        height: 100%;
        display: flex;
        column-gap: 2rem;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
        flex-direction: row;
    }

    .nav__link {
        column-gap: .25rem;
    }

    .nav__link:hover {
        background-color: transparent;
    }

    .dropdown__item,
    .dropdown__subitem {
        position: relative;
    }

    .dropdown__menu,
    .dropdown__submenu {
        max-height: initial;
        overflow: initial;
        position: absolute;
        left: -38px;
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s, top .3s;
    }

    .dropdown__link,
    .dropdown__sublink {
        padding-inline: 1rem 3.5rem;
    }

    .dropdown__subitem .dropdown__link {
        padding-inline: 1rem;
    }

    .dropdown__submenu {
        position: absolute;
        left: 100%;
        top: .5rem;
    }

    .dropdown__item:hover .dropdown__menu {
        opacity: 1;
        /* top: 5.5rem; */
        pointer-events: initial;
        transition: top .3s;
    }

    .dropdown__subitem:hover>.dropdown__submenu {
        opacity: 1;
        top: 0;
        pointer-events: initial;
        transition: top .3s;
    }
}

.pai {
    font-family: "Montserrat", sans-serif;
    /* background: linear-gradient(to right, rgba(2, 82, 89, 0.9), rgba(255, 255, 255, 0)), url("/assets/fundo.png"); */
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.containerR {
    max-width: var(--max-width);
    min-height: 150px;
    margin: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    margin-top: 55px;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.link a {
    text-decoration: none;
    font-weight: 600;
    color: var(--white);
}

.destination__container {
    position: relative;
    padding: 5rem 0 5rem 5rem;
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
}

.socials {
    position: absolute;
    top: 25rem;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.socials::after {
    position: absolute;
    content: "";
    top: -19rem;
    left: 15px;
    height: 15rem;
    width: 2px;
    background-color: var(--white);
}

.socials span {
    font-size: 2rem;
    color: var(--white);
}

.content h1 {
    margin-bottom: 5px;
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--white);
}

.content p {
    max-width: 350px;
    margin-bottom: 1rem;
    line-height: 17px;
    color: var(--white);
}

.content .btn {
    padding: 0.75rem 2rem;
    outline: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    background-color: var(--secondary-color);
    cursor: pointer;
}

.btnCards {
    padding: 8px 11px;
    outline: none;
    border-radius: 6px;
    font-weight: 500;
    color: var(--white);
    background-color: var(--primary-color);
    cursor: pointer;
    display: inline-block;
}

.destination__card {
    height: 96%;
    border-radius: 16px;
    background-color: var(--white);
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.7);
}

.card__content {
    padding: 10px;
}

.card__content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.card__content p {
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 19px;
    color: #3b5b89;
    font-weight: 500;
}

.card__content .btn {
    padding: 0.5rem 1rem;
    outline: none;
    border: none;
    font-weight: 500;
    color: var(--white);
    background-color: var(--primary-color);
    cursor: pointer;
}

.fishingFonte {
    color: #01adfa;
}

.footer {
    background: #171c26;
    color: #fff;
    padding: 60px 20px 0;
}

.footer-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-col h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.footer-col p,
.footer-col li {
    font-size: 0.95rem;
    opacity: 0.85;
    margin: 4px 0;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col.center {
    text-align: center;
}

.footer-col.right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.payments {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.payments img {
    max-width: 280px;
    background: #fff;
    padding: 10px 20px;
    border-radius: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    text-align: center;
    padding: 20px;
    font-size: 0.85rem;
    opacity: 0.6;
}


.footer-col {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}

.letras {
    font-size: 1.6rem !important;
}

.textContatoWppAbout {
    font-size: 0.95rem;
    opacity: 0.85;
    margin: 4px 0;
}


/* ===============================
   PREMIUM TECHNOLOGICAL ABOUT
=================================*/

.aboutWildTech {
    position: relative;
    padding: 0px 20px;
    background: linear-gradient(271deg, #00000000, #000000b0);
    overflow: hidden;
    color: #ffffff;
}

.aboutWildTech::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    /* background: radial-gradient(circle, rgba(0, 188, 212, 0.15), transparent 70%); */
    top: -200px;
    left: -200px;
    z-index: 0;
}

.aboutWildTech-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(120deg, rgba(0, 0, 0, 0.85), rgba(0, 188, 212, 0.15)); */
    z-index: 1;
}

.aboutWildTech-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.aboutWildTech-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.aboutWildTech-text h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 0px;
}

.tech-subtitle {
    margin-top: 30px;
    font-size: 28px;
}

.tech-line {
    width: 80px;
    height: 3px;
    background: #00bcd4;
    margin-bottom: 0px;
}

.tech-line.small {
    width: 60px;
}

.aboutWildTech-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #d6e2e6;
    margin-bottom: 20px;
}

.tech-highlight {
    border-left: 3px solid #00bcd4;
    padding-left: 20px;
    font-weight: 500;
    background: rgba(0, 188, 212, 0.05);
}

.tech-highlight p {
    margin: 6px 0;
}

.tech-final {
    font-weight: 600;
    font-size: 20px;
    color: #ffffff;
}

.aboutWildTech-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(0, 188, 212, 0.3);
    transition: transform 0.4s ease;
}

.aboutWildTech-image img:hover {
    transform: scale(1.03);
}

/* RESPONSIVO */

@media (max-width: 992px) {
    .sectionContatoContainer {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 10px 0 !important;
        background: transparent;
        width: 90% !important;
    }
    
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .footer-col.right {
        text-align: center;
    }

        .nav__links {
        display: none;
    }

    .destination__container {
        grid-template-columns: 1fr;
    }

    .content h1 {
        font-size: 4rem;
    }

    .destination__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .destination__container {
        padding-left: 3rem;
    }

    .content h1 {
        font-size: 1.9rem;
    }

    .destination__grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .aboutWildTech-grid {
        grid-template-columns: 1fr;
    }

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

    .tech-subtitle {
        font-size: 22px;
    }

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