/* RESET */
:root {
  --main-blue: #0f2e23;
}
html, body {
  margin: 0;
  padding: 0;
  background-color: var(#0f2e23);
}
:root {
  --primary-dark: #0f2e23; 
  --gold-accent: #c6a75e;
  --text-light: #ffffff;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--primary-dark);
  color: var(--text-light);
  font-family: 'Cormorant Garamond', serif;
}

/* HEADER BASE */

.header {
  position: fixed;   /* 👈 isto é o segredo */
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 60px;
  z-index: 1000;
  background: transparent;
  display: flex;
  align-items: center;
}

.header.scrolled {
  background-color: #0f2e23; /* azul escuro */
  padding: 15px 0;
}

/* NAV */
.nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* LINKS */
.nav a {
  color: white;
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

.nav a:hover {
  opacity: 0.6;
}

/* BOOK BUTTON */
.book-btn {
  border: 1px solid var(--gold-accent);
  color: white;
  padding: 8px 18px;
  transition: all 0.3s ease;
}

.book-btn:hover {
  background-color: var(--gold-accent);
  color: #0f2e23;
}

/* HERO */

.hero {
    background-position: center;
background-size: cover;
    height: 100vh;
    background: url('../images/hero.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    color: white;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0f2e23;
}

.hero-content {
    position: relative;
    max-width: 900px;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    line-height: 1.2;
}

.hero p {
    margin: 25px 0;
    font-size: 20px;
    font-weight: 300;
}

.primary-btn {
    display: inline-block;
    background: #C6A75E;
    color: white;
    padding: 14px 35px;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 14px;
}

/* INTRO */

.intro {
    padding: 140px 20%;
    text-align: center;
}

.intro h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    margin-bottom: 40px;
}

.intro p {
    font-size: 18px;
    line-height: 1.8;
}

/* FOOTER */

.footer {
    background: #0f2e23;
    color: white;
    text-align: center;
    padding: 40px;
    font-size: 13px;
}


html {
    scroll-behavior: smooth;
}

/* SIGNATURE EXPERIENCES */

.experiences {
    padding: 180px 10%;
    background: white;
    text-align: center;
}

.experiences h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    margin-bottom: 80px;
}

.experience-grid {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.experience-item {
    flex: 1;
    text-align: left;
    transition: transform 0.4s ease;
}

.experience-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    margin-bottom: 10px;
}

.experience-item p {
    font-size: 16px;
    line-height: 1.7;
}

.divider {
    display: block;
    width: 50px;
    height: 1px;
    background: linear-gradient(to right, #C6A75E, transparent);
    margin: 25px 0;
}

.experience-item:hover {
    transform: translateY(-8px);
}

.experience-item:hover h3 {
    color: #C6A75E;
}

/* RESPONSIVE */

@media (max-width: 900px) {

    .header {
        padding: 20px 30px;
    }

    .nav {
        display: none;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .intro {
        padding: 100px 10%;
    }

    .experiences {
        padding: 120px 10%;
    }

    .experience-grid {
        flex-direction: column;
        gap: 60px;
    }
.yacht-container {
    flex-direction: column;
}

.yacht-image,
.yacht-content {
    width: 100%;
}
}

/* THE YACHT SECTION */

.yacht {
    padding: 0px 10%;
    background: #0f2e23;
}

.yacht-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.yacht-image {
    flex: 1;
}

.yacht-image img {
   width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}
.yacht-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.18);
}
.yacht-content {
    flex: 1;
}

.yacht-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    margin-bottom: 20px;
}

.yacht-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    margin-bottom: 25px;
}

.yacht-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.yacht-features {
    list-style: none;
    padding: 0;
}

.yacht-features li {
    margin-bottom: 12px;
    font-size: 16px;
    position: relative;
    padding-left: 20px;
}

.yacht-features li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #C6A75E;

    
}

/* PRIVATE CELEBRATIONS */

.celebrations {
    padding: 160px 10%;
    background: #0f2e23;;
    color: white;
}

.celebrations h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    margin-bottom: 30px;
}

.celebrations p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.8;
}

