/*=========================================
GLORIOSO SAILING TOUR
STYLE.CSS - PREMIUM
==========================================*/

/*==========================
RESET
==========================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(212, 160, 23, 0.16), transparent 24%),
        radial-gradient(circle at bottom right, rgba(232, 184, 75, 0.08), transparent 20%),
        linear-gradient(135deg, #2A4E7E 0%, #3C6EA8 100%);
    color: #f8f8f8;
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    color: inherit;
}

section {
    padding: 110px 0;
}

.container {
    width: min(92%, 1200px);
    margin: 0 auto;
}

:root {
    --azul: #2A4E7E;
    --azul2: #3C6EA8;
    --dourado: #D4A017;
    --dourado-claro: #E8B84B;
    --branco: #ffffff;
    --cinza: #D8D8D8;
    --sombra: 0 20px 50px rgba(0, 0, 0, 0.22);
    --sombra-suave: 0 12px 30px rgba(0, 0, 0, 0.16);
    --borda: 1px solid rgba(255,255,255,0.12);
    --borda-dourada: 1px solid rgba(212, 160, 23, 0.45);
    --borda-dourada-forte: 1px solid rgba(232, 184, 75, 0.6);
    --sombra-dourada: 0 0 0 1px rgba(212, 160, 23, 0.3), 0 10px 28px rgba(212, 160, 23, 0.08);
}

::selection {
    background: rgba(212, 160, 23, 0.35);
    color: var(--branco);
}

/*==========================
ANIMAÇÕES
==========================*/

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/*==========================
HEADER
==========================*/

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.35s ease;
    background: rgba(42, 78, 126, 0.18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

header.active {
    background: rgba(42, 78, 126, 0.96);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
}

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 0;
    margin-right: 12px;
    text-decoration: none;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.logo img {
    display: block;
    width: 150px;
    max-height: 54px;
    object-fit: contain;
    filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.2));
}

.logo-name {
    color: rgba(255,255,255,0.9);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--branco);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--dourado);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--dourado-claro);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--dourado), var(--dourado-claro));
    color: var(--azul);
    font-weight: 700;
    box-shadow: 0 14px 35px rgba(212, 160, 23, 0.28);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: translateX(-120%);
    transition: transform 0.6s ease;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 45px rgba(212, 160, 23, 0.35);
}

.btn-primary:hover::before {
    transform: translateX(120%);
}

/*==========================
LANGUAGE SWITCHER (PT / EN)
==========================*/

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 24px;
    padding: 0;
    border: none;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    background: transparent;
    opacity: 0.55;
    filter: grayscale(0.6);
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.lang-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lang-btn:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.lang-btn.active {
    opacity: 1;
    filter: grayscale(0);
    box-shadow: 0 0 0 2px rgba(232, 184, 75, 0.9), 0 4px 12px rgba(0, 0, 0, 0.25);
}

.menu-toggle {
    display: none;
    color: var(--branco);
    font-size: 28px;
    cursor: pointer;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(7, 20, 38, 0.62);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 1050;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 82%;
    max-width: 320px;
    height: 100%;
    background: rgba(42, 78, 126, 0.98);
    padding: 28px;
    transition: right 0.35s ease;
    z-index: 1100;
    box-shadow: -12px 0 35px rgba(0, 0, 0, 0.25);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu .close-btn {
    font-size: 28px;
    color: var(--branco);
    cursor: pointer;
    margin-bottom: 30px;
}

.mobile-menu nav ul {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.mobile-menu a {
    color: var(--branco);
    font-size: 17px;
}

/* Trava de scroll do body quando o menu mobile está aberto */
.no-scroll {
    overflow: hidden;
    height: 100%;
}

/*==========================
ACESSIBILIDADE / MOVIMENTO REDUZIDO
==========================*/

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/*==========================
HERO
==========================*/

.hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(90deg, rgba(42, 78, 126, 0.60), rgba(42, 78, 126, 0.15)),
        url('../planodefundo%20.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #2A4E7E;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(42, 78, 126, 0.45), rgba(42, 78, 126, 0.12)),
        radial-gradient(circle at top right, rgba(212, 160, 23, 0.12), transparent 35%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    padding: 120px 0 70px;
    max-width: 900px;
}

.hero-copy {
    width: 100%;
}

.hero-copy h5 {
    color: var(--dourado-claro);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 18px;
}

.hero-copy h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.2rem, 4.4vw, 4.2rem);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-copy h1 span {
    color: var(--dourado-claro);
}

.hero-copy p {
    max-width: 650px;
    font-size: 1.05rem;
    color: #dfe7ef;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.btn-outline {
    padding: 14px 30px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.35);
    color: var(--branco);
    background: rgba(255,255,255,0.06);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--branco);
    color: var(--azul);
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.highlight-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,0.08);
    border: var(--borda-dourada);
    box-shadow: var(--sombra-dourada);
    backdrop-filter: blur(10px);
}

