@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=Poppins:wght@400;500;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;600&display=swap');

:root {
    --for-color: #0c270a;
    --primary-color: #0a1e27;
    --five-color: #0a2227;
    --secondary-color: #e9c675;
    --three-color: #f8973a;
    --text-light: #cbd5e1;
    --white: #ffffff;
    --max-width: 1200px;
    --header-font: "Playfair Display", serif;
    --font-semi-bold: 600;
     --white-color: #fff;
}

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

.section__container {
    max-width: var(--max-width);
    margin: auto;
}

.section__subheader {
    position: relative;
    isolation: isolate;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #e9c675;
    margin-top: 40px;
}

.section__subheader::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 2px;
    width: 4rem;
   color: #e9c675;
}

.section__subheader::after {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-60%, -50%);
    font-size: 8rem;
    font-weight: 600;
   color: #e9c675;
    opacity: 0.1;
    z-index: -1;
}

.section__header {
    margin-bottom: 0rem;
    font-size: 1.8rem;
    font-weight: 400;
    font-family: var(--header-font);
    color: var(--white);
}

.section__headerData {
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--header-font);
    color: var(--white);
}

.btn {
    padding: 0.75rem 1.5rem;
    outline: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--white);
    background-color: transparent;
    border-radius: 5px;
    transition: 0.3s;
    cursor: pointer;
}

.btn:hover {
    background-color: rgba(10, 30, 39, 0.5);
}

.logo a {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--header-font);
    color: var(--white);
}

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

a {
    text-decoration: none;
    transition: 0.3s;
}

html,
body {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
}

.header {
    position: relative;
    height: 20vh;
}

.header::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% + 15rem);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
}

.header__container {
    position: relative;
    isolation: isolate;
    height: calc(100% - 75px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__content {
    max-width: 700px;
    padding: 10px;
}

.header__content .section__header {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 2rem;
}

.header__content a {
    color: var(--white);
}

.header__content a:hover {
    color: #0b4a57
}

.header__socials {
    position: absolute;
    left: 0;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    transform: translateX(calc(-50% + 1rem)) rotate(90deg);
    display: none;
}

.header__socials a {
    font-size: 1.2rem;
    color: var(--white);
    transform: rotate(-90deg);
}

.header__socials a:hover {
    color: var(--secondary-color);
}

.about {
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--five-color) 12rem);
    overflow: hidden;
}

.about__container {
    display: grid;
    gap: 2rem 2rem;
    overflow: hidden;
    margin-top: 41px;
    padding: 20px;
}

.about__image img {
    max-width: 316px;
    height: 312px;
    margin-inline: auto;
    border-radius: 190px;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.4);
}

.about__content-1 .section__subheader::after {
    content: "01";
}

.about__content-2 .section__subheader::after {
    content: "02";
}

.about__content-3 .section__subheader::after {
    content: "03";
}

.about__content-4 .section__subheader::after {
    content: "04";
}

.about__content-5 .section__subheader::after {
    content: "05";
}

.about__content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}



.about__content a span {
    transition: 0.3s;
}

.about__content a:hover span {
    transform: translateX(10px);
}

@media (width > 768px) {
    .header__container {
        height: calc(100% - 0rem);
    }

    .header__socials {
        display: flex;
    }

    .about__container {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
        gap: 2rem 2rem;
    }

    .about__image-1 {
        grid-area: 1/2/2/3;
    }

    .about__image-3 {
        grid-area: 3/2/4/3;
    }

    .about__content {
        margin-left: 6rem;
    }

    .footer__container {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer {
    background-color: var(--three-color);
}

.footer__container {
    display: grid;
    gap: 4rem 2rem;
}

.emailContact {
    width: 10px;
}

.footer__col:first-child {
    max-width: 90%;
}

.footer__logo {
    margin-bottom: 1rem;
}

.footer__col p {
    color: var(--text-light);
}

.footer__col h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.footer__links {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.footer__links a {
    color: var(--text-light);
}

.footer__links a:hover {
    color: var(--secondary-color);
}

.footer__bar {
    padding: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
}



:root {
    --clr-pink: #EF476F;
    --clr-green: #06D6A0;
    --clr-green_hover: #0cc493;
    --clr-green_active: #0daf84;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0a2227;
    align-items: center;
    z-index: 11;
    flex-direction: column !important;
}

@media (min-width:768px) {
    .imgModal {
        width: 200px;
        height: 245px;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 04px 8px rgba(0, 0, 0, 0.1);
        margin: 28px;
    }

    .textDownload {
        display: flex;
        color: white;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .img-fluidFooter {
        width: 30%;
        display: inline;
        border-radius: 9px;
    }

    .modal-content {
        padding: 0%;
        border-radius: 5px;
        text-align: center;
        max-width: 100%;
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--five-color) 2rem);
        height: 100%;
        overflow-y: scroll;
    }

    .imgContainerModal {
        display: flex;
        width: 100%;
        flex-wrap: wrap;
        margin: 0px;
        justify-content: center;
        padding: 0px;
        flex-direction: row;
    }

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

}

@media (max-width:767px) {
.imgLogo {
        border-radius: 50%;
        width: 30%;
        display: flex;
        position: relative;
        margin: 10px;
    }

    .imgModal {
        width: 245px;
        height: 245px;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 04px 8px rgba(0, 0, 0, 0.1);
        margin: 28px;
    }

    .textDownload {
        display: flex;
        color: white;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .img-fluidFooter {
        width: 100%;
        border-radius: 2%;
    }

    .imgContainerModal {
        display: flex;
        width: 100%;
        flex-wrap: wrap;
        margin: 0px;
        justify-content: center;
        padding: 0px;
        flex-direction: row;
    }

    .modal-content {
        padding: 5%;
        border-radius: 5px;
        text-align: center;
        max-width: 100%;
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--five-color) 2rem);
        height: 100%;
        width: 100%;
        overflow-y: scroll;
    }
}

.videoModal {
    width: 45%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.modal-content::-webkit-scrollbar {
    width: 5px;
    height: 2px;
}

.modal-content::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background-color: #e9c675c0;
    border-radius: 10px;
}

.modal-button {
    padding: 10px 20px;
    display: flex;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
}

.close-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #e9c675c0;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
}