.secondary-btn {
    display: inline-block;
    border: 1px solid #C6A75E;
    color: #C6A75E;
    padding: 14px 35px;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 14px;
    transition: all 0.4s ease;
}

.secondary-btn:hover {
    background: #C6A75E;
    color: #0f2e23;
}

/* SCROLL ANIMATIONS */

.fade-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* WHATSAPP FLOAT */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #C6A75E;
    color: #0f2e23;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 9999;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    background: #b8954f;
}

/* BOOKING PAGE */

.booking-hero {
    padding: 160px 10% 60px;
    text-align: center;
}

.booking-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    margin-bottom: 20px;
}

.booking-form-section {
    padding: 60px 10% 140px;
}

.booking-form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
}

.booking-form textarea {
    min-height: 120px;
}

.booking-form button {
    background: #c8a94c;
    color: white;
    border: none;
    padding: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-form button:hover {
    background: #b8953f;
    transform: translateY(-2px);
}

.why-section {
    padding: 140px 40px;
    color: #f5f2ea;
}

.why-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.why-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 110px;
    color: #d4af37;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 120px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-item {
    max-width: 320px;
    margin: 0 auto;
}

.why-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    margin-bottom: 20px;
    color: #d4af37;
}

.why-item p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.8;
}

.lux-line {
    width: 80px;
    height: 1px;
    background-color: #d4af37;
    margin: 0 auto 90px auto;
    opacity: 0.6;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #c8a94c;
    margin: 0 10px;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    opacity: 0.7;
}

/* NAV LINKS FIX */
.nav-links a,
.nav-links a:visited,
.nav-links a:active {
    color: #111;
    text-decoration: none;
}

/* Hover elegante */
.nav-links a:hover {
    opacity: 0.7;
    transition: 0.3s ease;
}

/* FIX NAV LINK COLORS */
.nav-links a,
.nav-links a:visited,
.nav-links a:active {
    color: #111 !important;
    text-decoration: none;
}

/* FIX NAV LINKS */
.nav a,
.nav a:visited,
.nav a:active {
    color: #111 !important;
    text-decoration: none !important;
}

/* Hover elegante */
.nav a:hover {
    opacity: 0.7;
    transition: 0.3s ease;
}

/* NAVBAR LINKS FIX DEFINITIVO */
.nav a {
    color: #111;
    text-decoration: none;
}

.nav a:visited {
    color: #111;
}

.nav a:hover {
    opacity: 0.7;
    transition: 0.3s ease;
}

/* NAV TYPOGRAPHY FIX */
.nav a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

html {
    scroll-behavior: smooth;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* =========================
   ENHANCE YOUR EXPERIENCE
========================= */

.enhance {
    padding: 120px 10%;
    background-color: #f4f1ea; /* mesmo tom claro elegante */
    color: #1a1a1a;
}

.enhance h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
}

.enhance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.enhance-block h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    margin-bottom: 20px;
}

.enhance-block p {
    margin: 8px 0;
    font-size: 16px;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 900px) {
    .enhance-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* =========================
   ENHANCE - LUXURY VERSION
========================= */

.enhance {
    padding: 160px 12%;
    background-color: #f6f3ec;
    color: #111;
}

.enhance-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 100px;
}

.enhance-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 500;
    margin: 0 40px;
    letter-spacing: 1px;
}

.lux-line {
    width: 60px;
    height: 1px;
    background-color: #c8a94c;
}

.enhance-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}

.enhance-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.enhance-divider {
    width: 40px;
    height: 1px;
    background-color: #c8a94c;
    margin-bottom: 25px;
}

.enhance-card p {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    margin: 12px 0;
    letter-spacing: 0.5px;
}

.enhance-card span {
    color: #c8a94c;
}

/* subtle hover luxury */
.enhance-card {
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.enhance-card:hover {
    transform: translateY(-6px);
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 1000px) {
    .enhance-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .enhance-header {
        flex-direction: column;
    }

    .lux-line {
        margin: 15px 0;
    }
}

/* =========================
   SIGNATURE EXPERIENCES - LUXURY
========================= */

.experiences {
    padding: 160px 12%;
    background-color: #0f2e23;
    color: #f5f5f5;
}

.experiences-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 100px;
}

