/* =========================================
   VARIÁVEIS DE CORES & TIPOGRAFIA
========================================= */
:root {
    /* Paleta Premium */
    --c-moss-green: #4A5D23;
    --c-dark-green: #1B2411;
    --c-sand: #E3DAC9;
    --c-beige: #F5F5DC;
    --c-matte-black: #1A1A1A;
    --c-soft-white: #FAFAFA;
    --c-orange: #D9663A; /* Laranja queimado para CTAs */
    --c-orange-hover: #BF5730;
    
    /* Tipografia */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Outros */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-light: 0 5px 15px rgba(0,0,0,0.05);
    --shadow-strong: 0 15px 35px rgba(0,0,0,0.15);
}

/* =========================================
   RESET & CONFIGURAÇÕES GERAIS
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--c-matte-black);
    background-color: var(--c-soft-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    color: var(--c-dark-green);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   UTILITIES
========================================= */
.section {
    padding: 6rem 10%;
}

.bg-light {
    background-color: var(--c-beige);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title p {
    color: #555;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* =========================================
   BOTÕES
========================================= */
.btn-primary {
    background-color: var(--c-orange);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--c-orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(217, 102, 58, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--c-soft-white);
    border: 2px solid var(--c-soft-white);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    display: inline-block;
}

.btn-outline:hover {
    background-color: var(--c-matte-black);
    color: #fff;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background-color: #1EBE55;
    transform: translateY(-3px);
}

.btn-text {
    color: var(--c-orange);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-text:hover {
    color: var(--c-dark-green);
    gap: 0.8rem; /* Efeito de seta deslizando */
}

/* =========================================
   NAVBAR
========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 10%;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled,
.navbar.solid,
.navbar.menu-open {
    background: rgba(26, 26, 26, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 1rem 10%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--c-soft-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-mark {
    display: inline-block;
    flex: 0 0 auto;
    height: 32px;
    object-fit: contain;
    width: 32px;
}

.nav-links {
    display: flex;
    gap: 1.55rem;
}

.nav-links a {
    color: var(--c-soft-white);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--c-orange);
}

.mobile-nav-action {
    display: none;
}

.nav-actions {
    align-items: center;
    display: flex;
    gap: 0.8rem;
}

.nav-actions .btn-outline {
    padding: 0.7rem 1.15rem;
}

.navbar.scrolled .btn-outline {
    border-color: var(--c-soft-white);
    color: var(--c-soft-white);
}

.navbar.scrolled .btn-outline:hover {
    background: var(--c-soft-white);
    color: var(--c-matte-black);
}

.hamburger {
    display: none;
    color: var(--c-soft-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
    height: 100vh;
    background: url('../img/hero.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(27,36,17,0.7), rgba(26,26,26,0.5));
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--c-soft-white);
    max-width: 800px;
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    color: var(--c-soft-white);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* =========================================
   EXPEDIÇÕES (CARDS)
========================================= */
.card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.card-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    z-index: 2;
    text-transform: uppercase;
}

.diff-easy { background-color: #2E401A; }
.diff-medium { background-color: #D9663A; }
.diff-hard { background-color: #1A1A1A; }

.card-content {
    padding: 1.5rem;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 1rem;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.card-content p:not(.location) {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

.location {
    font-size: 0.9rem;
    color: var(--c-moss-green);
    margin-bottom: 1.5rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--c-dark-green);
}

.text-link {
    align-items: center;
    color: var(--c-orange);
    display: inline-flex;
    font-family: var(--font-heading);
    font-weight: 800;
    gap: 0.5rem;
    margin-top: 0.4rem;
}

.text-link:hover {
    gap: 0.75rem;
}

/* =========================================
   CALENDÁRIO
========================================= */
/* =========================================
   PRODUTOS
========================================= */
.products-showcase {
    background:
        linear-gradient(180deg, rgba(245,245,220,0.92), rgba(250,250,250,1)),
        var(--c-beige);
}

.product-showcase-list {
    display: grid;
    gap: 2.2rem;
}

.product-feature {
    background: #fff;
    border: 1px solid rgba(27,36,17,0.08);
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    min-height: 360px;
    overflow: hidden;
}

.product-feature.is-reversed {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.product-feature.is-reversed .product-feature-image {
    order: 2;
}

.product-feature-image {
    overflow: hidden;
}

.product-feature-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    width: 100%;
}

.product-feature:hover .product-feature-image img {
    transform: scale(1.05);
}

.product-feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding: clamp(1.6rem, 4vw, 3rem);
}

.product-feature-content > span {
    color: var(--c-orange);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-feature-content h3 {
    font-size: clamp(1.8rem, 3vw, 2.9rem);
    line-height: 1.08;
}

.product-feature-content p:not(.location) {
    color: #555;
    max-width: 62ch;
}

.product-facts {
    border-top: 1px solid #eee;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.2rem;
    padding-top: 1.2rem;
}

.product-facts strong {
    background: var(--c-beige);
    border-radius: 999px;
    color: var(--c-dark-green);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    padding: 0.55rem 0.9rem;
}

.product-hero {
    align-items: center;
    background-position: center;
    background-size: cover;
    color: #fff;
    display: flex;
    min-height: 72vh;
    padding: 9rem 10% 5rem;
    position: relative;
}

.product-hero-content {
    max-width: 820px;
    position: relative;
    z-index: 2;
}

.product-hero-content > span {
    color: var(--c-orange);
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.product-hero-content h1 {
    color: #fff;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 1.03;
    margin-bottom: 1.2rem;
}

.product-hero-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 760px;
}

.product-detail {
    align-items: start;
    display: grid;
    gap: 3rem;
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
}

.product-detail-aside {
    background: #fff;
    border: 1px solid rgba(27,36,17,0.12);
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    display: grid;
    gap: 1rem;
    padding: 1.5rem;
    position: sticky;
    top: 110px;
}

.product-detail-aside div {
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.product-detail-aside div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.product-detail-aside span {
    color: #777;
    display: block;
    font-size: 0.82rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.product-detail-aside strong {
    color: var(--c-dark-green);
    font-family: var(--font-heading);
    line-height: 1.35;
}

.product-detail-body {
    display: grid;
    gap: 2rem;
}

.product-detail-section,
.product-detail-cta {
    background: #fff;
    border: 1px solid rgba(27,36,17,0.08);
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    padding: clamp(1.5rem, 3vw, 2.5rem);
}

.product-detail-section h2,
.product-detail-cta h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 1rem;
}

.product-detail-text {
    display: grid;
    gap: 0.9rem;
}

.product-detail-text p,
.product-detail-cta p {
    color: #444;
    line-height: 1.85;
}

.product-detail-list {
    display: grid;
    gap: 0.75rem;
}

.product-detail-list li {
    color: #444;
    line-height: 1.65;
    padding-left: 1.25rem;
    position: relative;
}

.product-detail-list li::before {
    background: var(--c-orange);
    border-radius: 50%;
    content: "";
    height: 7px;
    left: 0;
    position: absolute;
    top: 0.7rem;
    width: 7px;
}

.product-detail-cta {
    background: var(--c-dark-green);
}

.product-detail-cta h2,
.product-detail-cta p {
    color: #fff;
}

.product-detail-cta .btn-primary {
    margin-top: 1rem;
}

.calendar-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--c-dark-green);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--c-dark-green);
    color: #fff;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.timeline-item:hover {
    transform: translateX(10px);
    border-left: 5px solid var(--c-orange);
}

.timeline-item.is-hidden {
    display: none;
}

.timeline-date {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--c-orange);
    width: 100px;
    text-align: center;
    line-height: 1.1;
}

.timeline-content {
    flex-grow: 1;
    padding: 0 1.5rem;
    border-left: 1px solid #eee;
}

.timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.timeline-content p {
    font-size: 0.9rem;
    color: #666;
}

.timeline-action .btn-outline {
    color: var(--c-dark-green);
    border-color: var(--c-dark-green);
}

.timeline-action .btn-outline:hover {
    background: var(--c-dark-green);
    color: #fff;
}

.empty-state {
    background: rgba(255,255,255,0.75);
    border: 1px dashed rgba(27,36,17,0.25);
    border-radius: 8px;
    color: #666;
    padding: 1.5rem;
    text-align: center;
}

/* =========================================
   SOBRE
========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #444;
    font-size: 1.1rem;
}

.about-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.feature i {
    color: var(--c-orange);
    font-size: 1.5rem;
}

.about-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-strong);
}

/* =========================================
   EQUIPE
========================================= */
.grid-team {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.team-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
}

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--c-beige);
}

.team-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.team-card .role {
    display: block;
    font-size: 0.85rem;
    color: var(--c-orange);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* =========================================
   GALERIA MASONRY
========================================= */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: dense;
    grid-auto-rows: 230px;
    gap: 1rem;
}

.masonry-item {
    overflow: hidden;
    border-radius: 8px;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.masonry-item:hover img {
    transform: scale(1.05);
}

/* Fazer algumas imagens ocuparem mais espaço (Efeito Masonry básico no grid) */
.masonry-item:nth-child(1) {
    grid-row: span 2;
}

.masonry-item:nth-child(4n) {
    grid-column: span 2;
}

.masonry-item:nth-child(7n) {
    grid-row: span 2;
}

/* =========================================
   BLOG
========================================= */
.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.blog-card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--c-orange);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.blog-content h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.blog-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
}