.highlight-card i {
    font-size: 20px;
    color: var(--dourado-claro);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: var(--cinza);
    font-size: 0.95rem;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.12);
}

.hero-side {
    display: flex;
    justify-content: flex-end;
}

.hero-panel {
    width: 100%;
    max-width: 420px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.hero-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.14), transparent 60%);
    pointer-events: none;
}

.hero-panel-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--dourado-claro);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.hero-panel h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.hero-panel p {
    margin-bottom: 20px;
    color: #e7eef6;
}

.hero-panel-list {
    display: grid;
    gap: 10px;
    margin-bottom: 24px;
}

.hero-panel-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cinza);
}

.hero-panel-list i {
    color: var(--dourado-claro);
}

.hero-panel-btn {
    width: fit-content;
}

/*==========================
SEÇÕES GERAIS
==========================*/

.section-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 45px;
}

.section-title h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin-bottom: 10px;
}

.section-title::after {
    content: '';
    width: 90px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--dourado-claro), transparent);
    display: block;
    margin: 16px auto 0;
    border-radius: 999px;
}

.section-title p {
    color: var(--cinza);
}

.section-title span {
    color: var(--dourado-claro);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.8rem;
}

#sobre .section-title span {
    color: #D4A017;
    font-weight: 600;
}

.premium-card {
    background: rgba(255,255,255,0.06);
    border: var(--borda-dourada);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--sombra-dourada), var(--sombra);
    backdrop-filter: blur(12px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    inset: auto -20% -40% auto;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(232, 184, 75, 0.16), transparent 70%);
    pointer-events: none;
}

.premium-card:hover,
.testimonial-card:hover,
.faq-item:hover,
.gallery-item:hover,
.tour-card:hover,
.tour-feature:hover,
.commander-card:hover,
.swiper-slide:hover,
.contact-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 0 1px rgba(232, 184, 75, 0.75), 0 18px 45px rgba(212, 160, 23, 0.18);
    border-color: rgba(232, 184, 75, 0.75);
}

/* Card de contato: fundo bg-white/10, borda #D4A017/30, backdrop-blur-sm, rounded-2xl, p-8 */
.contact-card {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(212, 160, 23, 0.30);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 16px;
    padding: 2rem;
}

/* Botão "Fale no WhatsApp" (#25D366) */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    margin: 12px 0 8px;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    background-color: #25D366;
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-whatsapp i {
    color: #ffffff;
    font-size: 1.2rem;
}

.btn-whatsapp:hover {
    background-color: #1DAE54;
    transform: translateY(-3px);
    box-shadow: 0 12px 20px -3px rgba(0, 0, 0, 0.15), 0 6px 8px -4px rgba(0, 0, 0, 0.12);
}

/* Email clicável em #D4A017 */
.contact-email-line {
    margin-top: 12px;
}

/* Endereço com ícone de localização em dourado */
.contact-address-line {
    margin-top: 12px;
    color: var(--cinza);
    line-height: 1.6;
}

.contact-address-line i {
    color: var(--dourado-claro);
    margin-right: 8px;
}