.experiences-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 500;
    margin: 0 40px;
    letter-spacing: 1px;
}

.experience-list {
    max-width: 1200px;
    margin: auto;
}

.experience-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px 0;
    gap: 60px;
}

.experience-left {
    flex: 2;
}

.experience-left h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    margin-bottom: 20px;
}

.experience-description {
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.6;
}

.experience-right {
    flex: 1;
    text-align: right;
}

.experience-price {
    font-size: 20px;
    color: #c8a94c;
    margin-bottom: 10px;
}

.experience-duration {
    font-size: 14px;
    opacity: 0.7;
}

.experience-divider {
    height: 1px;
    background-color: rgba(200, 169, 76, 0.3);
}

/* Hover subtle */
.experience-item:hover {
    transform: translateX(5px);
    transition: 0.4s ease;
}

/* Responsive */
@media (max-width: 900px) {
    .experience-item {
        flex-direction: column;
        text-align: left;
    }

    .experience-right {
        text-align: left;
        margin-top: 20px;
    }
}

/* =========================
   FOOTER
========================= */

.footer {
    background-color: #0f2e23;
    color: #f5f5f5;
    padding: 80px 12%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #c8a94c;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-copy {
    font-size: 13px;
    opacity: 0.6;
}

/* =========================
   LEGAL PAGES
========================= */

.legal-hero {
    padding: 140px 10% 60px;
    background-color: #0f2e23;
    text-align: center;
}

.legal-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    letter-spacing: 1px;
}

.legal-content {
    max-width: 900px;
    margin: auto;
    padding: 40px 10% 120px;
    line-height: 1.8;
    font-size: 16px;
    color: #ffffff;
}

.legal-content h2 {
    font-family: 'Cormorant Garamond', serif;
    margin-top: 40px;
    font-size: 24px;
}

.legal-content ul {
    margin-left: 20px;
}

input[type="date"] {
    cursor: pointer;
}

.booking-note {
    margin-top: 15px;
    font-size: 13px;
    opacity: 0.7;
    text-align: center;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    transition: all 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: #c8a94c;
    box-shadow: 0 0 0 3px rgba(200, 169, 76, 0.15);
    outline: none;
}

.booking-hero h1 {
    font-size: 46px;
    letter-spacing: 1px;
}

.booking-subtext {
    margin-top: 15px;
    font-size: 16px;
    opacity: 0.8;
}

.logo img {
    height: 70px;
    transition: opacity 0.3s ease;
    
}

.logo img:hover {
    opacity: 0.8;
}

main {
    margin-top: 0;
}

.nav-container {
  width: 100%;
  padding: 0 60px;     /* espaço interno elegante */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;   /* isto é o segredo */
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: opacity 0.3s ease;
}

.nav a:hover {
  opacity: 0.6;
}

.nav-links a {
  color: white !important;
}

.header {
  height: 95px;
  padding: 0 60px;
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
}

.header.scrolled {
  background: #0f2e23;
  height: 85px;   /* ligeiramente mais fina */
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
}

.header .nav a {
  color: white !important;
}

body {
  background-color: #0f2e23;
  color: white;
}

.sunset-section {
  height: 500px;
  background: url("images/sunset.jpg") center/cover no-repeat;
}

.sunset-hero {
  height: 80vh;
  background: url("images/sunset1.jpg") center/cover no-repeat;
}

.gallery {
  padding: 100px 60px;
  background-color: #0f2e23;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

.experience-highlight {
  display: flex;
  align-items: center;
  padding: 100px 60px;
  background-color: #0f2e23;
}

.highlight-text {
  flex: 1;
  padding-right: 60px;
}

.highlight-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.highlight-image {
  flex: 1;
}

.highlight-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.celebration-programs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 60px 0;
}

