/* =========================================================
   RAFA BOAT — STYLE.CSS
   Design Premium
   Lagoa Guaraíras — Tibau do Sul/RN
   ========================================================= */


/* =========================================================
   VARIÁVEIS
========================================================= */

:root {

    --white: #ffffff;
    --off-white: #f7f9fc;
    --light: #eef2f6;

    --navy: #071a33;
    --navy-2: #0c284b;
    --navy-3: #12365f;

    --red: #d71920;
    --red-dark: #a90f15;
    --red-light: #ffe8e9;

    --black: #080b10;

    --gray-100: #f4f6f8;
    --gray-200: #e5e9ee;
    --gray-300: #d2d8df;
    --gray-500: #707985;
    --gray-700: #3b434d;

    --shadow-sm:
        0 8px 25px rgba(7, 26, 51, 0.07);

    --shadow-md:
        0 18px 45px rgba(7, 26, 51, 0.12);

    --shadow-lg:
        0 30px 80px rgba(7, 26, 51, 0.18);

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;

    --container: 1220px;

    --transition:
        0.35s cubic-bezier(.22,.61,.36,1);

}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: "DM Sans", sans-serif;

    background: var(--white);

    color: var(--navy);

    line-height: 1.6;

    overflow-x: hidden;

}

body.no-scroll {
    overflow: hidden;
}

img,
video {
    display: block;
    width: 100%;
}

img {
    object-fit: cover;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: #edf0f3;
}

::-webkit-scrollbar-thumb {
    background: var(--navy);
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--red);
}


/* =========================================================
   CONTAINER
========================================================= */

.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;

}


/* =========================================================
   SECTIONS
========================================================= */

.section {
    padding: 110px 0;
}


/* =========================================================
   OPENING CINEMATOGRÁFICA
========================================================= */

.opening-screen {

    position: fixed;

    inset: 0;

    z-index: 9999;

    background: var(--black);

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    opacity: 1;

    visibility: visible;

    transition:
        opacity 1s ease,
        visibility 1s ease;

}

.opening-screen.hide {

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

}


.opening-video {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

}


.opening-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            180deg,
            rgba(0,0,0,.55),
            rgba(7,26,51,.28) 45%,
            rgba(0,0,0,.78)
        );

}


.opening-content {

    position: relative;

    z-index: 2;

    text-align: center;

    color: white;

    padding: 20px;

}


.opening-logo {

    display: flex;

    flex-direction: column;

    align-items: center;

    line-height: .8;

    margin-bottom: 25px;

    animation: openingLogo 1.2s ease both;

}


.opening-logo span {

    font-family: "Manrope", sans-serif;

    font-size: clamp(
        4rem,
        11vw,
        8rem
    );

    font-weight: 800;

    letter-spacing: -.07em;

}


.opening-logo strong {

    color: var(--red);

    font-size: clamp(
        1.2rem,
        2vw,
        1.7rem
    );

    letter-spacing: .65em;

    margin-left: .65em;

}


.opening-subtitle {

    font-size: .72rem;

    letter-spacing: .32em;

    font-weight: 700;

    opacity: .85;

    margin-bottom: 40px;

}


.opening-button {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    padding: 17px 28px;

    border: 1px solid rgba(255,255,255,.45);

    border-radius: 100px;

    background: rgba(255,255,255,.1);

    backdrop-filter: blur(15px);

    color: white;

    font-size: .78rem;

    font-weight: 800;

    letter-spacing: .12em;

    transition: var(--transition);

}


.opening-button:hover {

    background: var(--red);

    border-color: var(--red);

    transform: translateY(-4px);

}


.opening-scroll {

    margin-top: 65px;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 10px;

    opacity: .65;

}


.opening-scroll span {

    width: 1px;

    height: 40px;

    background: white;

    animation: scrollLine 1.6s ease infinite;

}


