:root {
    --primary-cyan: #00AEEF;
    /* Bright Cyan from button */
    --top-bar-bg: #2ba6cb;
    /* Adjustable */
    --text-white: #ffffff;
    --font-main: 'Montserrat', sans-serif;
    --font-rubik: 'Rubik', sans-serif;
    --font-inter: 'Inter', sans-serif;
}

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

body {
    font-family: 'DM Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f0f0f0;
    overflow-x: hidden;
    /* Prevent horizontal scroll from decorations */
}

/* Top Bar */
.top-bar {
    background-color: #4EBEDB;
    background: linear-gradient(90deg, #4EBEDB 0%, #026B87 100%);
    /* Updated gradient */
    color: white;
    text-align: center;
    padding: 10px 15px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--font-inter);
    position: relative;
    z-index: 50;
}

/* ... existing styles ... */

/* Trust Badge Image Container */
.badge-container {
    position: absolute;
    top: -70px;
    /* Moved up slightly */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
    pointer-events: none;
}

/* ... existing styles ... */

.about-us h2 {
    font-family: var(--font-rubik);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 20px;
    margin-top: 10px;
    color: #083552;
    /* Updated Color */
}

.about-us h3 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.4;
    color: #083552;
    /* Updated Color */
    margin-bottom: 30px;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    /* Fixed height to match the compact mobile design reference */
    height: 640px;
    background-image: url('assets/images/hero-bg.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
    /* Allow content to spill out if needed */
}

/* Dark overlay for readability */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    /* No dark overlay for maximum clarity */
    z-index: 1;
}

/* Ensure content is above overlay */
.main-header,
.hero-content,
.bottom-elements,
.bottom-curve {
    position: relative;
    z-index: 2;
}

/* Header */
.main-header {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 100;
    /* High z-index for header */
}

.logo {
    height: 55px;
    /* Increased size as requested */
    object-fit: contain;
    position: relative;
    z-index: 102;
    /* Ensure logo is above menu overlay if desired, or let menu cover it. Usually menu covers everything. */
}

/* Hamburger Menu Toggle */
/* Hamburger Menu Toggle */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1000;
    /* Highest priority */
    position: relative;
    padding: 5px;
    /* Click area */

    /* Interaction Polish */
    -webkit-tap-highlight-color: transparent;
    outline: none;
    transition: transform 0.1s ease;
}

.menu-toggle:active {
    transform: scale(0.9);
    /* Sinks when clicked */
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Menu Styles - Modern Full Screen Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, #2fa3c9 0%, #00233A 100%);
    /* Premium Gradient */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;

    /* Modern Clip-Path Animation (Circle Expand from Top Right) */
    clip-path: circle(0% at 90% 5%);
    /* Starts as small circle at burger position */
    transition: clip-path 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    /* Smooth eased transition */

    /* Ensure no scroll on underlying body when active (JS usually handles this class on body, currently handled by overlay) */
    overflow-y: auto;
    /* Allow menu scroll if content is tall */
    -webkit-overflow-scrolling: touch;
}

/* Remove Old Wave Elements */
.mobile-menu::before,
.mobile-menu::after {
    display: none;
}

.mobile-menu.active {
    clip-path: circle(150% at 90% 5%);
    /* Expands to cover full screen */
}

.mobile-menu ul {
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0;
    width: fit-content;
}

.mobile-menu li {
    margin: 20px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu.active li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu.active li:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-menu.active li:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-menu.active li:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-menu.active li:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-menu.active li:nth-child(6) {
    transition-delay: 0.35s;
}

.mobile-menu.active li:nth-child(7) {
    transition-delay: 0.4s;
}

.mobile-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    /* Reduced font size for elegance */
    font-weight: 700;
    font-family: var(--font-rubik);
    text-transform: capitalize;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a:active {
    transform: scale(1.1);
    color: #ffd700;
    /* Gold highlight */
    text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
}

/* Hero Content */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    margin-top: -40px;
}

/* Hero H1 */
.hero-content h1 {
    color: white;
    font-family: var(--font-rubik);
    font-size: 1.8rem;
    line-height: 1.1;
    font-weight: 700;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.6);
    margin-bottom: 25px;
    /* Increased spacing */
    letter-spacing: normal;
    white-space: nowrap;
}

.hero-content h1 span {
    display: block;
}

