/**
 * Vale dos Sertões - Main Design System
 */

/* ── Page Loader ─────────────────────────────────────────────── */
#vs-page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
#vs-page-loader.vs-loader--visible {
    opacity: 1;
    visibility: visible;
}
#vs-page-loader.vs-loader--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Barra de progresso no topo */
.vs-loader-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(90deg, #ECA235, #BA5E0F);
    border-radius: 0 4px 4px 0;
    animation: vs-progress 1.8s ease-in-out forwards;
}
@keyframes vs-progress {
    0%   { width: 0%; opacity: 1; }
    70%  { width: 85%; opacity: 1; }
    95%  { width: 95%; opacity: 1; }
    100% { width: 100%; opacity: 0; }
}

/* Logo central */
.vs-loader-inner {
    position: relative;
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: vs-pulse-scale 1.4s ease-in-out infinite;
}
@keyframes vs-pulse-scale {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.08); }
}
.vs-loader-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

/* Anel duplo girando */
.vs-loader-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #ECA235;
    border-right-color: #ECA235;
    animation: vs-spin 1s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.vs-loader-ring::after {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-bottom-color: #BA5E0F;
    border-left-color: #BA5E0F;
    animation: vs-spin-reverse 0.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes vs-spin {
    to { transform: rotate(360deg); }
}
@keyframes vs-spin-reverse {
    to { transform: rotate(-360deg); }
}

/* Dots pulsantes */
.vs-loader-dots {
    display: flex;
    gap: 8px;
}
.vs-loader-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ECA235;
    animation: vs-dot-bounce 1.2s ease-in-out infinite;
}
.vs-loader-dots span:nth-child(2) { animation-delay: 0.2s; background: #BA5E0F; }
.vs-loader-dots span:nth-child(3) { animation-delay: 0.4s; background: #446031; }
@keyframes vs-dot-bounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40%            { transform: scale(1.2); opacity: 1; }
}

.vs-loader-text {
    font-family: var(--ff-ui, 'Inter', sans-serif);
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    margin: 0;
    letter-spacing: 0.05em;
    animation: vs-text-fade 1.6s ease-in-out infinite;
}
@keyframes vs-text-fade {
    0%, 100% { opacity: 0.5; }
    50%       { opacity: 1; }
}

/* Fade-out do conteúdo ao navegar */
body.vs-navigating #primary,
body.vs-navigating .site-header,
body.vs-navigating .site-footer {
    opacity: 0;
    transition: opacity 0.2s ease;
}
/* ────────────────────────────────────────────────────────────── */

:root {
    /* Brand Colors */
    --clr-amber: #ECA235;
    --clr-brown: #BA5E0F;
    --clr-sand: #E8C6A9;
    --clr-green: #446031;
    --clr-offwhite: #ffffff;
    --clr-dark: #0C111D;
    --clr-white: #FFFFFF;

    /* Semantic — Brand */
    --clr-primary: var(--clr-amber);
    --clr-secondary: var(--clr-brown);

    /* Semantic — Textos */
    --clr-text: #0C111D;
    --clr-text-body: #344054;
    --clr-text-muted: #667085;
    --clr-text-light: #344054;

    /* Semantic — Fundos */
    --clr-bg: #ffffff;
    --clr-bg-alt: #f9f5f1;
    --clr-bg-card: #ffffff;

    /* Semantic — Bordas */
    --clr-border: var(--clr-border);
    --clr-border-light: var(--clr-border-light);

    /* Fonts */
    --ff-display: 'Paprika', sans-serif;
    --ff-body: 'Inter', sans-serif;
    --ff-ui: 'Inter', sans-serif;
    --ff-accent: 'Inter', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;

    /* Transitions */
    --tr-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--ff-body);
    font-size: 18px;
    line-height: 1.4;
    color: var(--clr-text);
    background-color: var(--clr-bg);
    overflow-x: hidden;
}

p, span, li, a, label, input, textarea, select, td, th, small, figcaption {
    line-height: 1.4;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--ff-display);
    line-height: 1.2;
    margin-top: 0;
    color: var(--clr-secondary);
}

/* Card titles use Inter */
.tour-card h3,
.attraction-card h3,
.tour-title,
.city-card-content h3,
.news-title,
.hotel-card h3,
.restaurant-card h3,
.provider-card h3,
.experience-card h3,
.feedback-item h3,
.pillar-text h3,
.vs-ep-title,
.card-hotel h3,
.card-restaurant h3,
.card-provider h3,
.card-post h3 {
    font-family: var(--ff-ui);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--tr-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1216px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: var(--ff-ui);
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.05em;
    cursor: pointer;
    border: none;
    transition: var(--tr-smooth);
}

.btn-primary {
    background-color: var(--clr-secondary);
    color: var(--clr-white);
}

.btn-primary:hover {
    background-color: var(--clr-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 129, 26, 0.2);
}

.btn-outline {
    border: 2px solid var(--clr-primary);
    background-color: var(--clr-primary);
    color: var(--clr-white);
}

.btn-outline:hover {
    background-color: transparent;
    color: var(--clr-primary);
}

/* Sections */
.section {
    padding: var(--space-lg) 0;
}

@media (max-width: 768px) {
    .section {
        padding: var(--space-md) 0;
    }
}

/* Experience Grid */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.experience-card {
    background-color: var(--clr-white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(61, 32, 16, 0.05);
    transition: var(--tr-smooth);
}

.experience-card:hover {
    transform: translateY(-10px);
    border-color: var(--clr-primary);
}

.exp-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.experience-card h3 {
    font-family: var(--ff-ui);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--clr-secondary);
}

.exp-count {
    font-family: var(--ff-accent);
    color: var(--clr-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
}

/* What-to-do section title */
.what-to-do .section-title {
    color: #0C111D;
}

/* Section Divider */
.vs-section-divider {
    width: 100%;
    max-width: 1216px;
    height: 1px;
    background: #00000010;
    margin: 0 auto;
}

/* Tabs System */
.tabs-container {
    margin-top: 2rem;
}

.tabs-header {
    display: flex;
    justify-content: flex-start;
    gap: 0;
    margin-bottom: 3rem;
    border-bottom: 1px solid #00000010;
}

.tab-btn {
    background: none;
    border: none;
    padding: 0.75rem 1.5rem;
    font-family: var(--ff-ui);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
    color: var(--clr-text-muted);
    position: relative;
    transition: var(--tr-smooth);
}

.tab-btn:hover {
    color: #0C111D;
}

.tab-btn.active {
    color: var(--clr-primary);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--clr-primary);
}

/* Provider Tab Panels */
.provider-tab-panel { display: none; }
.provider-tab-panel.active { display: block; }

/* Tour Cards */
.tour-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.tour-card {
    background: #FFF;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #EAECF0;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05);
    transition: var(--tr-smooth);
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.tour-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-card-image img {
    transform: scale(1.1);
}

.tour-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #ba5e0f;
    color: var(--clr-white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-family: var(--ff-ui);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.tour-card-content {
    padding: 1rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tour-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
    font-family: var(--ff-ui);
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    gap: 0.5rem;
}

.tour-city,
.tour-duration {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.tour-title {
    font-family: var(--ff-ui);
    font-size: 16px;
    font-weight: 600;
    color: #0C111D;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.tour-title a {
    color: #0C111D;
}

.tour-title a:hover {
    color: var(--clr-primary);
}

.tour-card-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    border-top: 1px solid var(--clr-border);
    padding-top: 1rem;
    margin-top: 1rem;
}

.tour-card-footer .btn {
    width: auto;
    white-space: nowrap;
    font-size: 0.85rem;
    padding: 0.55rem 1rem;
}

.tour-price {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.price-label {
    font-family: var(--ff-ui);
    font-size: 0.65rem;
    font-weight: 500;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-value {
    font-family: var(--ff-ui);
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-primary);
}

@media (max-width: 1024px) {
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tour-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }

    .tour-grid {
        grid-template-columns: 1fr;
    }
}


/* Home Page Styles */

/* Hero Section */
.home-hero {
    position: relative;
    padding-top: 220px;
    padding-bottom: 180px;
    display: flex;
    align-items: center;
    background-color: var(--clr-dark);
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('http://valedossertoes.local/wp-content/uploads/2026/03/Whisk_c21734356bb693d808e4d379615e5d86dr.jpeg');
    background-size: cover;
    background-position: center bottom;
    color: var(--clr-white);
    text-align: left;
}

.home-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    pointer-events: none;
}

.home-hero-wave svg {
    display: block;
    width: 100%;
    height: 70px;
}

.hero-content {
    max-width: 800px;
}

.hero-tagline {
    font-family: var(--ff-ui);
    text-transform: uppercase;
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--clr-white);
    display: block;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 4.5rem);
    color: var(--clr-white);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.hero-description {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Welcome Section */
.welcome-section {
    background: #fff;
    padding-top: 120px;
    padding-bottom: 120px;
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.welcome-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
}

.welcome-left .section-title {
    margin-bottom: 42px;
}

.welcome-title {
    line-height: 1.15;
    color: #0C111D;
    
}

.welcome-title-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.welcome-inline-img {
    width: 83px;
    height: 55px;
    border-radius: 0;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.welcome-pillars {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pillar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pillar-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.pillar-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--clr-primary);
}

.pillar-text {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.pillar-text h3 {
    margin: 0;
    font-family: var(--ff-ui);
    font-size: 1rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    color: var(--clr-dark);
}

.pillar-text h3::after {
    content: ' •';
    font-weight: 400;
    margin-left: 0.3rem;
    color: var(--clr-dark);
}

.pillar-text p {
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.7;
    color: var(--clr-dark);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #0C111D;
}

.welcome-content {
    font-size: 16px;
}

.welcome-content p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--clr-dark);
    opacity: 0.85;
    margin-bottom: 1rem;
}