.opening-scroll small {

    font-size: .58rem;

    letter-spacing: .2em;

}


@keyframes openingLogo {

    from {
        opacity: 0;
        transform: translateY(25px) scale(.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


@keyframes scrollLine {

    0% {
        transform: scaleY(.3);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    100% {
        transform: scaleY(.3);
        transform-origin: bottom;
    }
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    padding: 20px 0;

    background: rgba(255,255,255,.94);

    backdrop-filter: blur(18px);

    border-bottom: 1px solid transparent;

    transition: var(--transition);

}


.navbar.scrolled {

    padding: 13px 0;

    border-bottom-color: var(--gray-200);

    box-shadow: var(--shadow-sm);

}


.nav-container {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

}


/* LOGO */

.logo {

    display: flex;

    align-items: center;

    gap: 9px;

    line-height: 1;

    flex-shrink: 0;

}


.logo-main {

    font-family: "Manrope", sans-serif;

    font-weight: 800;

    font-size: 1.65rem;

    letter-spacing: -.08em;

}


.logo-sub {

    color: var(--red);

    font-size: .7rem;

    font-weight: 800;

    letter-spacing: .2em;

    margin-top: 8px;

}


/* NAV MENU */

.nav-menu {

    display: flex;

    align-items: center;

    gap: 32px;

}


.nav-menu a {

    position: relative;

    font-size: .82rem;

    font-weight: 700;

    color: var(--gray-700);

    transition: var(--transition);

}


.nav-menu a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 2px;

    background: var(--red);

    transition: var(--transition);

}


.nav-menu a:hover {

    color: var(--red);

}


.nav-menu a:hover::after {

    width: 100%;

}


/* NAV BUTTON */

.nav-button {

    padding: 12px 19px;

    border-radius: 100px;

    background: var(--navy);

    color: white;

    font-size: .75rem;

    font-weight: 800;

    transition: var(--transition);

}


.nav-button:hover {

    background: var(--red);

    transform: translateY(-2px);

}


/* MOBILE BUTTON */

.menu-toggle {

    display: none;

    width: 45px;

    height: 45px;

    border: 0;

    background: var(--navy);

    border-radius: 10px;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

}


.menu-toggle span {

    display: block;

    width: 20px;

    height: 2px;

    background: white;

    transition: var(--transition);

}


/* =========================================================
   HERO
========================================================= */

.hero {

    min-height: 100svh;

    position: relative;

    display: flex;

    align-items: center;

    overflow: hidden;

    color: white;

}


.hero-image {

    position: absolute;

    inset: 0;

    z-index: 0;

}


.hero-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1.04);

}


.hero-gradient {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:

        linear-gradient(
            90deg,
            rgba(3,13,26,.9) 0%,
            rgba(3,13,26,.66) 38%,
            rgba(3,13,26,.16) 75%,
            rgba(3,13,26,.25)
        );

}


.hero-content {

    position: relative;

    z-index: 2;

    padding-top: 130px;

    padding-bottom: 130px;

}


.hero-tag {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    font-size: .68rem;

    font-weight: 800;

    letter-spacing: .2em;

    color: rgba(255,255,255,.8);

    margin-bottom: 24px;

}


.hero-tag::before {

    content: "";

    width: 30px;

    height: 2px;

    background: var(--red);

}


.hero h1 {

    max-width: 760px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(
        3.3rem,
        7vw,
        6.5rem
    );

    line-height: .94;

    letter-spacing: -.065em;

    font-weight: 800;

    margin-bottom: 30px;

}


.hero h1 span {

    color: #ff343b;

}


.hero-content > p {

    max-width: 590px;

    font-size: 1.05rem;

    line-height: 1.8;

    color: rgba(255,255,255,.82);

    margin-bottom: 36px;

}


/* BUTTONS */

.hero-buttons {

    display: flex;

    align-items: center;

    gap: 13px;

    flex-wrap: wrap;

}


.btn {

    min-height: 53px;

    padding: 0 23px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    border-radius: 8px;

    font-size: .76rem;

    font-weight: 800;

    transition: var(--transition);

}


.btn-primary {

    background: var(--red);

    color: white;

}


.btn-primary:hover {

    background: var(--red-dark);

    transform: translateY(-4px);

    box-shadow:
        0 15px 30px rgba(215,25,32,.25);

}


.btn-outline {

    border: 1px solid rgba(255,255,255,.5);

    color: white;

    background: rgba(255,255,255,.06);

    backdrop-filter: blur(8px);

}


.btn-outline:hover {

    background: white;

    color: var(--navy);

    transform: translateY(-4px);

}


/* HERO BOTTOM */

.hero-bottom {

    position: absolute;

    bottom: 0;

    left: 0;

    width: 100%;

    z-index: 3;

    border-top: 1px solid rgba(255,255,255,.2);

}


.hero-bottom-inner {

    min-height: 88px;

    display: flex;

    align-items: center;

    gap: 55px;

}


.hero-bottom-inner > div:not(.hero-scroll) {

    display: flex;

    align-items: center;

    gap: 10px;

}


.hero-bottom strong {

    font-size: .65rem;

    color: var(--red);

}


.hero-bottom span {

    font-size: .67rem;

    text-transform: uppercase;

    letter-spacing: .1em;

    opacity: .75;

}


.hero-scroll {

    margin-left: auto;

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: .62rem;

    letter-spacing: .15em;

    opacity: .7;

}


.hero-scroll span {

    width: 35px;

    height: 1px;

    background: white;

}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {

    max-width: 700px;

    margin-bottom: 65px;

}


.section-heading.center {

    margin-left: auto;

    margin-right: auto;

    text-align: center;

}


.eyebrow {

    display: inline-block;

    color: var(--red);

    font-size: .65rem;

    font-weight: 800;

    letter-spacing: .22em;

    margin-bottom: 17px;

}


.section-heading h2 {

    font-family: "Manrope", sans-serif;

    font-size: clamp(
        2.3rem,
        5vw,
        4.2rem
    );

    line-height: 1.05;

    letter-spacing: -.055em;

    margin-bottom: 20px;

}


.section-heading h2 span {

    color: var(--red);

}


.section-heading p {

    color: var(--gray-500);

    font-size: 1rem;

    line-height: 1.8;

}


/* =========================================================
   EXPERIÊNCIA
========================================================= */

.experience-section {

    background: var(--white);

}


.experience-grid {

    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 80px;

    align-items: center;

}


.experience-text {

    display: flex;

    flex-direction: column;

    gap: 30px;

}


.experience-card {

    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 20px;

    padding-bottom: 30px;

    border-bottom: 1px solid var(--gray-200);

}


.experience-card:last-child {

    border-bottom: 0;

}


.experience-icon {

    width: 45px;
    height: 45px;

    border-radius: 50%;

    background: var(--red-light);

    color: var(--red);

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: .68rem;

    font-weight: 800;

}


.experience-card h3 {

    font-family: "Manrope", sans-serif;

    font-size: 1.15rem;

    margin-bottom: 7px;

}


.experience-card p {

    color: var(--gray-500);

    font-size: .88rem;

    line-height: 1.7;

}


.experience-image {

    position: relative;

    min-height: 570px;

    overflow: hidden;

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-lg);

}