/* Subtitle - Restoring Visibility */
.hero-content .subtitle {
    display: block;
    color: white !important;
    font-family: var(--font-rubik);
    /* Or Inter if preferred, reference looks clean */
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 35px;
    /* Space between subtitle and button */
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.8);
    opacity: 0.95;
}

/* Pulse Animation Keyframes */
/* Pulse Animation Keyframes - Enhanced Visibility */
@keyframes softPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 169, 212, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(0, 169, 212, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 169, 212, 0);
    }
}

.cta-button {
    background: #00A9D4;
    color: white;
    font-family: var(--font-rubik);
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    /* Base Shadow */
    box-shadow: 0 4px 15px rgba(0, 169, 212, 0.4);

    /* Animation */
    animation: softPulse 2s infinite;

    text-transform: uppercase;
    position: relative;
    z-index: 5;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;

    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.cta-button:hover,
.cta-button:focus {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 169, 212, 0.6);
    /* Pause animation on hover if desired, or keep it. User asked for "piscando suave". Usually infinite. */
}

.cta-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(0, 169, 212, 0.4);
}

.cta-button svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.5px;
    flex-shrink: 0;
    /* Prevent icon shrinking */
}

/* Pulsing Effect via Shadow/Transform */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 169, 212, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 169, 212, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 169, 212, 0);
    }
}

/* Trust Badge Image Container */
.badge-container {
    position: absolute;
    top: -70px;
    /* Moved up slightly */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    /* Flexbox */
    justify-content: center;
    z-index: 1000;
    pointer-events: none;
}

.trust-badge-img {
    width: 100px;
    /* Smaller size */
    height: auto;
    filter: drop-shadow(0px 5px 15px rgba(0, 0, 0, 0.2));
}

/* About Us Section */
.about-us {
    background-color: #E8F6FA;
    padding: 30px 25px 80px 25px;
    /* Significantly reduced to pull content up */
    text-align: center;
    position: relative;
    color: #112d4e;
    margin-top: -2px;
    z-index: 20;
}

/* Top Curve (Inside About Us) - acting as the transition */
.top-curve {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(-99%);
    /* Pulls the wave UP into the hero */
    line-height: 0;
    z-index: 25;
    pointer-events: none;
    /* Ensure it doesn't block interactions */
}

.top-curve svg {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    /* Ensure rendering */
}

/* Ensure curve is white/bg color */
.top-curve svg path {
    fill: #E8F6FA;
}

.about-us h2 {
    font-family: var(--font-rubik);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 20px;
    margin-top: 10px;
    /* Tightest spacing */
    color: #083552;
    /* Updated Color */
}

.about-us h3 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    /* Larger */
    line-height: 1.4;
    color: #083552;
    /* Updated Color */
    margin-bottom: 30px;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-us p {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
    text-align: left;
    /* Left align paragraphs */
    max-width: 500px;
    /* narrowed as requested */
    margin-left: auto;
    margin-right: auto;
    /* Center the text block itself */
}

.about-us strong {
    font-weight: 700;
    color: #083552;
    /* Matched to section text blue */
}

/* ... existing styles ... */

.charcoal-decor {
    position: absolute;
    top: auto;
    bottom: 400px;
    /* Moved UP significanly (was 300px) */
    right: 10px;
    width: 200px;
    z-index: 5;
    transform: rotate(0deg);
}

/* ... existing styles ... */

/* Roteiro Norte - Dolphin Decor - Aligned NEXT to Jellyfish */
.dolphin-decor {
    width: 250px;
    top: 60%;
    /* Aligned line */
    left: auto;
    /* Remove left positioning */
    right: 180px;
    /* Positioned to the left of the Jellyfish (which is right: 0 or close) */
    opacity: 1;
    display: block;
    z-index: 20;
    transform: scaleX(1);
    /* Reset flip if needed, or keep -1 depending on image direction. Usually dolphins swim forward. */
}

/* About Bottom Curve */
.about-bottom-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 5;
}

.about-bottom-curve svg {
    width: 100%;
}

.about-bottom-curve svg path {
    fill: #D2F0FF;
    /* Matches next section background exactly, seamless blend */
}

/* Roteiros Section */
.roteiros-section {
    background-color: #D2F0FF;
    position: relative;
    text-align: center;
    color: #083552;
    padding: 40px 0 120px 0;
    overflow-x: hidden;
    /* Fix horizontal scroll */
}