.welcome-content p:last-child {
    margin-bottom: 0;
}

.editorial-text {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--clr-secondary);
}

@media (max-width: 1024px) {
    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .welcome-left .section-title {
        margin-bottom: 0;
    }
}

/* Viva a Experiência Section */
.viva-section {
    padding: 16px;
    background: #fff;
}

.viva-inner {
    position: relative;
    background-color: var(--clr-secondary);
    border-radius: 24px;
    padding: 8rem 2rem 7rem;
    overflow: hidden;
}

.viva-container {
    max-width: 1216px;
    margin: 0 auto;
}

.viva-title {
    font-family: var(--ff-display);
    font-size: 3rem;
    color: #fff;
    line-height: 1.2;
    margin: 0;
    position: relative;
    display: inline-block;
    padding-bottom: 0.8rem;
}

.viva-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 6px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='6' viewBox='0 0 120 6'%3E%3Cpath d='M0 3 Q15 0 30 3 Q45 6 60 3 Q75 0 90 3 Q105 6 120 3' stroke='%23E8A04A' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: auto 100%;
}

.viva-title--center {
    display: block;
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 0;
}

.viva-title--center::after {
    display: none !important;
}

/* Video grid */
.viva-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.viva-video-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.viva-video-hidden {
    display: none;
}

/* Thumbnail com play */
.viva-video-thumb {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
    aspect-ratio: 16 / 9;
}

.viva-video-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s, opacity 0.3s;
}

.viva-video-thumb:hover img {
    transform: scale(1.04);
    opacity: 0.85;
}

.viva-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.viva-play-btn svg {
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
    transition: transform 0.2s;
}

.viva-video-thumb:hover .viva-play-btn svg {
    transform: scale(1.12);
}

.viva-video-title {
    color: rgba(255,255,255,0.9);
    font-size: 0.875rem;
    font-family: var(--ff-ui);
    line-height: 1.4;
    margin: 0;
}

/* Ver mais / menos */
.viva-ver-mais-wrap {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

/* Lightbox */
.viva-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.viva-lightbox[hidden] {
    display: none;
}

.viva-lightbox__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
    cursor: pointer;
}

.viva-lightbox__box {
    position: relative;
    width: 100%;
    max-width: 900px;
    z-index: 1;
}

.viva-lightbox__close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.viva-lightbox__close:hover { opacity: 1; }

.viva-lightbox__title {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-family: var(--ff-ui);
    margin: 0 0 0.75rem;
}

.viva-lightbox__embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.viva-lightbox__embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.btn-viva {
    display: inline-block;
    background-color: var(--clr-secondary);
    color: var(--clr-white);
    padding: 0.85rem 2rem;
    border-radius: 50px;
    border: none;
    font-family: var(--ff-ui);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-viva:hover {
    background-color: var(--clr-primary);
    color: var(--clr-white);
}

#viva-ver-menos {
    display: none;
}

@media (max-width: 1024px) {
    .viva-inner { padding: 6rem 1.5rem 5rem; }
    .viva-video-grid { grid-template-columns: repeat(2, 1fr); }
    .viva-title { font-size: 2.5rem; }
}

@media (max-width: 640px) {
    .viva-section { padding: 8px; }
    .viva-inner { padding: 4rem 1rem 3.5rem; }
    .viva-title { font-size: 2rem; }
    .viva-video-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}


/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--tr-smooth);
    padding: 1.5rem 0;
}

.site-header.scrolled {
    background-color: #ffffff;
    padding: 0.8rem 0;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.site-header.scrolled .nav-menu li a {
    color: #0C111D;
}

.site-header.scrolled .nav-menu li a:hover {
    color: var(--clr-primary);
    background: rgba(0,0,0,0.04);
}

.site-header.scrolled .btn-header {
    color: #0C111D;
    border: 1px solid #00000010;
    background: transparent;
    backdrop-filter: none;
}

.site-header.scrolled .btn-header:hover {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: #fff;
}

.site-header.scrolled .hamburger-bar {
    background: #0C111D;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-title {
    font-family: var(--ff-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--clr-primary);
}

/* Nav Menu */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    font-family: var(--ff-ui);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: none;
    color: var(--clr-white);
    letter-spacing: 0;
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    transition: var(--tr-smooth);
    white-space: nowrap;
}

.nav-menu li a:hover {
    color: var(--clr-primary);
    background: rgba(255,255,255,0.08);
}

/* Nav Dropdown */
.nav-has-dropdown {
    position: relative;
}

.nav-has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
    list-style: none;
    margin: 0;
    padding: 0.5rem 0 0.5rem;
    padding-top: 1rem;
    min-width: 160px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 200;
}

.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-dropdown li a {
    display: block;
    color: var(--clr-dark) !important;
    padding: 0.6rem 1.2rem;
    font-size: 0.88rem;
    font-weight: 500;
    background: none;
    border-radius: 0;
    white-space: nowrap;
}

.nav-dropdown li a:hover {
    background: rgba(0, 0, 0, 0.04);
    color: var(--clr-primary) !important;
}

/* Header Linktree icon */
.header-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-linktree {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0.85;
    transition: opacity 0.2s;
    text-decoration: none;
    flex-shrink: 0;
}

.header-linktree:hover { opacity: 1; }

.site-header.scrolled .header-linktree { color: #0C111D; }

/* Header CTA Button */
.btn-header {
    display: inline-block;
    font-family: var(--ff-ui);
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, border-color 0.2s;
    backdrop-filter: blur(4px);
}

.btn-header:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.9);
    color: #fff;
}

.site-header.scrolled .btn-header {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

/* Hamburger Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

.hamburger-bar {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--clr-white);
    border-radius: 2px;
    transition: var(--tr-smooth);
}

.menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
@media (max-width: 1024px) {
    .menu-toggle {
        display: flex;
        order: 3;
    }

    .main-navigation {
        flex: none;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--clr-secondary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        z-index: 1050;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li a {
        font-size: 1.3rem;
        padding: 0.8rem 1.5rem;
        color: var(--clr-offwhite);
    }

    .header-cta {
        order: 2;
    }
}

/* Footer Styles */
.site-footer {
    background-color: #9F4F0B;
    color: rgba(255, 255, 255, 0.85);
}

.footer-top {
    padding: calc(104px + 2rem) 0 2rem;
}

.footer-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo-link {
    display: inline-block;
}

.btn-back-top {
    font-family: var(--ff-ui);
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.btn-back-top:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    color: #fff;
}

.footer-main {
    padding: 3rem 0 3.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.grid-footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.2fr;
    gap: 3rem;
}

.footer-column h4 {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.9rem;
}

.footer-links a,
.footer-links li {
    font-family: var(--ff-ui);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.contact-info svg {
    flex-shrink: 0;
    opacity: 0.6;
    stroke: rgba(255,255,255,0.75);
}

/* Partners */
.footer-partners {
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.partners-title {
    color: var(--clr-primary);
    font-family: var(--ff-ui);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.partners-grid {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.partner-card {
    background: #fff;
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 64px;
    text-decoration: none;
    transition: box-shadow 0.2s;
}

.partner-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.partner-card img {
    max-height: 36px;
    width: auto;
    display: block;
}

.partner-name {
    font-family: var(--ff-ui);
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
}

/* Footer Bottom */
.footer-bottom {
    padding: 1.25rem 0;
    text-align: center;
    font-family: var(--ff-ui);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    margin: 0;
}

@media (max-width: 1024px) {
    .grid-footer {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .grid-footer {
        grid-template-columns: 1fr;
    }
}

/* Home Page - New Sections Styling */

/* Experience Banner */
.experience-banner {
    position: relative;
    padding: var(--space-xl) 0;
    background-color: var(--clr-secondary);
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1596700465664-8393e8770425?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: left;
    color: var(--clr-white);
}

.banner-content {
    max-width: 650px;
}

.banner-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
}

.text-white {
    color: var(--clr-white) !important;
}

.opacity-80 {
    opacity: 0.8;
}

/* Hospitality & Grids */
.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 3rem;
}

.view-all {
    font-family: var(--ff-ui);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--clr-primary);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    border-bottom: 2px solid transparent;
}

.view-all:hover {
    border-color: var(--clr-primary);
}

.hotel-grid,
.restaurant-grid,
.event-grid,
.provider-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Cities Archive Grid */
.cities-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.city-archive-card {
    position: relative;
    display: block;
    min-height: 260px;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--clr-secondary);
    background-size: cover;
    background-position: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.city-archive-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}

.city-archive-card--no-image {
    background: linear-gradient(135deg, var(--clr-secondary) 0%, #5a3018 100%);
}

.city-archive-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 100%);
}

.city-archive-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 1;
}

