:root {
    --primary-cyan: #00AEEF;
    --top-bar-bg: #2ba6cb;
    --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;
}

.top-bar {
    background-color: #4EBEDB;
    background: linear-gradient(90deg, #4EBEDB 0%, #026B87 100%);
    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;
}

.badge-container {
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
    pointer-events: none;
}

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

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

.hero-section {
    position: relative;
    width: 100%;
    height: 640px;
    background-image: url('assets/images/hero-bg.webp');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.main-header,
.hero-content,
.bottom-elements,
.bottom-curve {
    position: relative;
    z-index: 2;
}

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

.logo {
    height: 55px;
    object-fit: contain;
    position: relative;
    z-index: 102;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1000;
    position: relative;
    padding: 5px;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    transition: transform 0.1s ease;
}

.menu-toggle:active {
    transform: scale(0.9);
}

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

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, #2fa3c9 0%, #00233A 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
    clip-path: circle(0% at 90% 5%);
    transition: clip-path 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu::before,
.mobile-menu::after {
    display: none;
}

.mobile-menu.active {
    clip-path: circle(150% at 90% 5%);
}

.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;
    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;
    text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    margin-top: -70px;
    position: relative;
    z-index: 2;
}

.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: 15px;
    letter-spacing: normal;
    white-space: nowrap;
}

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

.hero-content .subtitle {
    display: block;
    color: white !important;
    font-family: var(--font-rubik);
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 20px;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.8);
    opacity: 0.95;
}

@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: 14px 28px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0, 169, 212, 0.4);
    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);
}

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

@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);
    }
}

.badge-container {
    position: absolute;
    top: -85px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
    pointer-events: none;
}

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

.about-us {
    background-color: #E8F6FA;
    padding: 60px 25px 80px 25px;
    text-align: center;
    position: relative;
    color: #112d4e;
    margin-top: -2px;
    z-index: 20;
}

.top-curve {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(-99%);
    line-height: 0;
    z-index: 25;
    pointer-events: none;
}

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

.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;
    color: #083552;
}

.about-us h3 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.4;
    color: #083552;
    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;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.about-us strong {
    font-weight: 700;
    color: #083552;
}

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

.dolphin-decor {
    width: 250px;
    top: 60%;
    left: auto;
    right: 180px;
    opacity: 1;
    display: block;
    z-index: 20;
    transform: scaleX(1);
}

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

.roteiros-section {
    background-color: #D2F0FF;
    position: relative;
    text-align: center;
    color: #083552;
    padding: 40px 0 120px 0;
    overflow-x: hidden;
}

.incluso-section {
    background-color: #E8F6FA;
    padding: 50px 0 120px 0;
    margin-top: -10px;
    position: relative;
    text-align: center;
    color: #083552;
}

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

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

.ice-decor {
    top: 250px;
    right: -40px;
    width: 220px;
    z-index: 1;
    transform: rotate(10deg);
}

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

.section-title {
    font-family: var(--font-rubik);
    font-weight: 700;
    font-size: 32px;
    color: #083552;
    margin-bottom: 40px;
    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;
}

.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 {
    position: relative;
    width: 100%;
    height: 261px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

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

.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;
    border-radius: 20px 20px 0 0;
}