.program {
  border: 1px solid #c6a85b;
  padding: 20px;
  text-align: center;
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.program:hover {
  background-color: #c6a85b;
  color: #0f2e23;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 46, 0.6); /* azul escuro overlay */
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
}

.hero-video {
  animation: slowZoom 20s linear infinite alternate;
}

.yacht {
  padding: 120px 10%;
  background: #0f2e23;
}

.yacht-container {
  display: flex;
  align-items: center;
  gap: 80px;
}

.yacht-image img {
  width: 500px;
  border-radius: 4px;
}

.yacht-content {
  max-width: 500px;
}

.secondary-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 35px;
  border: 1px solid #c6a85b;
  color: #c6a85b;
  text-decoration: none;
  transition: 0.3s ease;
}

.secondary-btn:hover {
  background: #c6a85b;
  color: #0f2e23;
}

.yacht-gallery {
  padding: 140px 10%;
  text-align: center;
}

.yacht-gallery h1 {
  font-size: 48px;
  margin-bottom: 60px;
}

.gallery-subtitle {
  font-size: 24px;
  margin: 80px 0 40px;
  color: #c6a85b;
  letter-spacing: 2px;
}

.yacht-gallery {
  padding: 160px 10%;
  background: #0f2e23;
}

.gallery-title {
  text-align: center;
  font-size: 52px;
  margin-bottom: 80px;
}

.gallery-subtitle {
  font-size: 26px;
  color: #c6a85b;
  margin: 100px 0 40px;
  letter-spacing: 2px;
}

/* LAYOUT EDITORIAL */
.gallery-editorial {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.gallery-editorial.reverse {
  flex-direction: row-reverse;
}

.gallery-large {
  flex: 2;
}

.gallery-small {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.gallery-large img,
.gallery-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.7s ease;
  cursor: pointer;
}

.gallery-large img {
  height: 600px;
}

.gallery-small img {
  height: 280px;
}

/* HOVER PREMIUM */
.gallery-large img:hover,
.gallery-small img:hover {
  transform: scale(1.03);
  filter: brightness(1.1);
}

.back-link {
  display: inline-block;
  margin-bottom: 60px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c6a85b;
  text-decoration: none;
  position: relative;
  transition: all 0.4s ease;
}

/* Linha minimal por baixo */
.back-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 1px;
  background: #c6a85b;
  transition: width 0.4s ease;
}

/* Hover elegante */
.back-link:hover::after {
  width: 100%;
}

.back-link:hover {
  letter-spacing: 3px;
}

.program {
  text-decoration: none;
  display: block;
  border: 1px solid #c6a85b;
  padding: 20px;
  text-align: center;
  color: #ffffff;
  transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0f2e23;
    color: white;
    font-family: serif;
}

/* HEADER */

.header {
    padding: 20px 60px;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 30px;
    font-size: 14px;
}

.btn-outline {
    border: 1px solid #c6a85b;
    padding: 8px 18px;
}

/* HERO */

.hero {
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    opacity: 0.8;
}

/* CONTENT */

.content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    padding: 80px 20px;
}

.text {
    flex: 1;
}