.city-archive-card-name {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    color: #fff;
    margin: 0 0 0.35rem;
    line-height: 1.2;
}

.city-archive-card-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    margin: 0 0 0.75rem;
    line-height: 1.4;
}

.city-archive-card-btn {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    padding: 0.3rem 0.9rem;
    transition: background 0.2s ease;
}

.city-archive-card:hover .city-archive-card-btn {
    background: rgba(255,255,255,0.15);
}

/* Event card tag */
.listing-card-tag {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--clr-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
}

.listing-card-date {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 0.5rem;
    color: var(--clr-text-light);
}

/* Hotel/Restaurant Cards */
.hotel-card,
.restaurant-card {
    background: var(--clr-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: var(--tr-smooth);
}

.hotel-card:hover,
.restaurant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(61, 32, 16, 0.1);
}

.hotel-card-image,
.restaurant-card-image {
    height: 200px;
}

.hotel-card-image img,
.restaurant-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-card-content,
.restaurant-card-content {
    padding: 1.5rem;
}

.hotel-meta,
.restaurant-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.8rem;
    font-family: var(--ff-accent);
    color: var(--clr-text-light);
    text-transform: uppercase;
}

.hotel-title,
.restaurant-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.btn-text {
    font-family: var(--ff-ui);
    font-weight: 700;
    color: var(--clr-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Provider Grid & Cards */
.provider-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* When .provider-card is used as a listing-card, reset old provider styles */
.listing-card.provider-card {
    padding: 0;
    margin-top: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    border: 1px solid var(--clr-border-light);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

.listing-card.provider-card .listing-card-image {
    width: 100%;
    border-radius: 12px 12px 0 0;
}

.provider-card-inner {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.provider-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background-color: var(--clr-sand);
    border: 3px solid var(--clr-primary);
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.provider-info {
    flex-grow: 1;
}

.provider-name {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.provider-meta {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1.2rem;
    font-size: 0.85rem;
    opacity: 0.8;
}

.provider-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn-link {
    font-family: var(--ff-ui);
    font-weight: 700;
    color: var(--clr-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Extra Global Helpers */
.bg-sand {
    background-color: var(--clr-sand) !important;
}

.text-center {
    text-align: center;
}

.text-elegant {
    font-family: var(--ff-display);
    font-style: italic;
    font-size: 1.2rem;
    opacity: 0.7;
}

/* Responsive Overrides */
@media (max-width: 1200px) {

    .hotel-grid,
    .restaurant-grid,
    .event-grid,
    .provider-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cities-archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .provider-grid {
        grid-template-columns: 1fr;
    }

    .provider-card-inner {
        flex-direction: column;
        text-align: center;
    }

    .provider-meta {
        align-items: center;
    }

    .provider-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {

    .hotel-grid,
    .restaurant-grid,
    .event-grid,
    .provider-grid,
    .cities-archive-grid {
        grid-template-columns: 1fr;
    }
}

/* Listing Swiper */
.listing-swiper {
    overflow: visible;
    padding: 4px 4px 16px;
}

.listing-swiper .swiper-wrapper {
    padding: 1px;
}


.listing-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.listing-swiper .swiper-slide .listing-card {
    width: 100%;
}

.listing-swiper .swiper-button-next,
.listing-swiper .swiper-button-prev {
    color: white;
    background: var(--clr-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.listing-swiper .swiper-button-next:after,
.listing-swiper .swiper-button-prev:after {
    font-size: 1rem;
    font-weight: bold;
}

/* Listing Card (Hotel, Restaurant, Provider) */
.listing-card {
    background: #FFF;
    border: 1px solid #EAECF0;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s;
}

.listing-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

.listing-card-image {
    display: block;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.listing-card-image img,
.listing-card-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.listing-card:hover .listing-card-image img {
    transform: scale(1.03);
}

.listing-card-placeholder {
    background-color: var(--clr-sand);
}

.listing-card-body {
    padding: 1.25rem 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.listing-card-meta {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-family: var(--ff-ui);
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    margin-bottom: 0.6rem;
}

.listing-card-meta svg {
    stroke: var(--clr-text-muted);
    flex-shrink: 0;
}

.listing-card-badge {
    background: #f5ede3;
    color: var(--clr-secondary);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.1rem 0.5rem;
    border-radius: 50px;
    margin-left: 0.4rem;
}

.listing-card-title {
    font-family: var(--ff-ui);
    font-size: 1rem;
    font-weight: 700;
    color: #0C111D;
    margin: 0 0 0.6rem;
    line-height: 1.4;
}

.listing-card-title a {
    color: inherit;
    text-decoration: none;
}

.listing-card-title a:hover {
    color: var(--clr-primary);
}

.listing-card-desc {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.listing-card-footer {
    border-top: 1px solid var(--clr-border-light);
    padding-top: 1rem;
    margin-top: auto;
}

.btn-listing {
    display: inline-block;
    background: var(--clr-secondary);
    color: #fff;
    padding: 0.55rem 1.25rem;
    border-radius: 50px;
    font-family: var(--ff-ui);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-listing:hover {
    background: var(--clr-primary);
    color: #fff;
}

/* Section 9: News */
.news-section {
    background-color: var(--clr-secondary);
    padding: 120px 2rem;
    position: relative;
    overflow: hidden;
}

.news-top-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    pointer-events: none;
    line-height: 0;
}

.news-top-wave svg {
    display: block;
    width: 100%;
    height: 70px;
}

.news-inner {
    max-width: 1216px;
    margin: 0 auto;
}

.news-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.news-heading {
    font-family: var(--ff-display);
    font-size: 2.5rem;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.news-heading-underline {
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.news-heading-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='6' viewBox='0 0 120 6'%3E%3Cpath d='M0 3 Q15 0 30 3 Q45 6 60 3 Q75 0 90 3 Q105 6 120 3' stroke='%23E8A04A' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: auto 100%;
}

.news-view-all {
    font-family: var(--ff-ui);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--clr-primary);
    text-decoration: none;
    white-space: nowrap;
}

.news-view-all:hover {
    text-decoration: underline;
}

.news-swiper {
    overflow: hidden;
    padding-bottom: 1rem;
}

.news-swiper .swiper-wrapper {
    align-items: stretch;
}

.news-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.news-swiper .swiper-slide .news-card {
    width: 100%;
}

.news-card {
    background: #FFF;
    border-radius: 20px;
    border: 1px solid #EAECF0;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card-image {
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-card-image img,
.news-card-image .placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-card-image .placeholder-img {
    background-color: var(--clr-sand);
}

.news-card-content {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--ff-ui);
    font-size: 0.8rem;
    color: var(--clr-primary);
    margin-bottom: 0.75rem;
}

.news-meta svg {
    stroke: var(--clr-primary);
    flex-shrink: 0;
}

.news-title {
    font-family: var(--ff-ui);
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.news-title a {
    color: inherit;
    text-decoration: none;
}

.news-title a:hover {
    color: var(--clr-primary);
}

.news-excerpt {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex: 1;
}

.btn-news {
    display: inline-block;
    background: var(--clr-primary);
    color: #fff;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-family: var(--ff-ui);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    align-self: flex-start;
    transition: background 0.2s;
}

.btn-news:hover {
    background: var(--clr-secondary);
    color: #fff;
}

.news-swiper .swiper-button-next,
.news-swiper .swiper-button-prev {
    color: white;
    background: var(--clr-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.news-swiper .swiper-button-next:after,
.news-swiper .swiper-button-prev:after {
    font-size: 1rem;
    font-weight: bold;
}

/* Section 10: Podcast */
.bg-brown {
    background-color: var(--clr-brown) !important;
}

.bg-light-green {
    background-color: var(--clr-sand);
}

.podcast-section {
    background-color: var(--clr-bg-alt) !important;
    padding-top: 120px;
    padding-bottom: 120px;
}

.podcast-container {
    max-width: 1216px;
}

.podcast-title {
    font-family: var(--ff-display);
    font-size: 2.8rem;
    color: #0C111D;
    margin-bottom: 1.2rem;
}

.podcast-title-underline {
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.podcast-title-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='6' viewBox='0 0 120 6'%3E%3Cpath d='M0 3 Q15 0 30 3 Q45 6 60 3 Q75 0 90 3 Q105 6 120 3' stroke='%23BA5E0F' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: auto 100%;
}

.podcast-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 660px;
    margin: 0 auto;
    margin-bottom: 64px;
}

.podcast-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* ── Episode Card ── */
.vs-episode-card {
    background: #FFF;
    border-radius: 20px;
    padding: 1.25rem 1.5rem;
    display: grid;
    grid-template-columns: 90px 1fr 28px;
    gap: 1.25rem;
    align-items: center;
    border: 1px solid #EAECF0;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05);
}

.vs-ep-cover {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.vs-ep-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vs-ep-cover-placeholder {
    width: 100%;
    height: 100%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.vs-ep-body {
    min-width: 0;
}

.vs-ep-meta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.vs-ep-show {
    font-size: 0.78rem;
    font-weight: 700;
    color: #333;
}

.vs-ep-label,
.vs-ep-date {
    font-size: 0.75rem;
    color: #777;
}

.vs-ep-label::before,
.vs-ep-date::before {
    content: '·';
    margin-right: 0.4rem;
}

.vs-ep-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0C111D;
    margin: 0 0 0.6rem;
    line-height: 1.4;
}

.vs-ep-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vs-play-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--clr-primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s, transform .1s;
    padding: 0;
}

.vs-play-btn:hover { background: var(--clr-secondary); transform: scale(1.06); }
.vs-play-btn svg   { width: 18px; height: 18px; color: #fff; fill: #fff; }

.vs-progress-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
}

.vs-time-current,
.vs-time-total {
    font-size: 0.72rem;
    color: #777;
    white-space: nowrap;
}

.vs-progress {
    flex: 1;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: #e0e0e0;
    border-radius: 2px;
    cursor: pointer;
    outline: none;
    min-width: 0;
}

.vs-progress::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--clr-primary);
    cursor: pointer;
}

.vs-progress::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--clr-primary);
    border: none;
    cursor: pointer;
}

.vs-download-btn {
    color: #999;
    display: flex;
    align-items: center;
    transition: color .2s;
}
.vs-download-btn:hover { color: var(--clr-primary); }

.vs-ep-spotify {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 560px) {
    .vs-episode-card {
        grid-template-columns: 52px 1fr;
    }
    .vs-ep-spotify { display: none; }
    .vs-ep-title { font-size: 0.88rem; }
}

.btn-podcast-cta {
    background-color: var(--clr-secondary);
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-family: var(--ff-ui);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: background 0.2s;
    margin-top: 64px;
}

.btn-podcast-cta:hover {
    background-color: var(--clr-primary);
    color: #fff;
}

.tagline {
    font-family: var(--ff-ui);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 1rem;
}

.text-primary {
    color: var(--clr-primary) !important;
}

.podcast-episodes {
    margin: 3rem 0;
}

.episode-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ep-number {
    font-family: var(--ff-accent);
    color: var(--clr-primary);
    font-weight: 800;
    font-size: 0.9rem;
}

.episode-item h4 {
    margin: 0;
    font-size: 1.1rem;
    font-family: var(--ff-ui);
}

.cover-art {
    background-color: var(--clr-primary);
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Section 11: Location */
.location.bg-sand {
    padding-top: 120px;
}

.location-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.location-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.location-btn {
    display: inline-flex;
    align-items: center;
    margin: 1.5rem 0 0;
}

.access-methods {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.access-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.access-icon-svg {
    color: var(--clr-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.access-text p {
    margin: 0;
    color: var(--clr-dark);
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Overrides (Bottom) */
@media (max-width: 1024px) {
    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .podcast-grid,
    .location-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .podcast-visual {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .post-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================
   Archive Hero Header
   ===================== */
.archive-header {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: 3rem 0 6rem;
    text-align: left;
    background-color: var(--clr-secondary);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.archive-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.65) 100%);
    z-index: 0;
}

.archive-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 70px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70' preserveAspectRatio='none'%3E%3Cpath d='M0%2C40 C180%2C80 360%2C0 540%2C40 C720%2C80 900%2C0 1080%2C40 C1260%2C80 1380%2C20 1440%2C40 L1440%2C70 L0%2C70 Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 2;
    pointer-events: none;
}

.archive-header .container {
    position: relative;
    z-index: 1;
}

.archive-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 1.25rem;
}

.archive-breadcrumb a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.archive-breadcrumb a:hover {
    color: #fff;
}

.archive-breadcrumb .sep {
    opacity: 0.6;
}

.archive-title {
    font-family: var(--ff-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff !important;
    margin-top: 1.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.archive-description {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    max-width: 600px;
    margin: 0;
}

/* Inteligências - Embed iframe */
.site-main:has(.inteligencia-fullscreen) {
    padding: 0;
    margin: 0;
}
.inteligencia-fullscreen {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    padding: 80px 24px 24px;
    box-sizing: border-box;
    background: #BA5E0F;
}
.inteligencia-iframe-full {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.archive-count {
    font-size: 0.9rem;
    color: var(--clr-dark);
    opacity: 0.65;
    margin-bottom: 1.5rem;
}

/* =====================
   Filter Bar
   ===================== */
.vs-filter-bar {
    background: transparent;
    padding: 0 0 2rem;
    margin-top: -4.5rem;
    position: relative;
    z-index: 10;
}

.vs-filter-form {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Row 1 */
.vs-filter-row-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.vs-filter-search {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex: 2;
    min-width: 200px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.65rem 1rem;
    color: #aaa;
}

.vs-filter-search input {
    border: none;
    outline: none;
    flex: 1;
    font-family: var(--ff-ui);
    font-size: 0.95rem;
    color: var(--clr-text);
    background: transparent;
}

.vs-filter-search input::placeholder {
    color: #aaa;
}

.vs-filter-select {
    flex: 1;
    min-width: 160px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.65rem 1rem;
    font-family: var(--ff-ui);
    font-size: 0.9rem;
    color: var(--clr-text);
    background: #fff;
    cursor: pointer;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    padding-right: 2rem;
}

.vs-filter-select:focus {
    border-color: var(--clr-primary);
}

/* Row 2 */
.vs-filter-row-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    border-top: 1px solid #f0f0f0;
    padding-top: 1rem;
}

.vs-filter-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.vs-price-label {
    font-family: var(--ff-ui);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-text-light);
    white-space: nowrap;
}

.vs-price-min-display,
.vs-price-max-display {
    font-family: var(--ff-ui);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--clr-primary);
    white-space: nowrap;
}

/* Dual Range Slider */
.vs-dual-range {
    position: relative;
    flex: 1;
    height: 6px;
    min-width: 120px;
}

.vs-range-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
}

.vs-range-fill {
    position: absolute;
    height: 6px;
    background: var(--clr-primary);
    border-radius: 3px;
}

.vs-dual-range input[type="range"] {
    position: absolute;
    top: -5px;
    width: 100%;
    height: 16px;
    background: transparent;
    pointer-events: none;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
}

.vs-dual-range input[type="range"]::-webkit-slider-thumb {
    pointer-events: all;
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--clr-primary);
    border: 2px solid #fff;
    box-shadow: 0 1px 5px rgba(0,0,0,0.2);
    cursor: pointer;
}

.vs-dual-range input[type="range"]::-moz-range-thumb {
    pointer-events: all;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--clr-primary);
    border: 2px solid #fff;
    box-shadow: 0 1px 5px rgba(0,0,0,0.2);
    cursor: pointer;
}

.vs-filter-clear {
    background: none;
    border: 1px solid #e0e0e0;
    font-family: var(--ff-ui);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--clr-text-light);
    cursor: pointer;
    white-space: nowrap;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    transition: var(--tr-smooth);
}

.vs-filter-clear:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
}

.vs-filter-count-wrap {
    font-family: var(--ff-ui);
    font-size: 0.9rem;
    color: var(--clr-text-light);
    margin-bottom: 1rem;
}

.archive-item-wrap {
    display: contents;
}

@media (max-width: 768px) {
    .vs-filter-row-top {
        flex-direction: column;
        align-items: stretch;
    }
    .vs-filter-search,
    .vs-filter-select {
        width: 100%;
        flex: none;
    }
    .vs-filter-row-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    .vs-filter-price {
        flex-wrap: wrap;
        width: 100%;
    }
    .vs-dual-range {
        width: 100%;
        flex: none;
    }
}

/* Archives & Filters */

/* Filter Bar */
.filter-bar {
    background-color: var(--clr-sand);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 80px;
    /* Below scrolled header */
    z-index: 900;
}

.filters-form {
    display: flex;
    gap: 2rem;
    align-items: flex-end;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-grow: 1;
    min-width: 150px;
}

.filter-group label {
    font-family: var(--ff-ui);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--clr-secondary);
}

.filter-group select {
    padding: 0.8rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: var(--ff-body);
    font-size: 0.95rem;
    background-color: var(--clr-white);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%233D2010' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
}

.filter-actions {
    flex-shrink: 0;
}

.filter-actions .btn {
    padding: 0.8rem 2.5rem;
}

/* Pagination */
.pagination-container {
    margin-top: 5rem;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 0.5rem;
}

.pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--clr-white);
    color: var(--clr-secondary);
    font-family: var(--ff-ui);
    font-weight: 700;
    transition: var(--tr-smooth);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: var(--clr-primary);
    color: var(--clr-white);
    border-color: var(--clr-primary);
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
    width: auto;
    padding: 0 1.5rem;
    border-radius: 50px;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 5rem 0;
    font-style: italic;
    font-size: 1.2rem;
    opacity: 0.6;
}

/* Responsive Filters */
@media (max-width: 768px) {
    .filter-bar {
        position: static;
    }

    .filters-form {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .filter-group {
        width: 100%;
    }
}

/* Single Pages */

/* Blog Hero — layout centralizado */
.blog-hero .blog-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    padding: 1.5rem 0;
}

.blog-hero .blog-hero-title {
    max-width: 800px;
}

.blog-breadcrumb-center {
    justify-content: center;
}

.blog-hero-tags {
    justify-content: center;
}

.blog-content-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.btn-blog-original {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    background: var(--clr-primary);
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.btn-blog-original:hover {
    opacity: 0.85;
    color: #fff;
}

/* ── Blog Archive ─────────────────────────────────────────── */

/* Seção 1: Hero com fundo escuro */
.blog-hero-section {
    background-color: var(--clr-secondary);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.blog-hero-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 70px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70' preserveAspectRatio='none'%3E%3Cpath d='M0%2C40 C180%2C80 360%2C0 540%2C40 C720%2C80 900%2C0 1080%2C40 C1260%2C80 1380%2C20 1440%2C40 L1440%2C70 L0%2C70 Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 2;
    pointer-events: none;
}

.blog-archive-header {
    margin-bottom: 2.5rem;
}

.blog-archive-title {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: #fff;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.blog-archive-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 3px;
    background: var(--clr-primary);
    border-radius: 2px;
}

.blog-archive-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 1.5rem;
    align-items: stretch;
}

/* Post destaque */
.blog-featured-card {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    min-height: 480px;
}

.blog-featured-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
}

.blog-featured-card__img--placeholder {
    background: var(--clr-sand);
    position: absolute;
    inset: 0;
}

.blog-featured-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.blog-featured-card__title {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

/* Lista lateral */
.blog-side-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-side-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    text-decoration: none;
    background: #f8f6f2;
    border-radius: 12px;
    padding: 0.75rem;
    transition: background 0.2s;
    flex: 1;
}

.blog-side-item:hover {
    background: #f0ece4;
}

.blog-side-item__img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.blog-side-item__img--placeholder {
    background: var(--clr-sand);
    width: 100px;
    height: 80px;
    border-radius: 8px;
    flex-shrink: 0;
}

.blog-side-item__info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.5rem;
}

.blog-side-item__title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-secondary);
    line-height: 1.4;
    margin: 0;
}

/* Seções 2 e 3 */
.blog-posts-section {
    padding: 80px 0;
    background: #fff;
}

.blog-posts-section--alt {
    background: #f8f6f2;
}

.blog-section-title {
    font-family: var(--ff-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--clr-secondary);
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.4rem;
}

.blog-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 3px;
    background: var(--clr-primary);
    border-radius: 2px;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.blog-grid-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: 20px;
    overflow: hidden;
    background: #FFF;
    border: 1px solid #EAECF0;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.blog-grid-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.blog-grid-card__img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-grid-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-grid-card__placeholder {
    width: 100%;
    height: 100%;
    background: var(--clr-sand);
}

.blog-grid-card__cat {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--clr-primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.blog-grid-card__body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.blog-grid-card__date {
    font-size: 0.75rem;
    color: #999;
}

.blog-grid-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--clr-secondary);
    line-height: 1.4;
    margin: 0;
    flex: 1;
}

.blog-posts-section--alt .blog-grid-card {
    background: #fff;
}

@media (max-width: 900px) {
    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-posts-grid {
        grid-template-columns: 1fr;
    }
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clr-primary);
}