/* =========================================
   PAINEL ADMINISTRATIVO
========================================= */
.admin-panel {
    background: var(--c-dark-green);
    color: var(--c-soft-white);
}

.admin-shell {
    max-width: 1180px;
    margin: 0 auto;
}

.admin-header,
.admin-workspace,
.admin-list-heading,
.admin-form-heading,
.admin-item,
.admin-item-actions,
.admin-tabs {
    display: flex;
    align-items: center;
}

.admin-header {
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.admin-header h2,
.admin-form h3,
.admin-list h3 {
    color: #fff;
}

.admin-header p {
    color: rgba(250,250,250,0.72);
    max-width: 620px;
}

.eyebrow {
    color: var(--c-orange);
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.admin-reset {
    border-color: rgba(250,250,250,0.55);
    color: #fff;
    white-space: nowrap;
}

.admin-tabs {
    border-bottom: 1px solid rgba(255,255,255,0.16);
    gap: 0.6rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    padding-bottom: 0.7rem;
}

.admin-tab {
    background: rgba(255,255,255,0.08);
    border: 1px solid transparent;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 0.7rem 1rem;
    white-space: nowrap;
}

.admin-tab.active,
.admin-tab:hover {
    background: var(--c-orange);
}

.admin-workspace {
    align-items: flex-start;
    gap: 2rem;
}

.admin-form,
.admin-list {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 8px;
    padding: 1.5rem;
}

.admin-form {
    flex: 0 0 420px;
}

.admin-list {
    flex: 1;
}

.admin-form-heading,
.admin-list-heading {
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.admin-list-heading span,
.field-help {
    color: rgba(250,250,250,0.65);
    font-size: 0.85rem;
}

.admin-form label {
    color: rgba(250,250,250,0.86);
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
    background: rgba(255,255,255,0.95);
    border: 1px solid transparent;
    border-radius: 6px;
    color: var(--c-matte-black);
    display: block;
    font-family: var(--font-body);
    margin-top: 0.35rem;
    padding: 0.75rem;
    width: 100%;
}

.admin-form textarea {
    resize: vertical;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
    border-color: var(--c-orange);
    outline: 3px solid rgba(217,102,58,0.25);
}

.image-upload {
    background: transparent !important;
    border: 1px dashed rgba(255,255,255,0.25) !important;
    color: #fff !important;
}

.admin-item {
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    gap: 1rem;
    margin-bottom: 0.8rem;
    padding: 0.9rem;
}

.admin-item img {
    border-radius: 6px;
    height: 64px;
    object-fit: cover;
    width: 76px;
}

.admin-item h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.admin-item p {
    color: rgba(250,250,250,0.68);
    font-size: 0.88rem;
}

.admin-item > div:nth-child(2) {
    flex: 1;
}

.admin-item-actions {
    gap: 0.4rem;
}

.icon-button {
    align-items: center;
    background: rgba(255,255,255,0.12);
    border: 0;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    height: 40px;
    justify-content: center;
    width: 40px;
}

.icon-button:hover {
    background: var(--c-orange);
}

.icon-button.danger:hover {
    background: #A83232;
}

/* =========================================
   MODAL DE ARTIGO
========================================= */
body.modal-open {
    overflow: hidden;
}

.article-modal {
    display: none;
    inset: 0;
    position: fixed;
    z-index: 2000;
}

.article-modal.active {
    display: block;
}

.article-modal-backdrop {
    background: rgba(0,0,0,0.72);
    inset: 0;
    position: absolute;
}

.article-modal-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow-strong);
    left: 50%;
    max-height: calc(100vh - 3rem);
    max-width: 820px;
    overflow-y: auto;
    padding: 0 0 2rem;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(92vw, 820px);
}

.article-modal-content > img {
    height: 320px;
    object-fit: cover;
    width: 100%;
}

.article-modal-content .blog-category,
.article-modal-content h2,
.article-date,
.article-body {
    margin-left: 2rem;
    margin-right: 2rem;
}

.article-modal-content .blog-category {
    margin-top: 2rem;
}

.article-modal-content h2 {
    font-size: 2rem;
    margin-bottom: 0.7rem;
}

.article-date {
    color: #777;
    margin-bottom: 1.5rem;
}

.article-body p {
    color: #444;
    margin-bottom: 1rem;
}

.modal-close {
    align-items: center;
    background: rgba(26,26,26,0.84);
    border: 0;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    height: 42px;
    justify-content: center;
    position: absolute;
    right: 1rem;
    top: 1rem;
    width: 42px;
    z-index: 1;
}

.modal-close:hover {
    background: var(--c-orange);
}

/* =========================================
   CTA FINAL
========================================= */
.cta-final {
    position: relative;
    padding: 8rem 10%;
    text-align: center;
    background: url('../img/cta-cerrado.png') center/cover fixed;
    color: #fff;
}

.cta-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(26,26,26,0.48), rgba(26,26,26,0.72));
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* =========================================
   FOOTER