.experience-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .8s ease;

}


.experience-image:hover img {

    transform: scale(1.05);

}


.experience-image-caption {

    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 25px;

    padding: 18px 20px;

    background: rgba(7,26,51,.8);

    backdrop-filter: blur(15px);

    color: white;

    border-radius: 12px;

    display: flex;

    justify-content: space-between;

    align-items: center;

}


.experience-image-caption span {

    font-size: .6rem;

    letter-spacing: .15em;

    color: rgba(255,255,255,.65);

}


.experience-image-caption strong {

    font-size: .7rem;

}


/* =========================================================
   NÚMEROS
========================================================= */

.numbers-section {

    padding: 70px 0;

    background: var(--navy);

    color: white;

}


.numbers-grid {

    display: grid;

    grid-template-columns: repeat(4,1fr);

}


.number-item {

    padding: 10px 30px;

    text-align: center;

    border-right: 1px solid rgba(255,255,255,.15);

}


.number-item:last-child {

    border-right: 0;

}


.number-item strong {

    display: block;

    font-family: "Manrope", sans-serif;

    font-size: clamp(
        2rem,
        4vw,
        3.5rem
    );

    letter-spacing: -.06em;

}


.number-item span {

    color: rgba(255,255,255,.55);

    font-size: .65rem;

    text-transform: uppercase;

    letter-spacing: .16em;

}