.contact-email-link {
    color: #D4A017;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(212, 160, 23, 0.4);
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.contact-email-link:hover {
    color: #E8B84B;
}

.contact-link {
    color: var(--dourado-claro);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(212, 160, 23, 0.4);
    text-underline-offset: 3px;
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.contact-link:hover {
    color: var(--branco);
    text-decoration-color: rgba(232, 184, 75, 0.9);
}

/*==========================
ABOUT / FEATURES
==========================*/

.about-title-line {
    width: 60px;
    height: 2px;
    background: #D4A017;
    margin: 0 auto;
}

.about-card {
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.about-card:hover {
    border-color: #D4A017;
    box-shadow: 0 0 20px rgba(212, 160, 23, 0.3);
}

.about-grid,
.tour-grid,
.gallery-grid,
.testimonial-grid,
.faq-grid {
    display: grid;
    gap: 24px;
}

.about-grid {
    grid-template-columns: repeat(2, 1fr);
}

.premium-card h3 {
    margin-bottom: 10px;
    color: var(--branco);
}

.premium-card p {
    color: var(--cinza);
}

.feature-list {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--cinza);
    font-size: 0.95rem;
    line-height: 1.5;
}

.feature-list i {
    color: var(--dourado-claro);
    font-size: 0.95rem;
    margin-top: 4px;
    min-width: 18px;
    text-align: center;
}

/*==========================
TOURS
==========================*/

.tour-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.7fr);
    width: min(95%, 980px);
    margin: 0 auto 28px;
    background: #ffffff;
    border: var(--borda-dourada);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--sombra-dourada), 0 14px 36px rgba(0, 0, 0, 0.10);
}

.tour-feature-media {
    position: relative;
    min-height: 320px;
    background: #000;
    padding: 0;
    overflow: hidden;
}

.tour-feature-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(42,78,126,0.16), rgba(42,78,126,0.55));
    pointer-events: none;
}

.tour-feature-media video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

.tour-feature-panel {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
    color: var(--azul);
    border-left: 1px solid rgba(42, 78, 126, 0.08);
}

.tour-feature-panel h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--azul);
}

.tour-feature-panel p {
    color: #43556b;
    margin-bottom: 18px;
}

.tour-feature-panel .hero-panel-list {
    margin-bottom: 22px;
}

.tour-feature-panel .hero-panel-list li {
    color: #43556b;
}

.tour-price {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.18), rgba(232, 184, 75, 0.08));
    border: 1px solid rgba(212, 160, 23, 0.35);
    color: var(--dourado);
    font-weight: 700;
    font-size: 1.05rem;
    width: fit-content;
}

/* Bloco alternado (vídeo 3D) */

.tour-feature-alt {
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.4fr);
}

.tour-feature-alt .tour-feature-media {
    order: 2;
}

.tour-feature-alt .tour-feature-panel {
    border-left: 0;
    border-right: 1px solid rgba(42, 78, 126, 0.08);
}

.tour-feature-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: #ffffff;
    color: var(--azul);
}

.tour-feature-content::before {
    content: '';
    position: absolute;
    top: 24px;
    right: 24px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid rgba(212, 160, 23, 0.25);
    pointer-events: none;
}

.tour-feature-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--dourado-claro);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tour-feature-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--azul);
}

.tour-feature-content p {
    color: #43556b;
    margin-bottom: 24px;
    max-width: 480px;
}

.tour-feature-content .btn-primary {
    width: fit-content;
    box-shadow: 0 14px 35px rgba(212, 160, 23, 0.35);
}

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

.tour-card {
    background: #ffffff;
    color: var(--azul);
    border: var(--borda-dourada);
    box-shadow: var(--sombra-dourada), var(--sombra-suave);
}

.tour-card h3,
.tour-card p,
.tour-card .price {
    color: var(--azul);
}

.tour-card .price {
    display: inline-block;
    margin-top: 14px;
    color: var(--dourado);
    font-weight: 700;
}

/*==========================
GALLERY
==========================*/

.gallery-section {
    position: relative;
}

.mySwiper {
    padding: 12px 0 40px;
}

.swiper-slide {
    transition: transform 0.35s ease;
    border-radius: 24px;
    overflow: hidden;
    border: var(--borda-dourada);
    box-shadow: var(--sombra-dourada), var(--sombra);
}

.swiper-slide img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

.swiper-slide-active {
    transform: scale(1.04);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--dourado-claro);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.6rem;
}

.gallery-cta {
    text-align: center;
    margin-top: 10px;
}

.gallery-cta .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 1rem;
    min-width: 170px;
}

.social-icon-link {
    width: auto;
    height: auto;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 1rem;
    background: linear-gradient(135deg, var(--dourado), var(--dourado-claro));
    color: var(--azul);
    font-weight: 700;
    border: var(--borda-dourada-forte);
    box-shadow: 0 14px 35px rgba(212, 160, 23, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: translateX(-120%);
    transition: transform 0.6s ease;
}

.social-icon-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 45px rgba(232, 184, 75, 0.55);
    background: linear-gradient(135deg, var(--dourado-claro), var(--dourado));
    color: var(--azul);
}