========================================= */
.footer {
    background: var(--c-matte-black);
    color: var(--c-soft-white);
    padding: 5rem 10% 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    align-items: center;
    color: #fff;
    display: flex;
    font-size: 1.5rem;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #aaa;
    margin-bottom: 1.5rem;
}

.footer-brand-logo {
    display: block;
    height: auto;
    margin-bottom: 1.4rem;
    max-width: 170px;
    width: 42%;
}

.social-links a {
    color: #fff;
    font-size: 1.2rem;
    margin-right: 1rem;
    background: rgba(255,255,255,0.1);
    width: 40px; height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-links a:hover {
    background: var(--c-orange);
}

.footer-links h4, .footer-contact h4 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul a {
    color: #aaa;
}

.footer-links ul a:hover {
    color: var(--c-orange);
    padding-left: 5px;
}

.footer-contact p {
    color: #aaa;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--c-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    color: #aaa;
    font-size: 0.9rem;
}

.legal-links a {
    margin-left: 1rem;
    color: #aaa;
}

.legal-links a:hover {
    color: #fff;
}

/* Botão Flutuante */
.legal-page {
    background: var(--c-soft-white);
    min-height: 100vh;
    padding: 8rem 10% 4rem;
}

.legal-shell {
    background: #fff;
    border: 1px solid #E7E0D2;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    margin: 0 auto;
    max-width: 920px;
    padding: 2.5rem;
}

.legal-eyebrow {
    color: var(--c-orange);
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
}

.legal-shell h1 {
    font-size: 2.8rem;
    margin: 0.4rem 0 0.5rem;
}

.legal-updated {
    color: #666;
    margin-bottom: 2rem;
}

.legal-content {
    display: grid;
    gap: 1.3rem;
}

.legal-content h2 {
    font-size: 1.35rem;
}

.legal-content p {
    color: #444;
}

.legal-content a {
    color: var(--c-orange);
    font-weight: 700;
}

.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-strong);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.float-whatsapp:hover {
    transform: scale(1.1);
}