.text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.text p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.text ul {
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-gold {
    background: #c6a85b;
    color: #0f2e23;
    padding: 12px 28px;
    text-decoration: none;
    display: inline-block;
}

.images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.images img {
    width: 100%;
}

/* HEADER OVER HERO (igual homepage) */

.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

header .nav-links a {
    color: white !important;
}

header .nav-links a:visited {
    color: white !important;
}

header .nav-links a:hover {
    color: white !important;
}

/* HERO */
.bachelor-hero {
  position: relative;
  height: 90vh;
  background: url('../images/despedidadesolteiro2.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 10%;
  color: white;
}

.bachelor-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.bachelor-hero-content {
  position: relative;
  max-width: 600px;
  z-index: 2;
}

.bachelor-hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.bachelor-hero .subtitle {
  font-size: 20px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.hero-description {
  margin-bottom: 25px;
}

/* SPLIT SECTION */
.bachelor-split {
  display: flex;
  align-items: center;
  padding: 100px 10%;
  gap: 60px;
}

.split-text {
  flex: 1;
}

.split-image {
  flex: 1;
}

.split-image img {
  width: 100%;
  border-radius: 8px;
}

/* EXPERIENCE GRID */
.bachelor-experience {
  padding: 100px 10%;
  text-align: center;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.experience-item h3 {
  margin-bottom: 10px;
}

/* UPGRADES */
.bachelor-upgrades {
  padding: 100px 10%;
  text-align: center;
}

.upgrades-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.upgrades-list li {
  margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .bachelor-split {
    flex-direction: column;
  }

  .experience-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .experience-grid {
    grid-template-columns: 1fr;
  }
}

.section-divider {
width: 100%;
height: 1px;
background: linear-gradient(to right, transparent, #c9a54c, transparent);
margin: 80px 0;
}

.experience-list {
list-style: none;
padding: 0;
margin-top: 20px;
}

.experience-list li {
margin-bottom: 10px;
opacity: 0.9;
}

/* CORPORATE PAGE */

.experience-container{
max-width:1200px;
margin:auto;
padding:140px 10%;
}

.experience-hero{
height:70vh;
background-size:cover;
background-position:center;
}

.experience-hero h1{
font-size:48px;
margin-bottom:20px;
}

.experience-intro{
font-size:20px;
opacity:0.9;
}

.experience-content{
max-width:700px;
margin-bottom:100px;
}

.experience-content h2{
font-size:32px;
margin-bottom:20px;
}

.experience-content p{
margin-bottom:20px;
line-height:1.7;
opacity:0.9;
}

.experience-list{
list-style:none;
padding:0;
margin-top:30px;
}

.experience-list li{
margin-bottom:12px;
opacity:0.9;
}

.section-divider{
height:1px;
width:100%;
background:linear-gradient(to right, transparent, #c9a54c, transparent);
margin:100px 0;
}


/* SPLIT IMAGE SECTIONS */

.corporate-split{
display:flex;
align-items:center;
gap:80px;
margin-bottom:120px;
}

.corporate-split.reverse{
flex-direction:row-reverse;
}

.corporate-image{
flex:1;
}

.corporate-image img{
width:100%;
border-radius:6px;
}

.corporate-text{
flex:1;
max-width:600px;
}


/* CTA */

.experience-cta{
max-width:700px;
margin-top:120px;
}

.btn-gold{
display:inline-block;
padding:14px 32px;
border:1px solid #c9a54c;
color:#c9a54c;
background:transparent;
text-decoration:none;
letter-spacing:1px;
font-size:14px;
transition:all 0.3s ease;
}

.btn-gold:hover{
background:#c9a54c;
color:#0c2d23;
cursor:pointer;
}


/* RESPONSIVE */

@media (max-width:900px){

.corporate-split{
flex-direction:column;
}

.corporate-split.reverse{
flex-direction:column;
}

}

.experience-cta p{
margin-bottom:25px;
}


/* ================= MOBILE LAYOUT ================= */

@media (max-width: 768px) {

/* NAVBAR */

.nav-container{
padding:20px 6%;
}

.nav-links{
display:none;
}


/* HERO */

.experience-hero h1{
font-size:32px;
line-height:1.2;
}

.experience-intro{
font-size:16px;
}


/* CONTAINER */

.experience-container{
padding:100px 8%;
}


/* SPLIT SECTIONS (imagem + texto) */

.corporate-split{
flex-direction:column;
gap:40px;
margin-bottom:80px;
}

.corporate-split.reverse{
flex-direction:column;
}

.corporate-text{
max-width:100%;
}


/* IMAGENS */

.corporate-image img{
width:100%;
border-radius:6px;
}


/* TITLES */

.experience-content h2{
font-size:26px;
}


/* LISTS */

.experience-list li{
font-size:15px;
}


/* CTA */

.experience-cta h2{
font-size:28px;
}

.btn-gold{
width:100%;
text-align:center;
padding:16px;
}


/* FOOTER */

.footer-content{
flex-direction:column;
gap:20px;
text-align:center;
}

}

/* MOBILE FIX */

html, body{
width:100%;
max-width:100%;
margin:0;
padding:0;
overflow-x:hidden;
}

section{
width:100%;
}

.container{
width:90%;
max-width:1200px;
margin:0 auto;
}

img{
max-width:100%;
height:auto;
display:block;
}

/* ABOUT HERO */

.about-hero{
height:70vh;
background:url('../images/douro-about.jpg') center/cover no-repeat;
position:relative;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.about-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,0.45);
}

.about-content{
position:relative;
z-index:2;
max-width:700px;
padding:20px;
}

.about-content h1{
font-size:48px;
margin-bottom:20px;
}

.about-content p{
font-size:18px;
}

/* ABOUT HERO */

.about-hero{
height:70vh;
background:url("../images/about-hero.jpg") center/cover no-repeat;
position:relative;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.about-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,0.45);
}

.about-hero-content{
position:relative;
z-index:2;
max-width:700px;
padding:20px;
}

.about-hero h1{
font-size:48px;
margin-bottom:20px;
}


/* SPLIT SECTIONS */

.about-split{
display:flex;
align-items:center;
gap:80px;
padding:100px 10%;
background:#0c2d23;
}

.about-split.reverse{
flex-direction:row-reverse;
}

.about-image{
flex:1;
}

.about-image img{
width:100%;
border-radius:8px;
}

.about-text{
flex:1;
color:white;
}

.about-text h2{
font-size:34px;
margin-bottom:20px;
}

.about-text p{
line-height:1.7;
margin-bottom:15px;
font-size:16px;
}


/* FULL IMAGE */

.about-full img{
width:100%;
height:500px;
object-fit:cover;
}


/* MOBILE */

@media (max-width:768px){

.about-hero h1{
font-size:32px;
}

.about-split{
flex-direction:column;
gap:40px;
padding:80px 25px;
}

.about-split.reverse{
flex-direction:column;
}

.about-full img{
height:350px;
}

}

.about-features{
padding:120px 10%;
text-align:center;
background:#0c2d23;
color:white;
}

.about-features h2{
font-size:36px;
margin-bottom:60px;
}

.features-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
}

.feature{
padding:30px;
border:1px solid #c5a86a;
border-radius:6px;
}

.feature h3{
margin-bottom:15px;
}

@media (max-width:768px){
.features-grid{
grid-template-columns:1fr;
}
}

.about-team{
padding:120px 10%;
text-align:center;
background:#0f3d2f;
color:white;
}

.team-grid{
display:flex;
justify-content:center;
gap:60px;
margin-top:60px;
}

.team-member img{
width:250px;
border-radius:6px;
margin-bottom:20px;
}

@media (max-width:768px){
.team-grid{
flex-direction:column;
align-items:center;
}
}

/* REVIEWS */

.reviews{
padding:120px 10%;
background:#0c2d23;
color:white;
text-align:center;
}

.reviews h2{
font-size:36px;
margin-bottom:70px;
}

.reviews-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
}

.review{
border:1px solid #c5a86a;
padding:35px;
border-radius:6px;
text-align:left;
}

.review p{
line-height:1.7;
margin-bottom:20px;
}

.review-author{
font-size:14px;
color:#c5a86a;
}

.review-author span{
color:white;
margin-left:8px;
}

/* mobile */

@media (max-width:768px){

.reviews-grid{
grid-template-columns:1fr;
}

}

/* CONTACT HERO */

.contact-hero{
height:60vh;
background:url("../images/douro-sunset.jpg") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
position:relative;
text-align:center;
color:white;
}

.contact-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,0.45);
}