.tituloModal {
    color: var(--white);
    margin: 15px;
}

.imgContainerModalVideo {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.videoModal {
    max-width: 560px;
}

.videoModal {
    width: 45%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.imgContainerModalVideo:after {
    content: "";
    width: 100%;
    height: 100%;
    opacity: 0;
    border-radius: 5px;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

.imgContainerModal:after {
    content: "";
    width: 100%;
    height: 100%;
    opacity: 0;
    border-radius: 5px;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

.imgModal:hover {
    transform: scale(1.25, 1.25);
}

.imgModal:hover::after {
    opacity: 1;
}

.custom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.custom-modal-content {
    background-color: transparent;
    padding: 20px;
    border-radius: 5px;
    max-width: 700px;
    width: 90%;
    position: relative;
}

.custom-close-button {
    cursor: pointer;
    position: absolute;
    top: -17px;
    right: -9px;
    font-size: 18px;
    background-color: #e9c675;
    border: none;
    color: #ffffff;
    border-radius: 100px;
    padding: 8px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.video-container iframe,
.video-container video {
    width: 100%;
    height: 100%;
}

.modal-button-custom {
    cursor: pointer;
    display: inline-block;
    padding: 10px 10px;
    background-color: #0c270a;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
}

.modal-button-custom:hover {
    background-color: black;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.modal-button-custom:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background-color: rgb(255 255 255 / 23%);
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0;
    transition: all 1.75s ease;
}

.modal-button-custom:hover:before {
    opacity: 1;
    width: 400%;
    height: 400%;
}

.button_slide {
    color: black;
    border: 2px solid rgb(255 255 255);
    border-radius: 40px;
    padding: 7px 7px;
    display: inline-block;
    font-family: "Lucida Console", Monaco, monospace;
    font-size: 15px;
    letter-spacing: 0px;
    cursor: pointer;
    box-shadow: inset 0 0 0 0 #000000;
    -moz-transition: ease-out 0.4s;
    transition: ease-out 0.4s;
    background: #909090;
}

.button-slide {
    color: black;
    border: 2px solid rgb(255 255 255);
    border-radius: 40px;
    padding: 7px 7px;
    font-weight: 100;
    display: inline-block;
    font-family: "Lucida Console", Monaco, monospace;
    letter-spacing: 0px;
    cursor: pointer;
    box-shadow: inset 0 0 0 0 #000000;
    -moz-transition: ease-out 0.4s;
    transition: ease-out 0.4s;
    background: #909090;
}

.trip-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    width: fit-content;
    max-width: 90%;
    margin: 30px auto;
    padding: 14px 26px;
    border-radius: 30px;
    background: rgb(10 34 39);
    border: 1px solid rgb(0 255 123 / 30%);
}


.trip-price .label {
    font-family: "Lucida Console", Monaco, monospace;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c8ffc8;
}

.trip-price .value {
    font-family: "Lucida Console", Monaco, monospace;
    font-size: 20px;
    font-weight: bold;
    color: #08ff00;

    padding-left: 14px;
    border-left: 2px solid rgba(8, 255, 0, 0.4);

    transition: all 0.3s ease;
}

.trip-price:hover .value {
    color: #ffb703;
    transform: scale(1.05);
}


.slide_down:hover {
    box-shadow: inset 0 100px 0 0 #000000;
}

.slide_right:hover {
    box-shadow: inset 400px 0 0 0 #ffffff;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.videoWatch {
    position: absolute;
    min-width: 70%;
    min-height: 49%;
    z-index: 1;
    object-fit: cover;
}

video {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: translate(0%, 0%);
    object-fit: cover;
}

.profile-img {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    z-index: 1;
}

.textSobreConfortos {
    color: white;
    font-family: var(--header-font);
}

.scroll__btn {
    font-size: 18px;
    background: #33ae3f;
    margin: 5px;
    padding: 8px;
    width: 145px;
    border-radius: 13px;
    margin-left: 0px;
}

.textContatoWppAbout {
    font-weight: 800;
    font-family: var(--header-font);
    color: #4caf50;
}

.numberTel {
    color: rgb(0, 170, 255)!important;
}

.numberTel:hover {
    color: rgb(0, 170, 255);
}

.emailLink {
color: rgb(0, 170, 255);
}

a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

a:hover {
    opacity: 0.7;
}

.logo {
    transition: opacity 0.5s ease;
}

.logo-hidden {
    opacity: 0;
}


footer {
    background-image: linear-gradient(to top, #171c26, #171c26);
    height: 100%;
    color: #edf2f4;
    padding: 11px 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-container div {
    margin: 12px 0px;
}

.footer-about h3,
.footer-links h3,
.footer-social h3,
.footer-newsletter h3 {
    color: white;
    margin-bottom: 10px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-links ul,
.footer-social ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li,
.footer-social ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-social ul li a {
    color: #edf2f4;
    text-decoration: none;
    font-size: 14px;
}

.footer-links ul li a:hover,
.footer-social ul li a:hover {
    color: #ef233c;
}

.footer-social ul li a i {
    margin-right: 8px;
}

.footer-newsletter form {
    display: flex;
}

.footer-newsletter input {
    padding: 10px;
    border: none;
    border-radius: 3px 0 0 3px;
    width: 70%;
}

.footer-newsletter button {
    padding: 10px 20px;
    border: none;
    background-color: #ef233c;
    color: #edf2f4;
    cursor: pointer;
    border-radius: 0 3px 3px 0;
}

.footer-newsletter button:hover {
    background-color: #d90429;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #8d99ae;
}

.footer-bottom p {
    font-size: 14px;
}

@media (max-width:768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-newsletter form {
        flex-direction: column;
    }

    .footer-newsletter input {
        width: 100%;
        margin-bottom: 10px;
    }

    .footer-newsletter button {
        width: 100%;
        border-radius: 3px;
    }
}

@media (max-width:480px) {
    footer {
        padding: 20px 0;
    }

    .footer-container div {
        margin: 5px 0;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

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

.pdfModal {
    width: 100%;
    height: 100%;
}


.modal-content {
  background-color: #062e25;
  color: #d9f99d;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.2);
  text-align: center;
  animation: zoomIn 0.4s ease forwards;

  max-width: 1200px; /* largura máxima em telas grandes */
  width: 80%;        /* ocupa 80% da tela */
  margin: 40px auto; /* centraliza */
  transform: scale(0.95);
}

@media (max-width: 768px) {
  .modal-content {
    width: 95%; /* em telas menores */
    padding: 20px;
  }
}


:root {
  --primary-color: #004b8d;
  --secondary-color: #0074a8;
  --hover-color: #00bcd4;
  --text-color: #fff;
  --dropdown-bg: #0b3042;
  --transition-speed: 0.3s;
}


body {
  font-family: "Montserrat", sans-serif;
  background-color: #f2f2f2;
}

.dropdown__link,
.dropdown__sublink {
    padding: 1.25rem 1.25rem 1.25rem 2.5rem;
    color: var(--white-color);
    background-color: #8bb2c9;
    display: flex;
    align-items: center;
    column-gap: .5rem;
    font-weight: var(--font-semi-bold);
    transition: background-color .3s;
}

.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 (max-width:340px) {
    .nav__link {
        padding-inline: 1rem;
    }
}



.mobile-menu {
    display: none;
    cursor: pointer;
}

.mobile-menu div {
    width: 32px;
    height: 2px;
    background: #fff;
    margin: 8px;
    transition: 0.3s;
}


.mobile-menu.active .line1 {
    transform: rotate(-45deg) translate(-8px, 8px);
}

.mobile-menu.active .line2 {
    opacity: 0;
}

.mobile-menu.active .line3 {
    transform: rotate(45deg) translate(-5px, -7px);
}

.pdfModal {
    width: 100%;
    height: 100%;
}

:root {
  --primary-color: #004b8d;
  --secondary-color: #0074a8;
  --hover-color: #00bcd4;
  --text-color: #fff;
  --dropdown-bg: #0b3042;
  --transition-speed: 0.3s;
}



body {
  font-family: "Montserrat", sans-serif;
  background-color: #f2f2f2;
}

/* --- NAVBAR --- */
nav {
  position: absolute;
  top: 0;
  width: 100%;
  /* background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)); */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.nav.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 1rem 2rem;
}



.nav__menu {
  display: flex;
  align-items: center;
}

.nav__list {
  list-style: none;
  display: flex;
  gap: 2rem;
}


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

/* --- DROPDOWN --- */
.dropdown__item {
  position: relative;
}

.dropdown__menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #8bb2c9;
  padding: 0.75rem 0;
  border-radius: 10px;
  min-width: 200px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-speed) ease;
}

.dropdown__item:hover .dropdown__menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
  background: #00639b;
}

.dropdown__link {
    display: block;
    padding: 1.50rem 1.25rem;
    color: var(--text-color);
    text-decoration: none;
    transition: background var(--transition-speed);
}

.dropdown__link:hover {
  background-color: #1c3985;
}

.dropdown__arrow {
  margin-left: 10px;
  transition: transform var(--transition-speed);
}

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

/* --- MOBILE --- */
.nav__toggle {
  display: none;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  user-select: none;
}

@media (max-width: 900px) {
  .nav__toggle {
    display: block;
  }

  .dropdown__arrow {
  margin-left: 14rem;
  transition: transform var(--transition-speed);
}

  .nav__menu {
    position: fixed;
    top: 110px;
    left: 0;
    width: 100%;
    background: #055160;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    display: none;
  }

  .nav__menu.active {
        display: flex;
        flex-direction: row;  }

  .nav__list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .dropdown__menu {
    position: static;
    opacity: 1;
    visibility: visible;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
  }

  .dropdown__link {
    padding: 1.5rem 1rem;
  }
}

.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;
}


/* ================================
   GALERIA V2 - Moderna e Premium
================================ */

.galleryV2-section {
  padding: 50px 0;
  /* background: linear-gradient(180deg, #06272f, #031d22, #06272f); */
  text-align: center;
  color: #fff;
}

.galleryV2-title {
  font-size: 2.6rem;
  margin-bottom: 10px;
  font-weight: 700;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.galleryV2-subtitle {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 40px;
}

.galleryV2-wrapper {
    position: relative;
    max-width: 1100px;
    margin: auto;
}

.galleryV2-carousel {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px;
    scrollbar-width: none;
}

.galleryV2-carousel::-webkit-scrollbar {
  display: none;
}

.galleryV2-item {
    flex: 0 0 257px;
    height: 260px;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    transform: perspective(900px) rotateY(0);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
    cursor: pointer;
}

.galleryV2-item:hover {
  transform: perspective(900px) rotateY(-8deg) scale(1.03);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
}

.galleryV2-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SETAS */
.galleryV2-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  border: none;
  width: 48px;
  height: 48px;
  font-size: 26px;
  cursor: pointer;
  color: #eee;
  border-radius: 50%;
  backdrop-filter: blur(6px);
  transition: 0.2s;
}

.galleryV2-btn:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: scale(1.1) translateY(-50%);
}

.galleryV2-btn.left {
  left: -15px;
  z-index: 1;
}

.galleryV2-btn.right {
  right: -15px;
}

/* DOTS */
.galleryV2-dots {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.galleryV2-dots button {
  width: 12px;
  height: 12px;
  background: #789;
  border: none;
  border-radius: 50%;
  transition: 0.3s;
}

.galleryV2-dots button.active {
  width: 32px;
  border-radius: 10px;
  background: #00ffc8;
}


/* Galeria */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.gallery img {
   
    border-radius: 10px;
    cursor: zoom-in;
    transition: .2s;
}

.gallery img:hover {
    opacity: .7;
}

/* Modal Lightbox */
.lightbox-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.lightbox-modal img {
    max-width: 60%;
    max-height: 80%;
    border-radius: 10px;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 45px;
    color: white;
    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 55px;
    color: white;
    cursor: pointer;
    padding: 10px;
    user-select: none;
}

.lightbox-prev { left: 40px; }
.lightbox-next { right: 40px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    color: #ccc;
}


/* ===========================
   WATCH EXPERIENCE
=========================== */

.watch-experience {
  margin-top: 20px;
}

.watch-btn {
  background: rgba(0, 0, 0, 0.55);
  border: 2px solid #33ae3f;
  color: #fff;
  padding: 14px 5px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.watch-btn i {
  font-size: 22px;
  color: #33ae3f;
}

.watch-btn:hover {
  background: #33ae3f;
  color: #fff;
}

.watch-btn:hover i {
  color: #fff;
}

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

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.video-modal-content {
  width: 90%;
  max-width: 900px;
  position: relative;
}

.video-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.video-close {
  position: absolute;
  top: -45px;
  right: 0;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