/* ... existing styles ... */

/* Incluso Section */
.incluso-section {
    background-color: #E8F6FA;
    padding: 50px 0 120px 0;
    margin-top: -10px;
    position: relative;
    text-align: center;
    color: #083552;
    /* overflow-x: hidden; Removed to allow top curve visibility */
}

/* ... existing styles ... */

.incluso-list {
    list-style: none;
    padding: 0;
    margin: 0px 0px 40px 50px;
    /* Specific margin requested */
    text-align: left;
    width: 100%;
    max-width: 500px;
}

/* ... existing styles ... */

.incluso-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    margin: 0 auto;
    /* Force button to center */
}

/* Decorations (Parallax) */
.ice-decor {
    top: 250px;
    /* Moved down */
    right: -40px;
    width: 220px;
    /* Opacity removed */
    z-index: 1;
    transform: rotate(10deg);
}

.charcoal-decor {
    top: 550px;
    right: -10px;
    width: 160px;
    /* Opacity removed */
    z-index: 1;
    transform: rotate(-15deg);
}

/* Typography */
.section-title {
    font-family: var(--font-rubik);
    font-weight: 700;
    font-size: 32px;
    color: #083552;
    margin-bottom: 40px;
    /* Increased spacing below title */
    text-transform: uppercase;
    line-height: 1.1;
}

.roteiro-subtitle {
    font-family: var(--font-rubik);
    font-weight: 700;
    font-size: 28px;
    color: #083552;
    margin-bottom: 30px;
    line-height: 1.2;
}

.roteiro-subtitle .highlight {
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    display: block;
    font-size: 16px;
    margin-top: 5px;
}

/* Card Component */
.roteiro-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 50, 100, 0.1);
    max-width: 450px;
    margin: 0 20px;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

/* Slider Container */
.slider-container {
    position: relative;
    width: 100%;
    height: 261px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.slides-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Internal Stroke Overlay */
.slides-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 0 2px white;
    pointer-events: none;
    z-index: 15;
    /* Above slides (z=1) and maybe distinct from others */
    border-radius: 20px 20px 0 0;
    /* Match card top shape */
}

.slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Inner White Border */
.inner-border {
    display: none;
}

/* Glassy Arrows */
/* Glassy Arrows */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    /* White semi-transparent */
    color: #333;
    /* Dark arrow for visibility on light/dark images */
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    backdrop-filter: blur(5px);
    z-index: 20;
    transition: background 0.3s;
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

/* Sales Badge */
.sales-badge {
    position: absolute;
    top: 8px;
    /* Moved diagonally up-left */
    left: 8px;
    width: 55px;
    /* Smaller size */
    height: 55px;
    border-radius: 50%;
    z-index: 25;
    /* User said "Insert the gold badge". We have an img tag inside in HTML. Use that. */
    display: block;
    background: transparent;
    /* Let image handle it */
    border: none;
    /* remove border if image is the badge */
}

/* Content Details */
.card-details {
    padding: 25px 30px;
    text-align: left;
    background: white;
    display: flex;
    flex-direction: column;
}

.beaches-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 15px;
    /* Reduced further to pull button up */
    /* Reduced margin to pull button up */
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0;
    /* Zero gap as requested */
}

.beaches-list li {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    margin-bottom: 20px;
    /* Increased spacing */
    display: flex;
    align-items: flex-start;
    /* Align icon to top if multiline */
    gap: 12px;
    color: #333;
    line-height: 1.4;
}

/* Button Centering */
/* Button Centering & Spacing */
.roteiro-btn {
    align-self: center;
    /* Center flex item */
    width: 100%;
    max-width: 100%;
    /* Full width as requested for Lancha, check Roteiro context */
    /* Only limit width if specific to larger screens, but user said "mesma largura (preenchendo bem o card)" */
    margin-top: 10px;
    /* Reduced margin-top (was likely implicit or larger) */
    justify-content: center;
}

/* Decoration Elements */
/* Decoration Elements */
.bg-decor {
    position: absolute;
    z-index: 1;
    opacity: 1;
    /* Removed opacity (was 0.8) */
    transition: transform 0.1s linear;
    filter: saturate(1.2);
}