/* =========================================================
   PASSEIOS
========================================================= */

.tours-section {

    background: var(--off-white);

}


.tours-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}


.tour-card {

    background: white;

    border: 1px solid var(--gray-200);

    border-radius: var(--radius-md);

    overflow: hidden;

    transition: var(--transition);

}


.tour-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow-lg);

    border-color: transparent;

}


.tour-image {

    height: 280px;

    position: relative;

    overflow: hidden;

}


.tour-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;

}


.tour-card:hover .tour-image img {

    transform: scale(1.08);

}


.tour-badge {

    position: absolute;

    top: 18px;
    left: 18px;

    background: var(--red);

    color: white;

    padding: 8px 11px;

    border-radius: 5px;

    font-size: .56rem;

    font-weight: 800;

    letter-spacing: .1em;

}


.tour-badge.sunset {

    background: var(--navy);

}


.tour-content {

    padding: 27px;

}


.tour-category {

    color: var(--red);

    font-size: .58rem;

    font-weight: 800;

    letter-spacing: .18em;

}


.tour-title {

    font-family: "Manrope", sans-serif;

    font-size: 1.45rem;

    margin: 9px 0 10px;

    letter-spacing: -.04em;

}


.tour-content > p {

    color: var(--gray-500);

    font-size: .85rem;

    line-height: 1.7;

    min-height: 82px;

}


.tour-info {

    display: flex;

    flex-wrap: wrap;

    gap: 15px;

    padding: 17px 0;

    margin-top: 10px;

    border-top: 1px solid var(--gray-200);

    border-bottom: 1px solid var(--gray-200);

}


.tour-info span {

    color: var(--gray-500);

    font-size: .68rem;

}


.tour-footer {

    padding-top: 19px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

}


.tour-footer small {

    color: var(--gray-500);

    font-size: .63rem;

}


.tour-footer strong {

    display: inline-block;

    color: var(--navy);

    font-family: "Manrope", sans-serif;

    font-size: 1.3rem;

    margin: 0 3px;

}


.tour-button {

    display: flex;

    align-items: center;

    gap: 9px;

    color: var(--red);

    font-size: .7rem;

    font-weight: 800;

    transition: var(--transition);

}


.tour-button span {

    font-size: 1.1rem;

}


.tour-button:hover {

    gap: 14px;

}


/* =========================================================
   VÍDEO
========================================================= */

.video-section {

    background: var(--navy);

}


.video-wrapper {

    min-height: 650px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

}


.experience-video {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

}


.video-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            rgba(7,26,51,.72),
            rgba(7,26,51,.58)
        );

}


.video-content {

    position: relative;

    z-index: 2;

    max-width: 750px;

    padding: 30px;

    text-align: center;

    color: white;

}


.video-content > span {

    color: #ff4a50;

    font-size: .65rem;

    font-weight: 800;

    letter-spacing: .22em;

}


.video-content h2 {

    font-family: "Manrope", sans-serif;

    font-size: clamp(
        2.8rem,
        6vw,
        5.5rem
    );

    line-height: .98;

    letter-spacing: -.06em;

    margin: 18px 0 30px;

}