.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-border {
    display: none;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: #333;
    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 {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    z-index: 25;
    display: block;
    background: transparent;
    border: none;
}

.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;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.beaches-list li {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #333;
    line-height: 1.4;
}

.roteiro-btn {
    align-self: center;
    width: 100%;
    max-width: 100%;
    margin-top: 10px;
    justify-content: center;
}

.bg-decor {
    position: absolute;
    z-index: 1;
    opacity: 1;
    transition: transform 0.1s linear;
    filter: saturate(1.2);
}

.turtle-decor {
    top: -20px;
    right: -40px;
    width: 160px;
    opacity: 1;
    transform: rotate(15deg);
}

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

.dolphin-decor {
    top: 850px;
    left: -50px;
    width: 180px;
    opacity: 1;
    transform: rotate(5deg);
    z-index: 1;
}

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

.dolphin-decor {
    width: 250px;
    top: 41%;
    left: -24%;
    right: auto;
    opacity: 1;
    display: block !important;
    z-index: 10;
    transform: scaleX(-1);
}

.jellyfish-decor {
    width: 160px;
    top: 59%;
    right: -11%;
    opacity: 1;
    z-index: 10;
    animation-delay: 1.5s;
}

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

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

.incluso-section {
    background-color: #E8F6FA;
    padding: 50px 0 120px 0;
    margin-top: -10px;
    position: relative;
    text-align: center;
    color: #083552;
}

.incluso-section .section-title {
    font-weight: 600;
}

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

@media (max-width:1023px) {

    .incluso-left,
    .incluso-right {
        display: contents;
    }

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

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

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

    .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;
    max-width: 100vw;
}

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

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

.incluso-list li {
    font-family: 'DM Sans', sans-serif;
    font-size: 19px;
    font-weight: 400;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #083552;
}

.ice-decor {
    top: 18%;
    z-index: 5;
}

.charcoal-decor {
    right: -32px;
    z-index: 5;
    transform: rotate(0deg);
}

.dolphin-decor {
    width: 250px;
    width: 250px;
    top: 43%;
    left: -24%;
    right: auto;
    opacity: 1;
    display: block !important;
    z-index: 10;
    transform: scaleX(-1);
}

.jellyfish-decor {
    width: 160px;
    top: 59%;
    right: -11%;
    opacity: 1;
    z-index: 10;
    animation-delay: 1.5s;
}

.faq-question {
    width: 100%;
    background-color: #125678 !important;
    color: white;
    border: none;
    padding: 25px 25px 30px 25px;
    font-family: var(--font-rubik);
    font-weight: 600;
    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;
}

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

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

.faq-question {
    width: 100%;
    background-color: #125678;
    color: white;
    border: none;
    padding: 25px 25px 30px 25px;
    font-family: var(--font-rubik);
    font-weight: 600;
    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;
}

.reserva-section {
    background-color: #B3E2FA;
    padding: 60px 0 40px 0;
    margin-top: -5px;
    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;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto 50px auto;
    padding: 0 20px;
}

@media (max-width:600px) {
    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.step-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    justify-content: center;
}

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

.step-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-icon {
    width: 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);
}

.step-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 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;
    color: #555;
    line-height: 1.4;
}

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

.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 {
    background-color: #B3E2FA;
    position: relative;
    text-align: center;
    color: #095062;
    padding: 60px 0 120px 0;
    overflow-x: hidden;
}

.lancha-card-details {
    padding: 30px 25px 60px 25px;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lancha-text-content {
    width: 100%;
    max-width: 85%;
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    /* STRICT UNIFORM GAP FOR EVERYTHING */
    flex: 1;
    min-height: 250px;
    /* Ensure space for centering distribution */
}

/* Center the Details Group Vertically */
.lancha-details-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* Gap between items inside the group */
    width: 100%;
    margin-top: auto;
    margin-bottom: auto;
}

.lancha-action {
    width: 100%;
    margin-top: 40px;
    /* Spacer before button */
    display: flex;
    justify-content: center;
}

/* Mobile Adjustments for Card Height */
@media (max-width: 768px) {
    .lancha-card-details {
        padding-bottom: 30px;
        /* Reduced from 60px */
    }

    .lancha-action {
        margin-top: 20px;
        /* Reduced from 40px */
    }

    .lancha-text-content {
        min-height: auto;
        /* Let content dictate on mobile */
    }
}

.lancha-action .cta-button {
    width: 100%;
}

.lancha-name {
    font-family: var(--font-rubik);
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    margin: 0 !important;
    /* Reset margin */
}

.lancha-duration {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.25rem;
    color: #515151;
    font-weight: 400;
    margin: 0 !important;
    /* Reset margin */
}

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

/* Reset individual margins in favor of Gap */
.lancha-info {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 0;
    /* Handled by gap */
    color: #515151;
    font-weight: 400;
}

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

.lancha-price-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.2rem;
    margin: 0 !important;
    /* Reset margin */
    color: #095062;
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    width: 100%;
}

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

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

.incluso-top-curve {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    transform: translateY(-99%);
    z-index: 5;
    pointer-events: none;
}

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

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