@media (max-width: 900px) {
    .blog-archive-grid {
        grid-template-columns: 1fr;
    }
    .blog-featured-card {
        min-height: 320px;
    }
}

.single-item-page > .container {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* ── Hero ─────────────────────────────────────────────────── */
.tour-hero {
    position: relative;
    padding: 7rem 0 5rem;
    background-color: var(--clr-secondary);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.tour-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 70px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70' preserveAspectRatio='none'%3E%3Cpath d='M0%2C40 C180%2C80 360%2C0 540%2C40 C720%2C80 900%2C0 1080%2C40 C1260%2C80 1380%2C20 1440%2C40 L1440%2C70 L0%2C70 Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 2;
    pointer-events: none;
}

.tour-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.65) 100%);
    z-index: 0;
}

.tour-hero .container {
    position: relative;
    z-index: 1;
}

/* Hero inner layout */
.single-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    min-height: 380px;
    padding-top: 1.5rem;
}

.single-hero-left {
    max-width: 600px;
    min-width: 0;
}

/* Breadcrumb */
.single-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.75);
    font-family: var(--ff-ui);
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
}

.single-breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.single-breadcrumb a:hover {
    color: #fff;
}

.single-breadcrumb .sep {
    opacity: 0.5;
}

/* Title */
.single-hero-title {
    font-family: var(--ff-display);
    font-size: clamp(1.8rem, 4.5vw, 3.25rem);
    color: #fff;
    margin: 0 0 1.25rem;
    line-height: 1.15;
    text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

/* Tags row */
.single-hero-tags {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.single-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-family: var(--ff-ui);
    font-size: 0.82rem;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

/* Action buttons (right column) */
.single-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex-shrink: 0;
    align-self: center;
}

.hero-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 165px;
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.45);
    color: #fff;
    font-family: var(--ff-ui);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.6rem 1.25rem;
    border-radius: 999px;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    backdrop-filter: blur(6px);
    transition: background 0.2s, border-color 0.2s;
}