.social-icon-link:hover::before {
    transform: translateX(120%);
}

.social-icon-link i {
    color: inherit;
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.gallery-item {
    border: var(--borda-dourada);
    box-shadow: var(--sombra-dourada);
}

.gallery-item.two {
    background-image: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(42,78,126,0.75)), url('https://images.unsplash.com/photo-1500375592092-40eb2168fd21?auto=format&fit=crop&w=900&q=80');
}

.gallery-item.three {
    background-image: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(42,78,126,0.75)), url('https://images.unsplash.com/photo-1516483638261-f4dbaf036963?auto=format&fit=crop&w=900&q=80');
}

/*==========================
COMMANDER SECTION
==========================*/

.commander-card {
    display: grid;
    grid-template-columns: 0.85fr 1.4fr 0.6fr;
    gap: 24px;
    align-items: center;
    background: rgba(255,255,255,0.08);
    border: var(--borda-dourada);
    border-radius: 28px;
    padding: 32px;
    box-shadow: var(--sombra-dourada), var(--sombra-suave);
    backdrop-filter: blur(12px);
}

.commander-image {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(212, 160, 23, 0.35);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    position: relative;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.18), rgba(255,255,255,0.04));
}

.commander-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(212, 160, 23, 0.08), rgba(42, 78, 126, 0.18));
    pointer-events: none;
}

.commander-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.commander-image:hover img {
    transform: scale(1.04);
}

.commander-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.7rem;
    margin-bottom: 14px;
    color: var(--dourado-claro);
}

.commander-content p {
    color: #e8eef6;
    margin-bottom: 12px;
}

.commander-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 180px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.22), rgba(232, 184, 75, 0.08));
    border: var(--borda-dourada-forte);
    box-shadow: var(--sombra-dourada);
    padding: 24px;
    text-align: center;
}

.commander-badge span {
    color: var(--cinza);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.commander-badge strong {
    color: var(--branco);
    font-size: 2rem;
    font-family: 'Cinzel', serif;
}

/*==========================
TESTIMONIALS
==========================*/

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

.testimonial-card {
    background: #ffffff;
    border: var(--borda-dourada);
    border-radius: 22px;
    padding: 26px;
    box-shadow: var(--sombra-dourada), 0 12px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    color: #43556b;
    margin-bottom: 16px;
}

.testimonial-card strong {
    color: var(--dourado);
}

/*==========================
FAQ
==========================*/

.faq-grid {
    grid-template-columns: 1fr;
}

.faq-item {
    background: rgba(255,255,255,0.05);
    border: var(--borda-dourada);
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow: var(--sombra-dourada);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--branco);
}

.faq-item p {
    margin-top: 12px;
    color: var(--cinza);
}

/*==========================
CONTACT / FOOTER
==========================*/

.contact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.18), rgba(255,255,255,0.05));
    border: var(--borda-dourada);
    box-shadow: var(--sombra-dourada), var(--sombra-suave);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.contact-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 0 1px rgba(232, 184, 75, 0.75), 0 18px 45px rgba(212, 160, 23, 0.18);
    border-color: rgba(232, 184, 75, 0.75);
}

.footer {
    padding: 44px 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    text-align: center;
    color: #b3bdca;
}

.footer-credit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.12);
    flex-wrap: wrap;
}

.footer-credit-text {
    font-size: 0.88rem;
    color: #b3bdca;
}

.footer-credit-logo {
    display: inline-flex;
    align-items: center;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-credit-logo:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.footer-credit-logo img {
    width: 130px;
    height: auto;
    display: block;
    color: var(--dourado-claro);
    filter: drop-shadow(0 4px 12px rgba(212, 160, 23, 0.25));
}

/*==========================
SCROLL DOWN
==========================*/

.scroll-down {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--branco);
    font-size: 22px;
    animation: bob 1.6s infinite;
}

@keyframes bob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/*==========================
AJUSTE MOBILE - IMG9 E IMG10 (enquadramento pelo topo)
Mantém o rosto visível mantendo a composição dos cards da galeria.
==========================*/
@media (max-width: 768px) {
    img[src*="img9.jpeg"],
    img[src*="img10.jpeg"] {
        object-fit: cover;
        object-position: center top;
    }
}
