/* ============================================
   JA Passeios Nauticos — Homepage Styles
   ============================================ */

/* --------------------------------------------
   HERO SECTION
   -------------------------------------------- */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 96px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, #071827 0%, #163B5C 55%, #256A8E 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 24, 39, 0.88) 0%, rgba(7, 24, 39, 0.64) 44%, rgba(7, 24, 39, 0.22) 100%),
        linear-gradient(180deg, rgba(7, 24, 39, 0.2), rgba(7, 24, 39, 0.44));
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: calc(88vh - 96px);
    padding: 2rem 1rem;
}

.hero-content {
    max-width: 720px;
    color: var(--white);
    text-align: left;
}

.hero-content h1 {
    color: var(--white);
    font-size: 2.7rem;
    margin-bottom: 1rem;
    line-height: 1.05;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.12rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-kicker {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.hero-kicker span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0.35rem 0.75rem;
    border-radius: 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-proof {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    max-width: 720px;
    margin-top: 2rem;
}

.hero-proof div {
    padding: 1rem 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
}

.hero-proof strong,
.hero-proof span {
    display: block;
}

.hero-proof strong {
    color: var(--white);
    font-family: var(--font);
    font-size: 0.98rem;
    font-weight: 800;
}

.hero-proof span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.82rem;
    margin-top: 0.1rem;
}

/* --------------------------------------------
   TRUST STRIP
   -------------------------------------------- */
.trust-strip {
    padding: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.trust-strip-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.trust-strip-grid div {
    padding: 1.4rem 0;
    border-bottom: 1px solid var(--border);
}

.trust-strip-grid div:last-child {
    border-bottom: none;
}

.trust-strip-grid span,
.featured-cta-panel span,
.conversion-panel-inner > span {
    display: block;
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.trust-strip-grid strong {
    display: block;
    color: var(--primary-dark);
    font-size: 0.98rem;
    margin-bottom: 0.2rem;
}

.trust-strip-grid p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .hero {
        min-height: 88vh;
    }

    .hero-content-wrapper {
        min-height: calc(88vh - 96px);
    }

    .hero-content h1 {
        font-size: 4rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-proof {
        grid-template-columns: repeat(3, 1fr);
    }

    .trust-strip-grid {
        grid-template-columns: repeat(4, 1fr);
        border-left: 1px solid var(--border);
    }

    .trust-strip-grid div {
        padding: 1.45rem 1.25rem;
        border-right: 1px solid var(--border);
        border-bottom: none;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 5.2rem;
    }

    .hero-content p {
        font-size: 1.3rem;
    }
}


/* --------------------------------------------
   EXPERIENCE SECTION
   -------------------------------------------- */
.experience-section {
    padding: 5rem 0;
    background: var(--white);
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.experience-image {
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    aspect-ratio: 4 / 3;
}

.experience-image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: 0;
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
}

.experience-visual-card {
    max-width: 310px;
    padding: 1rem;
    border-radius: 0;
    background: var(--white);
    box-shadow: 0 16px 40px rgba(16, 24, 32, 0.14);
}

.experience-visual-card span,
.experience-visual-card strong {
    display: block;
}

.experience-visual-card span {
    color: var(--accent);
    font-weight: 800;
    font-size: 0.82rem;
    text-transform: uppercase;
}

.experience-visual-card strong {
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-top: 0.25rem;
}

.experience-subtitle {
    display: block;
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.experience-content h2 {
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.experience-checklist {
    list-style: none;
    margin-bottom: 2rem;
}

.experience-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.5;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: linear-gradient(135deg, var(--success), #22C55E);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
}

.check-icon svg {
    width: 14px;
    height: 14px;
}

@media (max-width: 768px) {
    .experience-content .btn-accent {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .experience-section {
        padding: 4rem 0;
    }

    .experience-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}


/* --------------------------------------------
   FEATURED SECTION
   -------------------------------------------- */
.featured-section {
    padding: 3rem 0;
    background: var(--surface);
}

.featured-section .section-header {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.featured-cta-panel {
    display: grid;
    gap: 1.25rem;
    align-items: center;
    margin-top: 2rem;
    padding: 1.4rem;
    background: var(--white);
    border: 1px solid var(--border);
}

.featured-cta-panel h3 {
    font-size: 1.35rem;
    margin: 0;
}

@media (min-width: 768px) {
    .featured-cta-panel {
        grid-template-columns: 1fr auto;
        padding: 1.65rem 1.75rem;
    }
}

.card-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: linear-gradient(135deg, var(--primary-light), var(--ocean));
}

@media (min-width: 768px) {
    .featured-section {
        padding: 4rem 0;
    }
}


/* --------------------------------------------
   HOW IT WORKS SECTION
   -------------------------------------------- */
.how-it-works {
    padding: 3rem 0;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

/* Subtle water wave pattern overlay */
.how-it-works::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='rgba(255,255,255,0.03)' d='M0,192L48,186.7C96,181,192,171,288,181.3C384,192,480,224,576,213.3C672,203,768,149,864,128C960,107,1056,117,1152,138.7C1248,160,1344,192,1392,208L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: bottom;
    opacity: 0.5;
    pointer-events: none;
}

.how-it-works .section-header h2 {
    color: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.step {
    text-align: center;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.04);
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--dark);
}

.step-icon svg {
    stroke: var(--dark);
}

.step-number {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.step h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .how-it-works {
        padding: 5rem 0;
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}


/* --------------------------------------------
   REVIEWS SECTION
   -------------------------------------------- */
.reviews-section {
    padding: 3rem 0;
    background-color: var(--white);
}

/* --------------------------------------------
   CONVERSION PANEL
   -------------------------------------------- */
.conversion-panel {
    padding: 4.5rem 0;
    background: var(--white);
}

.conversion-panel-inner {
    max-width: 860px;
    padding: 2rem;
    border: 1px solid rgba(184, 138, 42, 0.32);
    background: #FFFDF8;
}

.conversion-panel-inner h2 {
    max-width: 640px;
    margin-bottom: 0.75rem;
}

.conversion-panel-inner p {
    max-width: 620px;
}

.conversion-panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .conversion-panel-inner {
        padding: 2.4rem 2.75rem;
    }
}

.reviews-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.25rem;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar for cleaner look */
.reviews-scroll::-webkit-scrollbar {
    height: 6px;
}

.reviews-scroll::-webkit-scrollbar-thumb {
    background: var(--gray-light);
    border-radius: 3px;
}

.review-card {
    min-width: 300px;
    max-width: 360px;
    flex-shrink: 0;
    scroll-snap-align: start;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid rgba(219, 234, 254, 0.9);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (max-width: 767px) {
    .hero {
        min-height: 92svh;
        padding-top: 5.75rem;
        align-items: flex-end;
    }

    .hero-bg {
        background-position: center top;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(7, 24, 39, 0.22) 0%, rgba(7, 24, 39, 0.72) 42%, rgba(7, 24, 39, 0.94) 100%);
    }

    .hero-content-wrapper {
        min-height: auto;
        padding: 3rem 1rem 2rem;
        align-items: flex-end;
    }

    .hero-content {
        text-align: left;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2.25rem;
        line-height: 1.04;
        margin-bottom: 0.85rem;
    }

    .hero-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.65rem;
        justify-content: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-kicker {
        justify-content: flex-start;
        gap: 0.4rem;
        margin-bottom: 0.85rem;
    }

    .hero-kicker span {
        min-height: 28px;
        padding: 0.28rem 0.55rem;
        font-size: 0.68rem;
        letter-spacing: 0.06em;
    }

    .hero-proof {
        margin-top: 1.25rem;
        gap: 0.35rem;
    }

    .hero-proof div {
        padding: 0.75rem 0;
    }

    .trust-strip-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
    }

    .trust-strip-grid div {
        padding: 1rem 0.75rem;
        border-right: 1px solid var(--border);
    }

    .trust-strip-grid div:nth-child(even) {
        border-right: none;
    }

    .trust-strip-grid div:nth-last-child(-n + 2) {
        border-bottom: none;
    }

    .trust-strip-grid strong {
        font-size: 0.92rem;
    }

    .trust-strip-grid p {
        font-size: 0.8rem;
    }

    .experience-section,
    .featured-section,
    .how-it-works,
    .reviews-section,
    .faq-section {
        padding: 2.75rem 0;
    }

    .experience-grid {
        gap: 1.5rem;
    }

    .experience-content h2,
    .conversion-panel-inner h2 {
        font-size: 1.8rem;
    }

    .experience-checklist li {
        font-size: 0.95rem;
    }

    .featured-cta-panel,
    .conversion-panel-inner {
        padding: 1.25rem;
        border-radius: 8px;
    }

    .featured-cta-panel .btn,
    .conversion-panel-actions .btn {
        width: 100%;
    }

    .conversion-panel {
        padding: 3rem 0;
    }
}

.review-card .stars {
    margin-bottom: 0.25rem;
}

.review-name {
    font-size: 1rem;
    color: var(--dark);
}

.review-comment {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 0;
}

.review-date {
    color: var(--gray);
    font-size: 0.8rem;
    margin-top: auto;
}

@media (min-width: 768px) {
    .reviews-section {
        padding: 4rem 0;
    }
}


/* --------------------------------------------
   FAQ SECTION
   -------------------------------------------- */
.faq-section {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .faq-section {
        padding: 4rem 0;
    }
}

.faq-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.faq-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.18s ease, color 0.18s ease, padding 0.18s ease;
}

.faq-tab:hover {
    background: var(--primary);
    color: #fff;
}

.faq-tab.is-active {
    background: var(--primary);
    color: #fff;
    padding-right: 0.6rem;
}

.faq-tab-clear {
    display: none;
    position: relative;
    width: 1.05rem;
    height: 1.05rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    font-size: 0;
    color: transparent;
    transition: background-color 0.18s ease;
}

.faq-tab.is-active .faq-tab-clear {
    display: inline-block;
}

.faq-tab.is-active:hover .faq-tab-clear {
    background: rgba(255, 255, 255, 0.4);
}

.faq-tab-clear::before,
.faq-tab-clear::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.55rem;
    height: 1.5px;
    background: #fff;
    border-radius: 1px;
}

.faq-tab-clear::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.faq-tab-clear::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.faq-show-more {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    width: max-content;
    margin: 1.5rem auto 0;
    padding: 0.4rem 0.25rem;
    background: transparent;
    border: 0;
    color: var(--text-muted, #6b7280);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 0.01em;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: transparent;
    transition: color 0.18s ease, text-decoration-color 0.18s ease;
}

.faq-show-more:hover {
    color: var(--primary);
    text-decoration-color: currentColor;
}

.faq-show-more::after {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    border-right: 1.75px solid currentColor;
    border-bottom: 1.75px solid currentColor;
    transform: rotate(45deg) translate(-2px, -2px);
    transition: transform 0.22s ease;
}

.faq-show-more.is-expanded::after {
    transform: rotate(-135deg) translate(-2px, -2px);
}

.faq-show-more.is-hidden {
    display: none;
}

.faq-show-more-count {
    opacity: 0.7;
    font-weight: 400;
}

.accordion-item.is-hidden {
    display: none;
}