.hero-action-btn:hover {
    background: rgba(255,255,255,0.24);
    border-color: rgba(255,255,255,0.7);
    color: #fff;
}

.hero-action-btn--whatsapp {
    background: #25D366;
    border-color: #25D366;
}

.hero-action-btn--whatsapp:hover {
    background: #1ebe5a;
    border-color: #1ebe5a;
}

@media (max-width: 768px) {
    .single-hero-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .single-hero-actions {
        flex-direction: row;
        flex-wrap: wrap;
        align-self: auto;
    }

    .hero-action-btn {
        min-width: 0;
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .single-hero-title {
        font-size: clamp(1.5rem, 6vw, 2.25rem);
    }
}

.tour-navigation {
    margin-bottom: 2rem;
}

.back-link {
    font-family: var(--ff-ui);
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.7;
    color: var(--clr-white);
}

.back-link:hover {
    opacity: 1;
    color: var(--clr-primary);
}

.tour-category-label {
    display: inline-block;
    background-color: var(--clr-primary);
    color: var(--clr-white);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-family: var(--ff-ui);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.tour-hero .tour-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1rem;
}

.tour-location {
    font-family: var(--ff-accent);
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Body Layout */
.tour-body-container {
    padding-top: 4rem;
    padding-bottom: var(--space-lg);
}

.experiences-section,
.location-section {
    margin-top: 24px;
}

.tour-layout-split {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 5rem;
}

/* Gallery & Content */
.tour-gallery {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 4rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.section-content {
    margin-bottom: 4rem;
}

.section-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--clr-sand);
    padding-bottom: 0.5rem;
    color: #0C111D;
}

.section-content p {
    font-size: 1.1rem;
    color: var(--clr-text-light);
    margin-bottom: 1.5rem;
}

/* Sidebar */
.sidebar-card {
    border-radius: 20px;
    border: 1px solid #EAECF0;
    background: #FFF;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
}

.sticky-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-price {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-price .label {
    display: block;
    font-size: 0.85rem;
    opacity: 0.6;
    text-transform: uppercase;
}

.sidebar-price .value {
    font-family: var(--ff-accent);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--clr-primary);
}

.sidebar-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.detail-item {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.detail-item .icon {
    font-size: 1.5rem;
    background: var(--clr-sand);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.detail-item strong {
    display: block;
    font-size: 0.9rem;
    font-family: var(--ff-ui);
    text-transform: uppercase;
}

.detail-item span {
    font-size: 1rem;
    opacity: 0.8;
}

.btn-block {
    display: flex;
    width: 100%;
    margin-bottom: 1rem;
}

.sidebar-info {
    margin-top: 2rem;
    font-size: 0.85rem;
    opacity: 0.7;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Specific templates fixes */
.hotel-hero-meta,
.restaurant-hero-meta,
.provider-hero-meta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1rem;
    font-family: var(--ff-ui);
    font-weight: 700;
}

.city-badge,
.cuisine-badge,
.cadastur-badge {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.stars {
    color: var(--clr-primary);
}

.tags-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--clr-sand);
    padding: 0.5rem 1.2rem;
    border-radius: 5px;
    font-family: var(--ff-ui);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Large Avatar for Provider */
.provider-large-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 3rem;
    border: 5px solid var(--clr-primary);
    background: var(--clr-sand);
}

/* Provider Single - Description */
.provider-description-section {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--clr-text-body);
    margin-bottom: 2.5rem;
}
.provider-description-section p {
    margin-bottom: 1rem;
}
.provider-description-section a {
    color: var(--clr-primary);
    text-decoration: underline;
}

/* Provider Single - Verificações */
.provider-verificacoes {
    margin-bottom: 2rem;
}
.provider-verificacoes__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}
.provider-verificacoes__table {
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    overflow: hidden;
}
.pv-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--clr-border);
    gap: 1rem;
}
.pv-row:last-child {
    border-bottom: none;
}
.pv-label {
    font-size: 0.9rem;
    color: var(--clr-primary);
    font-weight: 500;
    white-space: nowrap;
}
.pv-value {
    font-size: 0.9rem;
    color: var(--clr-text-body);
    text-align: right;
}