/* Existing Decor */
.turtle-decor {
    top: -20px;
    right: -40px;
    width: 160px;
    opacity: 1;
    /* Was 0.6 */
    transform: rotate(15deg);
}

.fish-decor {
    top: 80px;
    left: -50px;
    width: 130px;
    opacity: 1;
    /* Was 0.6 */
    transform: rotate(-10deg);
}

/* New Decor (Roteiro Norte) - These seem legacy, override below but fixing here too */
.dolphin-decor {
    top: 850px;
    left: -50px;
    width: 180px;
    opacity: 1;
    /* Was 0.6 */
    transform: rotate(5deg);
    z-index: 1;
}

.jellyfish-decor {
    top: 1150px;
    right: -50px;
    width: 140px;
    opacity: 1;
    /* Was 0.6 */
    transform: rotate(-5deg);
    z-index: 1;
}

/* ... content ... */

/* Roteiro Norte - Dolphin Decor - UPDATED PER REQUEST */
.dolphin-decor {
    width: 250px;
    top: 41%;
    /* User Request */
    left: -24%;
    /* User Request (Uncommented) */
    right: auto;
    opacity: 1;
    display: block !important;
    z-index: 10;
    /* User Request */
    transform: scaleX(-1);
    /* Facing Right */
}

/* Roteiro Norte - Jellyfish Decor - UPDATED PER REQUEST */
.jellyfish-decor {
    width: 160px;
    /* User Request: 160px */
    top: 59%;
    /* User Request */
    right: -11%;
    /* User Request */
    opacity: 1;
    z-index: 10;
    /* User Request */
    animation-delay: 1.5s;
}

/* Bottom Curve */
.roteiros-bottom-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
    /* Ensure it stays on top of any potential gaps */
}

.roteiros-bottom-curve svg {
    display: block;
    /* Critical for removing white gap */
    width: 100%;
    height: auto;
}

/* Incluso Section */
.incluso-section {
    background-color: #E8F6FA;
    padding: 50px 0 120px 0;
    margin-top: -10px;
    /* Forcefully pull up to remove white line gap */
    position: relative;
    text-align: center;
    color: #083552;
}

/* Specific Lighter Title for Included Section */
.incluso-section .section-title {
    font-weight: 600;
    /* Reduced from Bold(700) */
}

.container-incluso {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
}

/* Mobile Reordering Magic */
/* Mobile Reordering Magic (Mobile Only) */
@media (max-width: 1023px) {

    .incluso-left,
    .incluso-right {
        display: contents;
        /* Unwrap containers on mobile to allow reordering children */
    }

    /* Order 1: Title */
    .incluso-section .section-title {
        order: 1;
        font-weight: 600;
        margin-bottom: 20px;
    }

    /* Order 2: Image */
    .incluso-img-wrapper {
        order: 2;
        width: 100%;
        max-width: 400px;
        margin: 0 auto 30px auto;
        /* Centered Image */
    }

    /* Order 3: List */
    .incluso-list {
        order: 3;
        list-style: none;
        padding: 0;
        margin: 0px 0px 40px 50px;
        text-align: left;
        width: 100%;
        max-width: 500px;
    }

    /* Order 4: Button */
    .incluso-btn {
        order: 4;
    }
}

html,
body {
    font-family: 'DM Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f0f0f0;
    overflow-x: hidden;
    /* Critical for mobile scroll fix */
    max-width: 100vw;
    /* Double protection */
}

.main-incluso-img {
    width: 100%;
    height: auto;
    display: block;
}

.incluso-list {
    list-style: none;
    padding: 0;
    margin: 0px 0px 40px 50px;
    /* Left aligned block (removed auto) */
    text-align: left;
    /* Text aligns left */
    width: 100%;
    max-width: 500px;
}

.incluso-list li {
    font-family: 'DM Sans', sans-serif;
    font-size: 19px;
    font-weight: 400;
    /* Regular Weight (Light and Clean) */
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #083552;
}

/* Decorations (Parallax) */
/* Decorations (Parallax) */
/* Decorations (Parallax) */
.ice-decor {
    top: 18%;
    /* Active */
    /* right: -20px; */
    /* width: 220px; */
    z-index: 5;
    /* Active */
    /* transform: rotate(10deg); */
}