/* =========================================
   ANIMAÇÕES (REVEAL)
========================================= */
.reveal-fade {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.reveal-fade.active {
    opacity: 1;
}

.reveal-slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal-slide-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-slide-up.delay-100 {
    transition-delay: 0.1s;
}

.reveal-slide-up.delay-200 {
    transition-delay: 0.2s;
}

/* =========================================
   RESPONSIVIDADE (MOBILE FIRST PENSADO PARA DEKSTOP, ADAPTANDO AQUI)
========================================= */
@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-content h1 { font-size: 3.5rem; }
    .masonry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .masonry-item:nth-child(4n) {
        grid-column: span 1;
    }

    .admin-workspace { flex-direction: column; }
    .admin-form,
    .admin-list { width: 100%; flex-basis: auto; }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1.1rem 5%;
    }

    .navbar.scrolled,
    .navbar.solid,
    .navbar.menu-open {
        padding: 1rem 5%;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .hamburger {
        display: block;
        position: relative;
        z-index: 2;
    }

    .logo {
        font-size: 1.35rem;
        position: relative;
        z-index: 2;
    }
    
    .hero-content h1 { font-size: 2.8rem; }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .masonry-grid {
        grid-auto-rows: 220px;
        grid-template-columns: 1fr;
    }

    .masonry-item:nth-child(1),
    .masonry-item:nth-child(7n) {
        grid-row: span 1;
    }

    .product-feature,
    .product-feature.is-reversed {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .product-feature.is-reversed .product-feature-image {
        order: 0;
    }

    .product-feature-image {
        height: 230px;
    }

    .product-detail {
        grid-template-columns: 1fr;
    }

    .product-detail-aside {
        position: static;
    }

    .product-hero {
        min-height: 70vh;
        padding: 8rem 5% 4rem;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        justify-content: center;
        width: 100%;
    }
    
    .timeline-item { flex-direction: column; text-align: center; }
    .timeline-content { border-left: none; padding: 1rem 0; }
    .timeline-date { width: auto; margin-bottom: 0.5rem; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 1rem; }
    
    .section { padding: 4rem 5%; }

    .admin-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-form,
    .admin-list {
        padding: 1rem;
    }

    .admin-item {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-item-actions {
        width: 100%;
    }

    .article-modal-content > img {
        height: 220px;
    }

    .article-modal-content .blog-category,
    .article-modal-content h2,
    .article-date,
    .article-body {
        margin-left: 1.2rem;
        margin-right: 1.2rem;
    }

    .article-modal-content h2 {
        font-size: 1.55rem;
    }
}

/* Menu Mobile Ativo */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--c-matte-black);
    box-shadow: 0 18px 30px rgba(0,0,0,0.22);
    gap: 0;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    padding: 1.2rem 1.25rem 1.6rem;
    text-align: center;
}