/* Provider Sidebar */
.sidebar-desc {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}
.sidebar-social {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--clr-border);
}
.sidebar-social h4 {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.sidebar-social__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.sidebar-social__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--clr-primary);
    text-decoration: none;
    transition: opacity 0.2s;
}
.sidebar-social__link:hover {
    opacity: 0.75;
}

/* Responsive Single */
@media (max-width: 1024px) {
    .tour-layout-split {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .tour-sidebar {
        order: -1;
    }

    .sticky-sidebar {
        position: static;
    }
}

/* Loading State */
.loading {
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--clr-text-light);
    background: var(--clr-sand);
    border-radius: 10px;
}

/* City & Partners Touch-ups */
.experience-card h3 {
    font-size: 1.4rem;
    color: var(--clr-secondary);
}

.partners-section {
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.partner-item {
    max-width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: var(--tr-smooth);
    filter: grayscale(1);
}

.partner-item:hover {
    opacity: 1;
    filter: grayscale(0);
}

.partner-item img {
    max-height: 100%;
    object-fit: contain;
}

.partner-name {
    font-family: var(--ff-ui);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--clr-secondary);
    text-align: center;
}

@media (max-width: 768px) {
    .archive-header {
        min-height: 260px;
        padding: 2rem 0 4.5rem;
    }
    .archive-title {
        font-size: 2.5rem;
    }
}

/* =====================
   Partner Banners Section
   ===================== */
.partner-banners-section {
    position: relative;
    z-index: 10;
    padding: 16px 16px 0;
    background: linear-gradient(to bottom, #fde9d8 50%, #9F4F0B 50%);
    margin-bottom: -64px;
}

.partner-banners-wrap {
    max-width: 1216px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
}

.partner-banners-swiper {
    width: 100%;
}

.partner-banner {
    position: relative;
    height: 502px;
    display: flex;
    align-items: center;
    background-color: var(--clr-secondary);
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    overflow: hidden;
}

.partner-banner-overlay {
    position: absolute;
    inset: 0;
    border-radius: 24px;
}

.partner-banner-content {
    position: relative;
    z-index: 1;
    padding: 3rem 4rem;
    max-width: 628px;
}

.partner-banner-logo {
    max-height: 48px;
    width: auto;
    margin-bottom: 1.25rem;
    display: block;
    filter: none;
}

.partner-banner-title {
    font-family: var(--ff-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: #fff;
    margin: 0 0 0.75rem;
    line-height: 1.2;
}

.partner-banner-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    margin: 0 0 1.5rem;
    line-height: 1.6;
    max-width: 420px;
}

.partner-banner-btn {
    display: inline-block;
    background: #fff;
    color: var(--clr-secondary);
    font-family: var(--ff-ui);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.65rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.partner-banner-btn:hover {
    background: rgba(255,255,255,0.88);
    transform: translateY(-1px);
}

.partner-banners-swiper .swiper-button-prev,
.partner-banners-swiper .swiper-button-next {
    color: #fff;
    background: rgba(255,255,255,0.15);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
}

.partner-banners-swiper .swiper-button-prev::after,
.partner-banners-swiper .swiper-button-next::after {
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .partner-banner-content {
        padding: 2rem 1.5rem;
    }
    .partner-banner {
        height: auto;
        min-height: 300px;
    }
}

/* City Card */
.city-card {
    display: flex;
    width: 100%;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: var(--clr-secondary);
    position: relative;
    text-decoration: none;
    transition: var(--tr-smooth);
}

.city-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 55%, transparent 100%);
    border-radius: 16px;
}

.city-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.city-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 1.5rem;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.city-card-content h3 {
    color: #fff;
    font-family: var(--ff-ui);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.city-card-content span {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
}

/* Experience Hero Cards (home carousel) */
.experiences-home-swiper {
    overflow: visible !important;
    padding: 20px 0 50px !important;
}

.experiences-home-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.exp-hero-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: var(--clr-secondary);
    position: relative;
    text-decoration: none;
    transition: var(--tr-smooth);
}

.exp-hero-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(159, 79, 11, 0.85) 0%, rgba(159, 79, 11, 0.25) 50%, transparent 100%);
    border-radius: 16px;
}

.exp-hero-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(159, 79, 11, 0.3);
}

.exp-hero-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.35);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.exp-hero-content {
    position: relative;
    z-index: 1;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.exp-hero-content h3 {
    color: #fff;
    font-family: var(--ff-ui);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.exp-hero-content span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.exp-hero-card--no-image {
    background-color: var(--clr-secondary);
}

.experiences-home-swiper .swiper-button-next,
.experiences-home-swiper .swiper-button-prev {
    color: var(--clr-primary);
    background: rgba(255,255,255,0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.experiences-home-swiper .swiper-button-next:after,
.experiences-home-swiper .swiper-button-prev:after {
    font-size: 14px;
    font-weight: 700;
}

.experiences-home-swiper .swiper-pagination-bullet-active {
    background: var(--clr-primary);
}

/* Experience Categories Section */
.experience-categories {
    background-color: #ffffff;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
}

.cities-inner {
    background: linear-gradient(180deg, #FDE9D8 0%, #ffffff 100%);
    border-radius: 24px 24px 0 0;
    padding: 3rem 1rem;
    max-width: 1216px;
    margin: 0 auto;
    overflow: hidden;
}

.cities-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
   
}

.cities-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cities-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cities-title {
    color: #0C111D;
}

.cities-title .cities-underline {
    position: relative;
    display: inline-block;
    padding-bottom: 0.4rem;
}

.cities-title .cities-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='6' viewBox='0 0 120 6'%3E%3Cpath d='M0 3 Q15 0 30 3 Q45 6 60 3 Q75 0 90 3 Q105 6 120 3' stroke='%23BA5E0F' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: auto 100%;
}

.cities-divider {
    height: 1px;
    background-color: #00000010;
    max-width: 1216px;
    margin: 100px auto 0;
}

.home-cities-section {
    background-color: #FDE9D8;
    padding-block: 120px;
}

/* City Feature Swiper */
.city-feature-swiper {
    overflow: hidden;
    position: relative;
}

.city-feature-swiper .swiper-slide {
    width: 100%;
}

.city-feature-card {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 480px;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: #2a1a0a;
    padding: 3rem;
    box-sizing: border-box;
}

.city-feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.1) 100%);
    border-radius: 20px;
}

.city-feature-left {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 520px;
    min-width: 0;
}