.charcoal-decor {
    /* position: absolute; */
    /* top: auto; */
    /* bottom: 180px; */
    right: -32px;
    /* Active */
    /* width: 200px; */
    z-index: 5;
    /* Active */
    transform: rotate(0deg);
    /* Active */
}

/* ... existing styles ... */

/* Roteiro Norte - Dolphin Decor - Left side exiting screen */
/* Roteiro Norte - Dolphin Decor - Aligned with Title */
/* Roteiro Norte - Dolphin Decor - Aligned with Title */
/* Roteiro Norte - Dolphin Decor - Aligned with Title */
.dolphin-decor {
    width: 250px;
    width: 250px;
    top: 43%;
    /* User Request: 43% */
    left: -24%;
    /* User Request */
    right: auto;
    opacity: 1;
    /* NO Opacity */
    display: block !important;
    z-index: 10;
    transform: scaleX(-1);
    /* Facing Right */
}

/* Roteiro Norte - Jellyfish Decor */
.jellyfish-decor {
    width: 160px;
    top: 59%;
    /* User Request */
    right: -11%;
    /* User Request */
    opacity: 1;
    /* NO Opacity */
    z-index: 10;
    animation-delay: 1.5s;
}

/* ... existing styles ... */

.faq-question {
    width: 100%;
    background-color: #125678 !important;
    /* Force Update Blue per Request */
    color: white;
    border: none;
    padding: 25px 25px 30px 25px;
    /* Added more bottom padding for "afastamento" */
    font-family: var(--font-rubik);
    font-weight: 600;
    /* Semi-bold as requested */
    /* font-size removed to use default/inherit */
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s;
    text-align: left;
    gap: 15px;
    line-height: 1.4;
    /* Improved line spacing */
}

/* Button */
.incluso-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    margin: 0 auto;
    /* Order applied above */
}

/* Bottom Curve */
.incluso-bottom-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.faq-question {
    width: 100%;
    background-color: #125678;
    /* Updated Blue per Request */
    color: white;
    border: none;
    padding: 25px 25px 30px 25px;
    /* Added more bottom padding for "afastamento" */
    font-family: var(--font-rubik);
    font-weight: 600;
    /* Semi-bold as requested */
    /* font-size removed to use default/inherit */
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s;
    text-align: left;
    gap: 15px;
    line-height: 1.4;
    /* Improved line spacing */
}

/* Reserva Section */
.reserva-section {
    background-color: #B3E2FA;
    padding: 60px 0 40px 0;
    /* Reduced bottom padding from 120px to 40px */
    margin-top: -5px;
    /* Connection */
    position: relative;
    text-align: center;
    color: #083552;
    overflow-x: hidden;
}

.arrow-divider {
    margin: 20px 0 40px 0;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2 columns like reference image */
    gap: 15px;
    /* Space between cards */
    max-width: 800px;
    margin: 0 auto 50px auto;
    padding: 0 20px;
}

@media (max-width: 600px) {
    .steps-grid {
        grid-template-columns: 1fr 1fr;
        /* Maintain 2 columns on mobile if possible, or stack? Ref shows 2x2 grid */
    }
}

/* ... existing step-card styles ... */
.step-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;

    /* Animation Setup */
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    /* Start lower and slightly smaller */
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    /* Smooth 'glassy' easing */

    /* Styles */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    /* Light shadow */
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    /* Removes mobile tap rectangle */
    justify-content: center;
    /* Vertically center content */
}

/* Scroll Triggered State */
.step-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    /* Lifted shadow */
}

/* Hover for Desktop */
.step-card:hover {
    transform: translateY(-5px) scale(1.02);
    /* Slight lift */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}


.step-icon {
    width: 50px;
    /* Requested 50px */
    height: 50px;
    margin-bottom: 15px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    /* Icon pops up when card sinks */
}

.step-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    /* Requested 14px */
    margin-bottom: 12px;
    text-transform: uppercase;
    color: #083552;
    line-height: 1.3;
}

.step-desc {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 12px;
    /* Requested 12px */
    color: #555;
    line-height: 1.4;
}


/* Button */
.reserva-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    margin: 0 auto;
}

/* Bottom Curve */
.reserva-bottom-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.reserva-bottom-curve svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Lanchas Section */
.lanchas-section {
    background-color: #B3E2FA;
    /* Matches Reserva */
    position: relative;
    text-align: center;
    color: #095062;
    padding: 60px 0 120px 0;
    /* Added top padding (was 0) */
    overflow-x: hidden;
}