/* =========================================================
   GALERIA
========================================================= */

.gallery-section {

    background: white;

}


.gallery-grid {

    display: grid;

    grid-template-columns:
        1.4fr .8fr .8fr;

    grid-template-rows:
        270px 270px;

    gap: 15px;

}


.gallery-item {

    position: relative;

    overflow: hidden;

    border-radius: var(--radius-md);

    cursor: pointer;

}


.gallery-item:first-child {

    grid-row: 1 / 3;

}


.gallery-item img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;

}


.gallery-item:hover img {

    transform: scale(1.08);

}


.gallery-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: flex-end;

    padding: 20px;

    background:
        linear-gradient(
            transparent 45%,
            rgba(0,0,0,.6)
        );

    opacity: 0;

    transition: var(--transition);

}


.gallery-item:hover .gallery-overlay {

    opacity: 1;

}


.gallery-overlay span {

    color: white;

    font-size: .65rem;

    font-weight: 800;

    letter-spacing: .16em;

}


/* =========================================================
   LIGHTBOX
========================================================= */

.lightbox {

    position: fixed;

    inset: 0;

    z-index: 9998;

    background: rgba(0,0,0,.94);

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 40px;

    opacity: 0;

    visibility: hidden;

    transition: var(--transition);

}


.lightbox.active {

    opacity: 1;

    visibility: visible;

}


.lightbox img {

    max-width: min(1100px, 95vw);

    max-height: 90vh;

    width: auto;

    border-radius: 10px;

    object-fit: contain;

    box-shadow: var(--shadow-lg);

}


.lightbox-close {

    position: absolute;

    top: 25px;
    right: 30px;

    width: 48px;
    height: 48px;

    border: 1px solid rgba(255,255,255,.3);

    background: rgba(255,255,255,.08);

    color: white;

    border-radius: 50%;

    font-size: 2rem;

    line-height: 1;

    transition: var(--transition);

}


.lightbox-close:hover {

    background: var(--red);

    border-color: var(--red);

    transform: rotate(90deg);

}


/* =========================================================
   BOOKING
========================================================= */

.booking-section {

    background: var(--off-white);

}


.booking-layout {

    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 90px;

    align-items: start;

}


.booking-intro {

    position: sticky;

    top: 130px;

}


.booking-intro h2 {

    font-family: "Manrope", sans-serif;

    font-size: clamp(
        2.5rem,
        5vw,
        4.5rem
    );

    line-height: 1;

    letter-spacing: -.06em;

    margin-bottom: 25px;

}


.booking-intro h2 span {

    color: var(--red);

}


.booking-intro > p {

    color: var(--gray-500);

    line-height: 1.8;

    margin-bottom: 35px;

}


.booking-benefits {

    display: flex;

    flex-direction: column;

    gap: 20px;

}


.booking-benefits > div {

    display: flex;

    align-items: flex-start;

    gap: 15px;

}


.benefit-icon {

    width: 28px;
    height: 28px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--red-light);

    color: var(--red);

    border-radius: 50%;

    font-weight: 800;

    font-size: .7rem;

}


.booking-benefits strong {

    display: block;

    font-size: .85rem;

    margin-bottom: 2px;

}


.booking-benefits small {

    color: var(--gray-500);

    font-size: .72rem;

}


/* BOOKING CARD */

.booking-card {

    background: white;

    border-radius: var(--radius-lg);

    padding: 42px;

    box-shadow: var(--shadow-lg);

    border: 1px solid var(--gray-200);

}


.booking-card-header {

    padding-bottom: 25px;

    margin-bottom: 25px;

    border-bottom: 1px solid var(--gray-200);

}


.booking-card-header span {

    color: var(--red);

    font-size: .6rem;

    font-weight: 800;

    letter-spacing: .2em;

}