.nav-links.active a {
    display: block;
    padding: 0.9rem 1rem;
}

.nav-links.active .mobile-nav-action {
    display: block;
}

.nav-links.active .mobile-nav-action .btn-outline {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0.5rem auto 0;
    max-width: 280px;
    padding: 0.95rem 1rem;
    text-transform: none;
    width: 100%;
}

.article-page {
    background: var(--c-soft-white);
    min-height: 100vh;
    padding-top: 0;
}

.article-hero {
    align-items: center;
    background-position: center;
    background-size: cover;
    display: flex;
    min-height: 48vh;
    overflow: hidden;
    padding: 5rem 10%;
    position: relative;
}

.article-hero .hero-overlay {
    pointer-events: none;
}

.article-hero-content {
    color: #fff;
    max-width: 850px;
    position: relative;
    z-index: 1;
}

.article-hero-content h1 {
    color: #fff;
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    margin: 0.5rem 0 1rem;
}

.article-back-link {
    margin-top: 1.5rem;
}

.article-reading {
    margin: 0 auto;
    max-width: 880px;
    padding-top: 4rem;
}

.article-reading p {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 1.35rem;
}

.article-footer {
    padding-top: 2rem;
}

.customer-auth-page {
    align-items: center;
    background:
        linear-gradient(rgba(27, 36, 17, 0.72), rgba(27, 36, 17, 0.72)),
        url('../img/hero.png') center/cover;
    display: flex;
    min-height: 100vh;
    padding: 2rem;
}