.contact-content{
position:relative;
z-index:2;
}


/* CONTACT SECTION */

.contact-section{
padding:120px 10%;
background:#0c2d23;
color:white;
}

.contact-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
text-align:center;
}

.contact-box{
border:1px solid #c5a86a;
padding:40px;
border-radius:6px;
}

.contact-box h3{
margin-bottom:20px;
}


/* CTA */

.contact-cta{
padding:120px 10%;
text-align:center;
background:#0f3d2f;
color:white;
}

.contact-cta h2{
font-size:36px;
margin-bottom:20px;
}

.contact-cta p{
margin-bottom:30px;
}


/* MOBILE */

@media (max-width:768px){

.contact-grid{
grid-template-columns:1fr;
}

}


/* experiences */

.experience-hero{
height:70vh;
background:url("../images/sunset-hero.jpg") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
position:relative;
text-align:center;
color:white;
}

.experience-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,0.4);
}

.experience-hero-content{
position:relative;
z-index:2;
max-width:700px;
}

.experience-container{
display:flex;
gap:80px;
padding:120px 10%;
}

.experience-image img{
width:100%;
border-radius:8px;
}

.highlights-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
max-width:1200px;
margin:auto;
text-align:center;
}

.details-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
padding:80px 10%;
text-align:center;
}