.booking-card-header h3 {

    font-family: "Manrope", sans-serif;

    font-size: 1.9rem;

    margin-top: 7px;

    letter-spacing: -.04em;

}


/* FORM */

.booking-form {

    display: flex;

    flex-direction: column;

    gap: 19px;

}


.form-group {

    display: flex;

    flex-direction: column;

    gap: 8px;

}


.form-group label {

    color: var(--navy);

    font-size: .7rem;

    font-weight: 800;

}


.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    border: 1px solid var(--gray-200);

    background: #fbfcfd;

    color: var(--navy);

    border-radius: 9px;

    outline: none;

    padding: 14px 15px;

    transition: var(--transition);

}


.form-group input,
.form-group select {

    height: 50px;

}


.form-group textarea {

    resize: vertical;

    min-height: 90px;

}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: var(--navy);

    background: white;

    box-shadow:
        0 0 0 4px rgba(7,26,51,.06);

}


.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

}


/* QUANTITY */

.quantity-control {

    width: fit-content;

    display: flex;

    align-items: center;

    border: 1px solid var(--gray-200);

    border-radius: 9px;

    overflow: hidden;

}


.quantity-btn {

    width: 48px;

    height: 48px;

    border: 0;

    background: var(--gray-100);

    color: var(--navy);

    font-size: 1.3rem;

    font-weight: 600;

    transition: var(--transition);

}


.quantity-btn:hover {

    background: var(--navy);

    color: white;

}


.quantity-control input {

    width: 60px;

    height: 48px;

    border: 0;

    text-align: center;

    font-weight: 800;

    outline: none;

    background: white;

}


/* PRICE */

.price-summary {

    margin-top: 8px;

    padding: 20px;

    border-radius: 12px;

    background: var(--navy);

    color: white;

}


.price-line {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 15px;

    padding: 8px 0;

}


.price-line span {

    font-size: .72rem;

    color: rgba(255,255,255,.65);

}


.price-line strong {

    font-size: .8rem;

}


.price-line.total {

    border-top: 1px solid rgba(255,255,255,.15);

    margin-top: 8px;

    padding-top: 15px;

}


.price-line.total span {

    color: white;

    font-weight: 800;

}


.price-line.total strong {

    color: #ff4a50;

    font-family: "Manrope", sans-serif;

    font-size: 1.3rem;

}


/* SUBMIT */

.booking-submit {

    width: 100%;

    min-height: 57px;

    border: 0;

    border-radius: 9px;

    background: var(--red);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    padding: 15px;

    font-size: .74rem;

    font-weight: 800;

    transition: var(--transition);

}


.booking-submit:hover {

    background: var(--red-dark);

    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(215,25,32,.2);

}


.booking-note {

    text-align: center;

    color: var(--gray-500);

    font-size: .62rem;

}


/* =========================================================
   FAQ
========================================================= */

.faq-section {

    background: white;

}


.faq-list {

    max-width: 850px;

    margin: 0 auto;

}


.faq-item {

    border-bottom: 1px solid var(--gray-200);

}


.faq-question {

    width: 100%;

    border: 0;

    background: transparent;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    text-align: left;

    padding: 25px 0;

    color: var(--navy);

}


.faq-question span {

    font-size: .92rem;

    font-weight: 700;

}


.faq-question strong {

    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--gray-100);

    color: var(--navy);

    font-size: 1.1rem;

    transition: var(--transition);

}


.faq-item.active .faq-question strong {

    background: var(--red);

    color: white;

    transform: rotate(45deg);

}


.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: max-height .4s ease;

}


.faq-answer p {

    color: var(--gray-500);

    font-size: .86rem;

    line-height: 1.8;

    padding: 0 50px 25px 0;

}


/* =========================================================
   CTA FINAL
========================================================= */