.city-feature-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.city-feature-index {
    font-family: var(--ff-ui);
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.city-feature-name {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.15;
}

.city-feature-desc {
    font-size: 1rem;
    color: #ffffffcc;
    line-height: 1.7;
    margin: 0;
}

.city-feature-btn {
    align-self: flex-start;
}

/* Mini attractions carousel */
.city-feature-attractions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.city-feature-attractions-label {
    font-family: var(--ff-ui);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: rgba(255,255,255,0.6);
}

.city-attractions-swiper {
    overflow: hidden;
    position: relative;
}

.city-attractions-swiper .swiper-slide {
    height: auto;
}

.city-attr-card {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-decoration: none;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.city-attr-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.city-attr-card img,
.city-attr-card-placeholder {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
}

.city-attr-card-placeholder {
    background-color: var(--clr-sand, #fde9d8);
}

.city-attr-card span {
    font-family: var(--ff-ui);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--clr-dark);
    padding: 0.4rem 0.6rem 0.6rem;
    line-height: 1.3;
}

.city-attractions-swiper .swiper-button-next,
.city-attractions-swiper .swiper-button-prev {
    color: var(--clr-primary);
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
    top: 40px;
}

.city-attractions-swiper .swiper-button-next:after,
.city-attractions-swiper .swiper-button-prev:after {
    font-size: 11px;
    font-weight: 800;
}


/* Navigation */
.city-feature-next,
.city-feature-prev {
    color: var(--clr-primary) !important;
    background: rgba(255,255,255,0.95) !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12) !important;
}

.city-feature-next:after,
.city-feature-prev:after {
    font-size: 15px !important;
    font-weight: 800 !important;
}

.city-feature-pagination {
    bottom: 0 !important;
}

.city-feature-pagination .swiper-pagination-bullet-active {
    background: var(--clr-primary) !important;
}

@media (max-width: 768px) {
    .city-feature-card {
        min-height: 520px;
        padding: 2rem 1.5rem;
        align-items: flex-end;
    }

    .city-feature-left {
        max-width: 100%;
    }
}

/* Swiper Customization */
.cities-swiper {
    padding: 20px 0 50px !important;
    position: relative;
    overflow: hidden;
}

.cities-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.cities-swiper .swiper-button-next,
.cities-swiper .swiper-button-prev {
    color: white;
    background: var(--clr-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.cities-swiper .swiper-button-next:after,
.cities-swiper .swiper-button-prev:after {
    font-size: 1rem;
    font-weight: bold;
}

.cities-swiper .swiper-pagination-bullet-active {
    background: var(--clr-primary);
}

/* Feedback Grid & Cards */
.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card-feedback {
    background: var(--clr-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--clr-primary);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feedback-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--clr-text);
}

.feedback-meta {
    display: flex;
    flex-direction: column;
}

.feedback-meta strong {
    font-family: var(--ff-ui);
    color: var(--clr-secondary);
    font-size: 1rem;
}

.feedback-meta span {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Attraction Grid */
.attraction-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

.section-top-margin {
    margin-top: 4rem;
}

@media (max-width: 1024px) {
    .attraction-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .attraction-grid {
        grid-template-columns: 1fr;
    }
}

/* What-to-do Section */
.what-to-do {
    overflow: hidden !important;
    padding-top: 120px;
    padding-bottom: 120px;
}

/* What-to-do Swiper */
.what-to-do-swiper {
    --swiper-theme-color: var(--clr-primary);
    --swiper-navigation-color: var(--clr-primary);
    --swiper-pagination-color: var(--clr-primary);
    padding-bottom: 3.5rem !important;
    position: relative;
    padding-left: 50px;
    padding-right: 50px;
    overflow: visible !important;
}

.what-to-do-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.what-to-do-swiper .card-tour,
.what-to-do-swiper .card-attraction {
    width: 100%;
}

section.what-to-do .tour-title {
    font-size: 24px !important;
    color: var(--clr-dark) !important;
    text-shadow: none !important;
    margin: 0 0 0.5rem !important;
}

.what-to-do-swiper .swiper-button-next,
.what-to-do-swiper .swiper-button-prev {
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--clr-white);
    color: var(--clr-primary);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
    margin-top: -1.75rem;
}

.what-to-do-swiper .swiper-button-next::after,
.what-to-do-swiper .swiper-button-prev::after {
    font-size: 1.1rem;
    font-weight: 800;
}

.what-to-do-swiper .swiper-button-prev {
    left: 0;
}

.what-to-do-swiper .swiper-button-next {
    right: 0;
}

.what-to-do-swiper .swiper-pagination {
    bottom: 12px !important;
}

.what-to-do-swiper .swiper-pagination-bullet-active {
    background: var(--clr-primary);
}

@media (max-width: 1024px) {
    .what-to-do-swiper {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 640px) {
    .what-to-do-swiper {
        padding-left: 0;
        padding-right: 0;
    }

    .what-to-do-swiper .swiper-button-next,
    .what-to-do-swiper .swiper-button-prev {
        display: none;
    }
}

/* City page — O que fazer carousel (mirrors .what-to-do-swiper) */
.city-what-to-do-swiper {
    --swiper-theme-color: var(--clr-primary);
    --swiper-navigation-color: var(--clr-primary);
    --swiper-pagination-color: var(--clr-primary);
    padding-bottom: 3.5rem !important;
    position: relative;
    padding-left: 50px;
    padding-right: 50px;
    overflow: visible !important;
}

.city-what-to-do-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.city-what-to-do-swiper .card-tour,
.city-what-to-do-swiper .card-attraction {
    width: 100%;
}

section.city-what-to-do .tour-title {
    font-size: 24px !important;
    color: var(--clr-dark) !important;
    text-shadow: none !important;
    margin: 0 0 0.5rem !important;
}

.city-what-to-do-swiper .swiper-button-next,
.city-what-to-do-swiper .swiper-button-prev {
    top: 50%;
    transform: translateY(-50%);
    width: 45px !important;
    height: 45px !important;
    background: var(--clr-white) !important;
    color: var(--clr-primary) !important;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
    margin-top: -1.75rem;
}

.city-what-to-do-swiper .swiper-button-next::after,
.city-what-to-do-swiper .swiper-button-prev::after {
    font-size: 1.1rem !important;
    font-weight: 800;
}

.city-what-to-do-swiper .swiper-button-prev { left: 0; }
.city-what-to-do-swiper .swiper-button-next { right: 0; }

.city-what-to-do-swiper .swiper-pagination {
    bottom: 12px !important;
}

.city-what-to-do-swiper .swiper-pagination-bullet-active {
    background: var(--clr-primary);
}

@media (max-width: 1024px) {
    .city-what-to-do-swiper {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 640px) {
    .city-what-to-do-swiper {
        padding-left: 0;
        padding-right: 0;
    }

    .city-what-to-do-swiper .swiper-button-next,
    .city-what-to-do-swiper .swiper-button-prev {
        display: none;
    }
}

.tour-body-container {
    padding-top: 5rem;
    padding-bottom: 8rem;
    background: #ffffff;
}

.tour-layout-split {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
}

.section-content {
    margin-bottom: 5rem;
}

.section-content h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--clr-brown);
    font-weight: 800;
    position: relative;
}

.section-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--clr-primary);
    border-radius: 2px;
}

.description-text {
    line-height: 2;
    color: #444;
    font-size: 1.15rem;
}

.description-text p {
    margin-bottom: 2rem;
}

/* Sidebar Styling */
.sidebar-card {
    border-radius: 20px;
    border: 1px solid #EAECF0;
    background: #FFF;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05);
    padding: 3rem;
}

.sticky-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-price {
    margin-bottom: 2.5rem;
    text-align: center;
}

.sidebar-price .label {
    display: block;
    font-size: 1rem;
    color: var(--clr-gray);
    margin-bottom: 0.5rem;
}

.sidebar-price .value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--clr-primary);
}

.sidebar-details {
    margin-bottom: 3rem;
}

.detail-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.detail-item .icon {
    font-size: 1.75rem;
    line-height: 1;
}

.detail-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--clr-brown);
    margin-bottom: 0.25rem;
}

.detail-item span {
    font-size: 1.05rem;
    color: #666;
}

.sidebar-actions .btn {
    padding: 1.5rem;
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 12px;
}

.sidebar-provider strong {
    font-size: 1.1rem;
    color: var(--clr-brown);
}

/* Video Section */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 1200px) {
    .tour-layout-split {
        grid-template-columns: 1fr;
        max-width: 800px;
        margin: 0 auto;
    }

    .tour-title {
        font-size: 3rem;
    }

    .sticky-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .tour-hero {
        padding: 5rem 0;
    }

    .tour-title {
        font-size: 2.5rem;
    }
}

/* Unified Internal Pages Refinements */
.breadcrumb {
    display: flex;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb a:hover {
    color: var(--clr-white);
}

.hero-cta {
    margin-top: 2rem;
}

.hero-actions {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.hero-actions .btn-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    font-size: 1.2rem;
    transition: var(--tr-smooth);
}

.hero-actions .btn-icon:hover {
    background: var(--clr-primary);
    transform: translateY(-3px);
}

.hero-actions .btn-whatsapp {
    background: #25D366;
}

.tour-hero .container {
    position: relative;
}

/* Tabs */
.tabs-container {
    margin-top: 3rem;
}

.tabs-nav {
    display: flex;
    gap: 2rem;
    border-bottom: 1px solid #00000010;
    margin-bottom: 3rem;
}

.tab-link {
    padding: 1rem 0;
    font-weight: 700;
    color: #999;
    cursor: pointer;
    position: relative;
    transition: var(--tr-smooth);
}

.tab-link:hover,
.tab-link.active {
    color: var(--clr-brown);
}

.tab-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--clr-primary);
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Internal Swiper Gallery */
.internal-gallery-swiper {
    width: 100%;
    height: 500px;
    margin-bottom: 3rem;
    border-radius: 24px;
    overflow: hidden;
}