.lancha-card-details {
    padding: 25px 25px 40px 25px;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centers the containers (text block & button block) */
}

/* Text Container: Centered Block, Left Aligned Content */
.lancha-text-content {
    width: 100%;
    max-width: 85%;
    /* Restricts width to center the block visually */
    margin: 0 auto;
    /* Centers the block itself */
    text-align: left;
    /* Content aligns left */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Action Container: Full Width for Button */
.lancha-action {
    width: 100%;
    margin-top: 0;
    display: flex;
    justify-content: center;
}

/* Ensure button fills width */
.lancha-action .cta-button {
    width: 100%;
}

.lancha-name {
    font-family: var(--font-rubik);
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    /* Changed to Black */
    margin-bottom: 5px;
    margin-top: 0;
}

.lancha-duration {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.25rem;
    /* Increased to match info */
    color: #515151;
    /* Gray */
    margin-bottom: 15px;
    font-weight: 400;
}

/* Removed duplicate lancha-info block here */

.lancha-info strong {
    font-weight: 700;
}

.lancha-price-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    margin-top: 15px;
    margin-bottom: 25px;
    color: #095062;
}

.lancha-price-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #095062;
}

.lanchas-bottom-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 5;
}

.lanchas-bottom-curve svg path {
    fill: #ffffff;
}

/* --- New Refinements --- */

/* Lancha Info Refinements */
/* Lancha Info Refinements */
.lancha-info {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.25rem;
    /* Increased size to match duration */
    margin-bottom: 8px;
    color: #515151;
    /* Value/Description is Gray */
    font-weight: 400;
}

.lancha-info strong {
    font-weight: 700;
    color: #095062;
    /* Labels are Teal */
}

/* Specific override for Price */
.lancha-price-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.2rem;
    margin-top: 15px;
    margin-bottom: 25px;
    color: #095062;
    display: flex;
    justify-content: flex-start;
    /* Aligns left within the text-content block */
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    width: 100%;
}

/* Cleaned up via replace */

.lancha-price-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: #095062;
    /* Value is Teal */
    display: inline-block;
    margin-top: 0;
}

/* Button 3D & Wide - Refined for Roteiro context */
/* Button 3D & Wide - Refined for Roteiro context */
/* Styles handled by global .cta-button and .roteiro-btn definition above */

/* Carousel Dots */
.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #fff;
    transform: scale(1.2);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

/* Top Curve for Incluso (Wave) */
.incluso-top-curve {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    transform: translateY(-99%);
    /* Pull the wave UP into the previous section */
    z-index: 5;
    pointer-events: none;
}

.incluso-top-curve svg {
    display: block;
    width: 100%;
    height: auto;
}

.incluso-top-curve svg path {
    fill: #E8F6FA;

    /* Match section background */
}

/* Roteiro Norte - Dolphin Decor - Aligned with Title */

/* Decoration overrides removed to prevent conflicts */
.lanchas-section {
    background-color: #B3E2FA;
    /* Matches Reserva */
    position: relative;
    text-align: center;
    color: #095062;
    padding: 60px 0 77px 0;
    /* Updated padding */
    overflow-x: hidden;
}


/* Depoimentos Section */
.depoimentos-section {
    background-color: #B3E2FA;
    /* Light Blue Background */
    padding: 0;
    /* No top padding */
    padding-bottom: 70px;
    /* Updated padding */
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

/* Bottom Curve for Depoimentos (White Wave to next section) */
.depoimentos-bottom-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    transform: translateY(1px);
    z-index: 5;
}

.depoimentos-bottom-curve svg {
    display: block;
    width: 100%;
    height: auto;
}

.depoimentos-bottom-curve svg path {
    fill: #34799C;
    /* Matches NEXT section background */
}

/* 9. Incluso no Passeio (Mobile First Base Styles) */
/* Moved Mobile Logic to end of file with media query to allow reordering */

/* Depoimentos Container */
.depoimentos-container {
    max-width: 1000px;
    margin: -70px auto 40px auto;
    /* DRASTICALLY Pull UP into previous section space */
    padding: 0 20px;
    position: relative;
    z-index: 15;
    /* Ensure above decorations/bg */
}