.final-cta {

    position: relative;

    padding: 120px 0;

    background:

        linear-gradient(
            135deg,
            var(--navy),
            #020a15
        );

    color: white;

    overflow: hidden;

}


.final-cta::before {

    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background: var(--red);

    opacity: .08;

    top: -250px;
    right: -100px;

    filter: blur(10px);

}


.final-cta-content {

    position: relative;

    z-index: 1;

    max-width: 850px;

}


.final-cta-content > span {

    color: #ff4a50;

    font-size: .64rem;

    font-weight: 800;

    letter-spacing: .22em;

}


.final-cta h2 {

    font-family: "Manrope", sans-serif;

    font-size: clamp(
        2.7rem,
        6vw,
        5.5rem
    );

    line-height: .98;

    letter-spacing: -.065em;

    margin: 18px 0 25px;

}


.final-cta p {

    max-width: 580px;

    color: rgba(255,255,255,.62);

    margin-bottom: 32px;

}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    background: #030a13;

    color: white;

    padding: 75px 0 25px;

}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1fr;

    gap: 50px;

    padding-bottom: 60px;

    border-bottom: 1px solid rgba(255,255,255,.1);

}


.footer-logo {

    color: white;

    margin-bottom: 20px;

}


.footer-brand > p {

    max-width: 300px;

    color: rgba(255,255,255,.45);

    font-size: .78rem;

    line-height: 1.8;

    margin-bottom: 20px;

}


.instagram-link {

    color: #ff4a50;

    font-size: .72rem;

    font-weight: 800;

}


.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 10px;

}


.footer-column h4 {

    font-size: .7rem;

    text-transform: uppercase;

    letter-spacing: .15em;

    margin-bottom: 10px;

}


.footer-column a,
.footer-column p {

    color: rgba(255,255,255,.45);

    font-size: .72rem;

    transition: var(--transition);

}


.footer-column a:hover {

    color: white;

    transform: translateX(3px);

}


.footer-column p {

    margin: 0;

}


.footer-bottom {

    padding-top: 25px;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: rgba(255,255,255,.3);

    font-size: .62rem;

}


/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp-float {

    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 900;

    width: 60px;
    height: 60px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #18b957;

    color: white;

    box-shadow:
        0 12px 30px rgba(0,0,0,.2);

    transition: var(--transition);

}


.whatsapp-float:hover {

    transform:
        translateY(-5px)
        scale(1.05);

}


.whatsapp-pulse {

    position: absolute;

    inset: -5px;

    border-radius: 50%;

    border: 2px solid #18b957;

    animation: whatsappPulse 2s infinite;

    pointer-events: none;

}


@keyframes whatsappPulse {

    0% {
        opacity: .8;
        transform: scale(.9);
    }

    70% {
        opacity: 0;
        transform: scale(1.3);
    }

    100% {
        opacity: 0;
        transform: scale(1.3);
    }

}


/* =========================================================
   REVEAL ANIMATIONS
========================================================= */

.reveal,
.reveal-left,
.reveal-right {

    opacity: 0;

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.22,.61,.36,1);

}


.reveal {

    transform: translateY(35px);

}


.reveal-left {

    transform: translateX(-45px);

}


.reveal-right {

    transform: translateX(45px);

}


.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {

    opacity: 1;

    transform: translate(0);

}


/* =========================================================
   SELEÇÃO
========================================================= */

::selection {

    background: var(--red);

    color: white;

}


/* =========================================================
   RESPONSIVO — 1050px
========================================================= */