.customer-auth-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow-strong);
    margin: 0 auto;
    max-width: 520px;
    padding: 2rem;
    width: 100%;
}

.auth-logo {
    align-items: center;
    color: var(--c-dark-green);
    display: inline-flex;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.auth-logo .brand-mark {
    border-radius: 50%;
    height: 38px;
    width: 38px;
}

.customer-auth-card h1,
.account-heading h1 {
    font-size: 2.2rem;
    margin-bottom: 0.6rem;
}

.customer-auth-card p,
.account-heading p,
.account-next p {
    color: #555;
}

.customer-auth-card form,
.account-card form {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.customer-auth-card label,
.account-card label {
    color: var(--c-dark-green);
    font-weight: 700;
}

.customer-auth-card input,
.account-card input,
.account-card select,
.account-card textarea {
    border: 1px solid #DED8C8;
    border-radius: 6px;
    display: block;
    font: inherit;
    margin-top: 0.35rem;
    padding: 0.85rem;
    width: 100%;
}

.account-card textarea {
    min-height: 120px;
    resize: vertical;
}

.customer-auth-card input:disabled,
.account-card input:disabled {
    background: #F0EDE4;
    color: #666;
}

.auth-switch {
    margin-top: 1.4rem;
    text-align: center;
}

.auth-switch a {
    color: var(--c-orange);
    font-weight: 800;
}

.form-alert {
    border-radius: 8px;
    margin-top: 1rem;
    padding: 0.9rem 1rem;
}

.form-alert.error {
    background: #FBEAEA;
    color: #8C1F1F;
}

.form-alert.success {
    background: #E8F4E8;
    color: #235C2B;
}

.customer-account-page {
    background: var(--c-soft-white);
    min-height: 100vh;
    padding: 8rem 10% 4rem;
}

.reservation-page {
    background: var(--c-soft-white);
    min-height: 100vh;
    padding: 8rem 10% 4rem;
}

.customer-account-shell {
    margin: 0 auto;
    max-width: 1120px;
}

.reservation-shell {
    margin: 0 auto;
    max-width: 1120px;
}

.account-profile-hero {
    align-items: center;
    background: #fff;
    border: 1px solid #E7E0D2;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    padding: 1.4rem;
}

.profile-avatar {
    align-items: center;
    background: var(--c-dark-green);
    border-radius: 50%;
    color: #fff;
    display: flex;
    flex: 0 0 92px;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    height: 92px;
    justify-content: center;
    overflow: hidden;
    width: 92px;
}

.profile-avatar img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.account-profile-hero span {
    color: var(--c-orange);
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
}

.account-grid {
    align-items: start;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
}

.account-card {
    background: #fff;
    border: 1px solid #E7E0D2;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    padding: 1.5rem;
}

.account-card h2 {
    margin-bottom: 0.8rem;
}

.account-next .btn-text {
    margin-top: 1rem;
}

.account-side-stack {
    display: grid;
    gap: 1.5rem;
}

.account-card small {
    color: #666;
    display: block;
    font-size: 0.84rem;
    margin-top: 0.35rem;
}

.reservation-success {
    max-width: 760px;
}

.reservation-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.4rem;
}

.reservation-pill {
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.7rem;
    text-transform: uppercase;
}

.reservation-new {
    background: var(--c-orange);
}

.reservation-contacted {
    background: var(--c-moss-green);
}

.reservation-confirmed {
    background: #237A3B;
}

.reservation-cancelled {
    background: #8C1F1F;
}

.payment-pending {
    background: var(--c-moss-green);
}

.payment-paid {
    background: #237A3B;
}

.payment-failed,
.payment-cancelled {
    background: #8C1F1F;
}

.reservation-mini-list {
    display: grid;
    gap: 0.9rem;
    margin: 1rem 0;
}

.reservation-mini-list article {
    border-bottom: 1px solid #E7E0D2;
    padding-bottom: 0.9rem;
}

.reservation-mini-list article:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.reservation-mini-list h3 {
    font-size: 1rem;
}

.reservation-mini-list p {
    color: #555;
}

.expedition-page {
    background: var(--c-soft-white);
    min-height: 100vh;
    padding-top: 0;
}

.expedition-hero {
    align-items: center;
    background-position: center;
    background-size: cover;
    display: flex;
    min-height: 68vh;
    overflow: hidden;
    padding: 6rem 10%;
    position: relative;
}

.expedition-hero .hero-overlay {
    pointer-events: none;
}

.expedition-hero-content {
    color: #fff;
    max-width: 860px;
    position: relative;
    z-index: 1;
}

.expedition-hero-content h1 {
    color: #fff;
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    margin: 0.6rem 0 1.2rem;
}

.expedition-hero-content p {
    font-size: 1.15rem;
    max-width: 720px;
}

.status-pill {
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 800;
    margin-left: 0.6rem;
    padding: 0.55rem 0.9rem;
    text-transform: uppercase;
}

.status-open {
    background: var(--c-orange);
}

.status-sold-out,
.status-finished,
.status-cancelled {
    background: var(--c-matte-black);
}

.status-draft {
    background: #777;
}

.expedition-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.expedition-detail {
    align-items: start;
    display: grid;
    gap: 3rem;
    grid-template-columns: minmax(260px, 340px) 1fr;
}

.expedition-summary {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    display: grid;
    gap: 1rem;
    padding: 1.5rem;
    position: sticky;
    top: 110px;
}

.expedition-summary div {
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.expedition-summary div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.expedition-summary span {
    color: #666;
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.expedition-summary strong {
    color: var(--c-dark-green);
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.expedition-body {
    max-width: 880px;
}

.expedition-body h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.expedition-body > p,
.expedition-long-text p {
    color: #444;
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
}

.expedition-info-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 2rem 0;
}

.expedition-info-grid section {
    background: var(--c-beige);
    border-radius: 8px;
    padding: 1.5rem;
}

.expedition-info-grid h3 {
    margin-bottom: 0.6rem;
}

.expedition-info-grid p {
    color: #555;
    margin-bottom: 0.8rem;
}

.expedition-info-grid p:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .expedition-detail {
        grid-template-columns: 1fr;
    }

    .expedition-summary {
        position: static;
    }

    .expedition-info-grid {
        grid-template-columns: 1fr;
    }

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

    .account-profile-hero {
        align-items: flex-start;
        flex-direction: column;
    }
}