/* Title Override for this section specifically */
.depoimentos-section .section-title {
    max-width: 350px;
    /* Increased to allow 2 lines instead of 3 */
    margin-left: auto;
    margin-right: auto;
    font-size: 28px;
    /* Mobile specific size as requested */
    line-height: 1.2;
    color: #083552;
    font-family: var(--font-rubik);
    font-weight: 700;
    margin-bottom: 25px;
}

@media (min-width: 768px) {
    .depoimentos-section .section-title {
        font-size: 2.5rem;
        max-width: 600px;
    }
}



.google-rating-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    /* REDUCED to bring closer to slider */
}

.google-logo-img {
    height: 55px;
}

/* Reviews Slider Wrapper - Full Bleed Breakout */
.reviews-slider-wrapper {
    position: relative;
    width: 100vw;
    /* Force full viewport width */
    margin-left: 50%;
    /* Center start */
    transform: translateX(-50%);
    /* Center adjustment */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Reviews Slider - Full Width with Asymmetric Padding for Arrow Clearance */
.reviews-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0;
    padding: 0 2% 0 15%;
    /* 15% left padding ensures arrow clears text completely */
    width: 100%;
    box-sizing: border-box;
    scrollbar-width: none;
    -ms-overflow-style: none;
    align-items: center;
    justify-content: flex-start;
}

.review-card-img {
    flex: 0 0 auto;
    width: 95%;
    /* Keeping 95% width */
    max-width: 100%;
    padding: 0 5px;
    box-sizing: border-box;
    box-shadow: none !important;
    scroll-snap-align: center;
    transition: transform 0.3s ease;
    object-fit: contain;
    background: transparent;
    border-radius: 12px;
}

/* Dots Pagination - Minimalist Small */
.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.review-dot {
    width: 6px;
    /* Reduced from 8px */
    height: 6px;
    border-radius: 50%;
    background-color: rgba(9, 80, 98, 0.2);
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.review-dot.active {
    background-color: #095062;
    transform: scale(1.1);
}


/* Nav Buttons adjustment - Glass & Lowered Further */
.review-nav-btn {
    position: absolute;
    top: 60%;
    /* Lowered further per request */
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.25);
    /* Glass transparency */
    backdrop-filter: blur(4px);
    /* Blur effect */
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    /* Subtle border */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 40;
    color: #083552;
    font-size: 22px;
    transition: background 0.3s, transform 0.2s;
}

.review-nav-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    /* More opaque on hover */
    transform: translateY(-50%) scale(1.05);
}

.review-prev {
    left: 10px;
    /* Minimal edge spacing */
}

.review-next {
    right: 10px;
}

@media (min-width: 768px) {

    /* Ensure full width on desktop too */
    .review-card-img {
        width: 100%;
        /* Full width on desktop */
        max-width: 800px;
        /* Cap at a reasonable larger size */
        margin: 0 auto;
        /* Center if capped */
    }

    .reviews-slider {
        padding: 0;
        justify-content: flex-start;
        /* Ensure scroll works */
    }

    .review-prev {
        left: 20px;
    }

    .review-next {
        right: 20px;
    }
}

/* Proximo Section (Board) */
.proximo-section {
    background-color: #34799C;
    position: relative;
    padding: 40px 20px 60px 20px;
    /* Reduced top padding from 80px to 40px */
    text-align: center;
    color: white;
}

.proximo-top-curve {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: translateY(-99%);
    /* Raised back up to reveal full wave */
    z-index: 1;
}

.proximo-top-curve svg {
    display: block;
    width: 100%;
    height: auto;
}

.proximo-top-curve svg path {
    fill: #34799C;
}

.proximo-title {
    font-family: var(--font-rubik);
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #FFFFFF;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

/* Depoimentos Container */
.depoimentos-container {
    max-width: 1200px;
    margin: 0 auto;
    /* Reset to normal margin to prevent clipping */
    width: 100%;
    position: relative;
    z-index: 2;
}

.proximo-img-container {
    max-width: 500px;
    margin: 0 auto 40px auto;
    position: relative;
    z-index: 2;
}

.proximo-board-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.proximo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #00B2E3;
    /* Bright Cyan/Blue */
    color: white;
    font-family: var(--font-rubik);
    font-weight: 700;
    font-size: 1rem;
    padding: 18px 30px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 178, 227, 0.4);
    transition: transform 0.2s, background-color 0.2s;
    gap: 10px;
    position: relative;
    z-index: 2;
    animation: pulse 2s infinite;
}