@media (max-width: 1050px) {


    .nav-menu {

        gap: 20px;

    }


    .experience-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .experience-image {

        min-height: 500px;

    }


    .tours-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .booking-layout {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .booking-intro {

        position: static;

    }


    .footer-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

}


/* =========================================================
   RESPONSIVO — 850px
========================================================= */

@media (max-width: 850px) {


    .section {

        padding: 80px 0;

    }


    .nav-button {

        display: none;

    }


    .menu-toggle {

        display: flex;

    }


    .nav-menu {

        position: fixed;

        top: 78px;

        left: 20px;
        right: 20px;

        padding: 20px;

        background: white;

        border-radius: 15px;

        box-shadow: var(--shadow-lg);

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        opacity: 0;

        visibility: hidden;

        transform: translateY(-15px);

        transition: var(--transition);

    }


    .nav-menu.active {

        opacity: 1;

        visibility: visible;

        transform: translateY(0);

    }


    .nav-menu a {

        padding: 14px;

        border-bottom: 1px solid var(--gray-200);

    }


    .nav-menu a:last-child {

        border-bottom: 0;

    }


    .nav-menu a::after {

        display: none;

    }


    .hero h1 {

        font-size: clamp(
            3rem,
            10vw,
            5rem
        );

    }


    .numbers-grid {

        grid-template-columns:
            repeat(2,1fr);

        row-gap: 30px;

    }


    .number-item:nth-child(2) {

        border-right: 0;

    }


    .gallery-grid {

        grid-template-columns:
            1fr 1fr;

        grid-template-rows:
            300px 220px 220px;

    }


    .gallery-item:first-child {

        grid-column: 1 / 3;

        grid-row: auto;

    }

}


/* =========================================================
   RESPONSIVO — 600px
========================================================= */

@media (max-width: 600px) {


    .container {

        width: min(
            calc(100% - 28px),
            var(--container)
        );

    }


    .section {

        padding: 70px 0;

    }


    .opening-logo span {

        font-size: 4rem;

    }


    .opening-subtitle {

        font-size: .55rem;

        letter-spacing: .2em;

    }


    .hero {

        min-height: 760px;

    }


    .hero-content {

        padding-top: 120px;

        padding-bottom: 170px;

    }


    .hero-gradient {

        background:

            linear-gradient(
                180deg,
                rgba(3,13,26,.65),
                rgba(3,13,26,.3) 30%,
                rgba(3,13,26,.88)
            );

    }


    .hero h1 {

        font-size: 3.3rem;

    }


    .hero-content > p {

        font-size: .9rem;

    }


    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .hero-buttons .btn {

        width: 100%;

    }


    .hero-bottom {

        display: none;

    }


    .section-heading {

        margin-bottom: 40px;

    }


    .section-heading h2 {

        font-size: 2.4rem;

    }


    .experience-image {

        min-height: 430px;

    }


    .experience-image-caption {

        flex-direction: column;

        align-items: flex-start;

        gap: 5px;

    }


    .tours-grid {

        grid-template-columns: 1fr;

    }


    .tour-image {

        height: 240px;

    }


    .video-wrapper {

        min-height: 570px;

    }


    .video-content h2 {

        font-size: 3rem;

    }


    .gallery-grid {

        display: grid;

        grid-template-columns: 1fr;

        grid-template-rows: repeat(4, 250px);

    }


    .gallery-item:first-child {

        grid-column: auto;

    }


    .booking-card {

        padding: 25px 18px;

    }


    .form-row {

        grid-template-columns: 1fr;

    }


    .booking-intro h2 {

        font-size: 2.7rem;

    }


    .footer-grid {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .footer-bottom {

        flex-direction: column;

    }


    .whatsapp-float {

        width: 54px;
        height: 54px;

        right: 17px;
        bottom: 17px;

    }

}


/* =========================================================
   RESPONSIVO — 380px
========================================================= */

@media (max-width: 380px) {


    .hero h1 {

        font-size: 2.8rem;

    }


    .opening-logo span {

        font-size: 3.4rem;

    }


    .section-heading h2 {

        font-size: 2.1rem;

    }


    .booking-card {

        padding: 20px 15px;

    }


    .tour-content {

        padding: 21px;

    }

}


/* =========================================================
   ACESSIBILIDADE
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {

        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;

        scroll-behavior: auto !important;

    }

}