.internal-gallery-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Provider Card */
.provider-card {
    background: #f8f8f8;
    padding: 2.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.provider-avatar {
    width: 80px;
    height: 80px;
    background: #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #666;
}

.provider-info h4 {
    margin-bottom: 0.5rem;
    color: var(--clr-dark);
}

.provider-contact {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0.5rem;
}

/* FAQ Accordion */
.faq-item {
    border-bottom: 1px solid #eee;
    padding: 1.5rem 0;
}

.faq-question {
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}

.faq-answer {
    padding-top: 1rem;
    display: none;
    line-height: 1.8;
    color: #666;
}

/* Sidebar Price Refinements */
.sidebar-price .original-price {
    display: block;
    text-decoration: line-through;
    color: #999;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.sidebar-price .value.promo {
    color: #28a745;
}

.btn-reserve-primary {
    background: #28a745;
    color: var(--clr-white);
    width: 100%;
    border-radius: 12px;
    padding: 1.5rem;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--tr-smooth);
}

.btn-reserve-primary:hover {
    background: #218838;
    color: var(--clr-white);
    transform: translateY(-2px);
}

/* Simple Table for Location */
.location-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}

.location-table tr {
    border-bottom: 1px solid #eee;
}

.location-table td {
    padding: 1rem 0;
}

.location-table td:first-child {
    font-weight: 700;
    width: 150px;
    color: var(--clr-brown);
}

@media (max-width: 1024px) {
    .internal-gallery-swiper {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-actions {
        top: 1rem;
        right: 1rem;
        gap: 0.5rem;
    }

    .hero-actions .btn-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .internal-gallery-swiper {
        height: 300px;
        border-radius: 12px;
    }

    .provider-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
}

/* 70/30 Grid */
.tour-layout-split {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 40px;
}

.main-column {
    min-width: 0;
    /* Fix for swiper in grid */
}

.vs-gallery-swiper {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.vs-gallery-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sidebar Styling */
.sidebar-column .sticky-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    border-radius: 20px;
    border: 1px solid #EAECF0;
    background: #FFF;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.btn-reserve-primary {
    display: block;
    width: 100%;
    background: var(--clr-primary);
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 20px;
    transition: var(--tr-smooth);
}

.btn-reserve-primary:hover {
    background: var(--clr-secondary);
    transform: scale(1.02);
}

/* Tabs */
.tabs-nav {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #00000010;
    margin-bottom: 30px;
}

.tab-link {
    padding: 10px 20px;
    font-weight: 700;
    cursor: pointer;
    color: #666;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

.tab-link.active {
    color: var(--clr-primary);
    border-bottom-color: var(--clr-primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Masonry Gallery */
.masonry-gallery {
    columns: 3;
    column-gap: 1rem;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1rem;
}

.masonry-item img {
    width: 100%;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.masonry-item img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .masonry-gallery { columns: 2; }
}

@media (max-width: 480px) {
    .masonry-gallery { columns: 1; }
}

/* Responsive */
@media (max-width: 992px) {
    .tour-layout-split {
        grid-template-columns: 1fr;
    }

    .tour-title {
        font-size: 2.5rem !important;
    }

    .vs-gallery-swiper {
        height: 350px;
    }
}
/* ── Sidebar Card Redesign ─────────────────────────────────── */
.sidebar-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    border: 2px solid var(--clr-primary);
    color: var(--clr-primary);
    margin-bottom: 1.25rem;
}

.sidebar-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.sidebar-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.sidebar-price .label {
    font-size: 0.9rem;
    color: var(--clr-gray);
    white-space: nowrap;
}

.sidebar-price .value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--clr-primary);
}

.sidebar-price .original-price {
    text-decoration: line-through;
    color: #aaa;
    font-size: 0.9rem;
}

.sidebar-price .value.promo {
    color: var(--clr-primary);
}

.tour-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.tour-feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--clr-dark);
}

.tour-feature-item svg {
    flex-shrink: 0;
    color: var(--clr-gray);
}

.tour-feature-item strong {
    font-weight: 700;
}

.sidebar-confirm {
    text-align: center;
    margin-top: 0.9rem;
    font-size: 0.85rem;
    color: var(--clr-gray);
}

.btn-reserve-primary {
    display: block;
    width: 100%;
    background: var(--clr-primary);
    color: #fff !important;
    text-align: center;
    padding: 0.9rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: var(--tr-smooth);
}

.btn-reserve-primary:hover {
    background: var(--clr-secondary);
    transform: translateY(-2px);
    color: #fff !important;
}

/* ── Experience Archive ──────────────────────────────────────── */
.experience-archive-section {
    padding: 80px 0;
    background: #f8f6f2;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 1rem;
}

.experience-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--clr-secondary);
    background-size: cover;
    background-position: center;
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

/* Primeiro card ocupa 2 linhas */
.experience-card--featured {
    grid-row: span 2;
}

.experience-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
}

.experience-card__cat {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    background: var(--clr-primary);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    margin-bottom: 0.5rem;
    width: fit-content;
}

.experience-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff !important;
    line-height: 1.3;
    margin: 0;
    text-align: left;
}

.experience-card--featured .experience-card__title {
    font-size: 1.3rem;
}

@media (max-width: 900px) {
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .experience-card--featured {
        grid-column: span 2;
    }
}

@media (max-width: 560px) {
    .experience-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }
    .experience-card--featured {
        grid-column: unset;
        grid-row: unset;
    }
}

/* ============================================================
   Header sólido em páginas sem hero
   ============================================================ */
.vs-page-no-hero .site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    padding: 0.5rem 0;
}

.vs-page-no-hero .vs-coming-soon {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.vs-page-no-hero .site-header .nav-menu li a {
    color: #0C111D;
}

.vs-page-no-hero .site-header .nav-menu li a:hover {
    color: var(--clr-primary);
    background: rgba(0,0,0,0.04);
}

.vs-page-no-hero .site-header .hamburger-bar {
    background: #0C111D;
}

.vs-page-no-hero .site-header .header-gtranslate select,
.vs-page-no-hero .site-header .header-gtranslate .gt_selector {
    border-color: rgba(0,0,0,0.2);
    color: var(--clr-text);
}

/* ============================================================
   Página Em Breve (Coming Soon)
   ============================================================ */
.vs-coming-soon {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, #fdf6ee 0%, #fff 100%);
}

.vs-coming-soon__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.vs-coming-soon__icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--clr-primary, #ECA235);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
}

.vs-coming-soon__title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--clr-text, #0C111D);
    margin: 0;
}

.vs-coming-soon__desc {
    font-size: 1.05rem;
    color: var(--clr-text-body, #374151);
    max-width: 520px;
    line-height: 1.7;
    margin: 0;
}

.vs-coming-soon__badge {
    display: inline-block;
    background: var(--clr-secondary, #BA5E0F);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 100px;
}

.vs-coming-soon__btn {
    margin-top: 0.5rem;
}

/* ============================================================
   GTranslate widget no header
   ============================================================ */
.header-gtranslate {
    display: flex;
    align-items: center;
    align-self: center;
}

.header-gtranslate select,
.header-gtranslate .gt_selector {
    font-size: 0.85rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    background: transparent;
    color: inherit;
    padding: 4px 6px;
    cursor: pointer;
    outline: none;
}

.site-header.scrolled .header-gtranslate select,
.site-header.scrolled .header-gtranslate .gt_selector {
    border-color: rgba(0,0,0,0.2);
    color: var(--clr-text);
}

@media (max-width: 768px) {
    .header-gtranslate { display: none; }
}

/* ============================================================
   Banner Envio de Fotos
   ============================================================ */
.vs-photo-banner {
    position: relative;
    background: linear-gradient(135deg, var(--clr-secondary) 0%, #7a3a06 100%);
    padding: 3.5rem 0;
    overflow: hidden;
}

.vs-photo-banner__overlay {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.vs-photo-banner__inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.vs-photo-banner__icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.vs-photo-banner__text {
    flex: 1;
    min-width: 200px;
}

.vs-photo-banner__title {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    line-height: 1.25;
}

.vs-photo-banner__desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.vs-photo-banner__btn {
    flex-shrink: 0;
    background: #fff;
    color: var(--clr-secondary);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    padding: 0.85rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    white-space: nowrap;
}

.vs-photo-banner__btn:hover {
    background: var(--clr-primary);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .vs-photo-banner__inner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .vs-photo-banner__icon {
        width: 64px;
        height: 64px;
    }

    .vs-photo-banner__title { font-size: 1.3rem; }
}