.proximo-btn:hover {
    background-color: #009AC4;
    transform: scale(1.05);
}

.proximo-btn svg {
    width: 18px;
    height: 18px;
}

/* FAQ Section */
.faq-section {
    background-color: #34799C;
    /* Seamless continuation */
    padding: 20px 20px 80px 20px;
    text-align: center;
    color: white;
}

.faq-title {
    font-family: var(--font-rubik);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 40px;
    color: white;
    text-transform: uppercase;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border-radius: 10px;
    overflow: hidden;
    text-align: left;
}

.faq-question {
    width: 100%;
    background-color: #00233A;
    /* Dark Blue */
    color: white;
    border: none;
    padding: 25px 25px 30px 25px;
    /* Added more bottom padding for "afastamento" */
    font-family: var(--font-rubik);
    font-weight: 600;
    /* Semi-bold as requested */
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s;
    text-align: left;
    gap: 15px;
    line-height: 1.4;
    /* Improved line spacing */
}

.faq-question:hover {
    background-color: #003050;
}

.faq-icon-img {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-icon-img {
    transform: rotate(180deg);
}

.faq-answer {
    background-color: #E0F5FF;
    /* Light Blue */
    color: #333;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease;
}

.faq-answer p {
    padding: 25px;
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    /* Slightly smaller reading text */
    line-height: 1.6;
}

/* Footer */
.main-footer {
    background-color: #00233A;
    /* Dark Blue */
    color: white;
    padding: 35px 0;
    /* Slightly more vertical padding for breathing room */
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    /* Regular */
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    /* Allow wrapping if needed, but intended for side-by-side */
    width: 100%;
    padding: 0 20px;
}

.footer-content>* {
    /* Removed generic 50% to apply specific widths below */
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

/* First child (Copyright) - 70% width */
.footer-content p {
    flex: 0 0 70%;
    width: 70%;
    justify-content: center;
    /* Centered in its block as requested */
    text-align: center;
    margin: 0;
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Second child (Social) - 30% width */
.footer-social {
    flex: 0 0 30%;
    width: 30%;
    justify-content: center;
    /* Centered in its block to create separation */
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.85rem;
    opacity: 0.9;
}

.footer-social svg {
    width: 20px;
    /* Smaller icon */
    height: 20px;
}

/* 9. Incluso no Passeio - MOBILE REORDERING LOGIC */
@media (max-width: 1023px) {
    .section-incluso-content {
        display: flex;
        flex-direction: column;
        padding: 0 20px;
    }

    /* Unwrap containers to allow children mixing */
    .incluso-left-col,
    .incluso-right-col {
        display: contents;
    }

    /* 1. Title */
    .incluso-left-col h2 {
        order: 1;
        font-size: 2rem;
        color: #083552;
        text-align: left;
        margin-bottom: 10px;
        width: 100%;
    }

    /* 2. Image (Moved UP) */
    .incluso-right-col img {
        order: 2;
        width: 100%;
        max-width: 350px;
        /* Small for Mobile */
        height: auto;
        margin: 10px 0 30px 0;
        /* Space around image */
        align-self: flex-start;
        /* Aligns left with text, or 'center' if preferred */
        display: block;
    }

    /* 3. List */
    .incluso-list {
        order: 3;
        width: 100%;
        margin-bottom: 20px;
    }

    /* 4. Button */
    .btn-agendar {
        order: 4;
        width: 100%;
        max-width: 320px;
        margin: 10px auto;
        display: flex;
        justify-content: center;
    }
}

/* ========================================= */
/* MOBILE TEXT STANDARDIZATION (User Request) */
/* ========================================= */
@media (max-width: 1023px) {

    .section-title,
    .about-us h2,
    .proximo-title,
    .faq-title,
    .lanchas-section .section-title,
    .reserva-section .section-title,
    .roteiros-section .section-title,
    .incluso-section .section-title,
    .incluso-left-col h2,
    .depoimentos-section .section-title {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }

    .roteiro-subtitle {
        font-size: 24px !important;
        line-height: 17px !important;
    }
}