.lanchas-section {
    background-color: #B3E2FA;
    position: relative;
    text-align: center;
    color: #095062;
    padding: 60px 0 77px 0;
    overflow-x: hidden;
}

.depoimentos-section {
    background-color: #B3E2FA;
    padding: 0;
    padding-bottom: 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

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

.depoimentos-container {
    max-width: 1000px;
    margin: -70px auto 40px auto;
    padding: 0 20px;
    position: relative;
    z-index: 15;
}

.depoimentos-section .section-title {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
    font-size: 28px;
    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;
}

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

.reviews-slider-wrapper {
    position: relative;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.reviews-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0;
    /* Remove gap to ensure distinct swipe */
    padding: 0;
    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 100%;
    /* Force 100% width on mobile */
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    padding: 0 40px;
    /* Add padding to prevent content from touching edges/arrows */
    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;
}

.review-card-img:last-child {
    margin-right: 0;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.review-dot {
    width: 6px;
    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);
}

.review-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    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: 20px;
    transition: background 0.3s, transform 0.2s;
}

.review-nav-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-50%) scale(1.05);
}

.review-prev {
    left: 10px;
    /* Kept at edges */
}

.review-next {
    right: 10px;
    /* Kept at edges */
}

@media (min-width:768px) {
    .review-card-img {
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
        padding: 0 10px;
    }

    .reviews-slider {
        padding: 0;
        justify-content: flex-start;
    }

    .review-prev {
        left: 20px;
    }

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

.proximo-section {
    background-color: #34799C;
    position: relative;
    padding: 40px 20px 60px 20px;
    text-align: center;
    color: white;
}

.proximo-top-curve {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: translateY(-99%);
    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 {
    max-width: 1200px;
    margin: 0 auto;
    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;
    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 {
    background-color: #34799C;
    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;
    color: white;
    border: none;
    padding: 25px 25px 30px 25px;
    font-family: var(--font-rubik);
    font-weight: 600;
    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;
}

.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;
    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;
    line-height: 1.6;
}

.main-footer {
    background-color: #00233A;
    color: white;
    padding: 35px 0;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 20px;
}

.footer-content>* {
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.footer-content p {
    flex: 0 0 70%;
    width: 70%;
    justify-content: center;
    text-align: center;
    margin: 0;
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.9;
}

.footer-social {
    flex: 0 0 30%;
    width: 30%;
    justify-content: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.85rem;
    opacity: 0.9;
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

@media (max-width:1023px) {
    .section-incluso-content {
        display: flex;
        flex-direction: column;
        padding: 0 20px;
    }

    .incluso-left-col,
    .incluso-right-col {
        display: contents;
    }

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

    .incluso-right-col img {
        order: 2;
        width: 100%;
        max-width: 350px;
        height: auto;
        margin: 10px 0 30px 0;
        align-self: flex-start;
        display: block;
    }

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

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

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

@media (max-width:1024px) {
    .pc-only {
        display: none !important;
    }

    .desktop-logos,
    .logo-turismo,
    .logo-costtur-gray {
        display: none !important;
    }
}

/* Escuna Pricing Styles - Added for visual hierarchy and bold values */
.lancha-pricing-block {
    display: contents;
    /* Let parent gap control spacing */
}

.lancha-pricing-block .lancha-info {
    display: flex;
    align-items: baseline;
    margin-bottom: 0;
    gap: 4px;
    /* Tighter horizontal gap to look natural */
    flex-wrap: wrap;
    /* Allow wrapping on small screens */
}

/* Force bold and specific size/color for the values */
.price-value {
    font-weight: 800 !important;
    color: #095062 !important;
    font-size: 1.6rem !important;
}

.price-value.small {
    font-size: 1.4rem !important;
}

/* Fix Mobile Line Break on Escuna Ages */
@media (max-width: 768px) {
    .lancha-pricing-block .lancha-info {
        font-size: 1.1rem;
        /* Slightly smaller base font */
    }

    .lancha-pricing-block .lancha-info span:not(.price-value) {
        font-size: 0.9rem;
        /* Smaller text for age notes */
    }

    .lancha-pricing-block .price-value.small {
        font-size: 1.25rem !important;
    }
}