@media (max-width:768px){

.experience-container{
display:flex;
gap:80px;
padding:120px 10%;
max-width:1200px;
margin:auto;
align-items:center;
}

.highlights-grid{
grid-template-columns:1fr;
}

.details-grid{
grid-template-columns:1fr;
}

}

section{
width:100%;
}

body{
overflow-x:hidden;
}

.container{
max-width:1200px;
margin:auto;
padding:0 40px;
}

.experience-highlights{
padding:120px 0;
}

.highlights-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
margin-top:40px;
text-align:center;
}

.highlight-item{
font-size:16px;
opacity:0.9;
}

.info-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:60px;
text-align:center;
margin-top:80px;
}

.cta-section{
padding:120px 0;
text-align:center;
}

.experience-itinerary{
padding:100px 0;
}

.itinerary{
max-width:800px;
margin-top:30px;
line-height:1.7;
}

.info-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:60px;
text-align:center;
margin-top:80px;
}

.info-box h3{
margin-bottom:10px;
}

.info-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:60px;
text-align:center;
margin-top:80px;
}

.info-box h3{
margin-bottom:10px;
}

.hero .btn,
.hero button,
.hero .cta-button{
margin-top:50px;
display:inline-block;
}

.experience-cta{
padding:120px 0;
text-align:center;
}

.experience-cta h2{
margin-bottom:30px;
font-size:32px;
}

.cta-button{
display:inline-block;
padding:14px 36px;
border:2px solid #c9a54c;
color:#c9a54c;
text-decoration:none;
font-weight:600;
letter-spacing:1px;
transition:0.3s;
}

.cta-button:hover{
background:#c9a54c;
color:#0d3b2f;
}

.hero .cta-button{
margin-top:35px;
}

/* botões experiências */

.experience-link{
text-decoration:none;
color:white;
transition:0.3s;
}

.experience-link:hover{
color:#c9a54c;
}

.experience-hero{
height:85vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;

}

/* EXPERIENCE HERO */

.experience-hero{
height:100vh;
background:url("../images/sunset-hero.jpg") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
position:relative;
color:white;
}

.experience-hero h1{
font-size:64px;
margin-bottom:20px;
}

.experience-hero p{
font-size:20px;
margin-bottom:30px;
opacity:0.9;
}


/* DETAILS */

.experience-details{
padding:120px 10%;
text-align:center;
}

.details-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:60px;
max-width:900px;
margin:auto;
}

.detail-box h3{
margin-bottom:10px;
color:#c6a75e;
}


/* GALLERY */

.experience-gallery{
padding:120px 10%;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
}

.gallery-grid img{
width:100%;
height:350px;
object-fit:cover;
border-radius:6px;
transition:transform 0.6s ease;
}

.gallery-grid img:hover{
transform:scale(1.03);
}


/* HIGHLIGHTS */

.experience-highlights{
padding:140px 10%;
text-align:center;
}

.highlights-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
max-width:900px;
margin:auto;
margin-top:40px;
}


/* ITINERARY */

.experience-itinerary{
padding:120px 10%;
text-align:center;
}

.itinerary{
max-width:700px;
margin:auto;
line-height:1.8;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-social a {
    color: #d4af37;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 1px;
    transition: 0.3s;
}

.footer-social a:hover {
    opacity: 0.7;
}


.instagram-container h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    color: white;
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
}

.instagram-container p {
    color: #d4af37;
    letter-spacing: 2px;
    margin-bottom: 50px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 1100px;
    margin: auto;
}

.instagram-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.6s;
}

.instagram-grid img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.instagram-btn {
    display: inline-block;
    margin-top: 50px;
    padding: 15px 40px;
    background: #d4af37;
    color: #0f3b3a;
    text-decoration: none;
    letter-spacing: 2px;
    transition: 0.3s;
}

.instagram-btn:hover {
    background: white;
}

.instagram-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}