/* =====================================================
   PARADISE ANGRA - Tema Tropical / Praiano
   ===================================================== */

:root {
    --ocean: #0077b6;
    --ocean-dark: #005f8d;
    --ocean-light: #00b4d8;
    --tropical: #2a9d8f;
    --tropical-dark: #1f7a6e;
    --sand: #f4a261;
    --sand-light: #ffecd2;
    --coral: #e76f51;
    --sunset: #f4845f;
    --sky: #e0f7fa;
    --dark: #1a1a2e;
    --dark-soft: #2d2d44;
    --text: #333;
    --text-light: #666;
    --bg: #fafbff;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-hover: 0 15px 50px rgba(0,0,0,0.15);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--bg);
}

h1,h2,h3,h4,h5,h6 { font-weight: 700; color: var(--dark); }
a { text-decoration: none; color: var(--ocean); transition: var(--transition); }
a:hover { color: var(--ocean-dark); }
img { max-width: 100%; height: auto; }

.main-content { overflow-x: hidden; }

/* ===================== NAVBAR ===================== */
#mainNavbar {
    padding: 8px 0;
    transition: var(--transition);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.08);
    z-index: 1050;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 1.4rem;
}

@media (max-width: 991.98px) {
    .navbar-logo { height: 44px !important; max-height: 44px !important; }

    /* Compensar navbar mais alta pela logo maior */
    .airbnb-detail  { padding-top: 92px !important; }
    .auth-page      { padding-top: 92px !important; }
    .checkout-page  { padding-top: 92px !important; }
    .dashboard-wrapper { padding-top: 92px !important; }
    .painel-wrapper { padding-top: 92px !important; }
}

.brand-icon { font-size: 1.8rem; margin-right: 8px; }
.brand-text { color: var(--dark); }

.navbar-logo {
    filter: drop-shadow(0 1px 6px rgba(0,0,0,0.14));
}

.nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover { 
    color: var(--ocean) !important; 
    background: rgba(0,119,182,0.08); 
}

.navbar-actions .btn-outline-light {
    color: var(--ocean) !important;
    border-color: var(--ocean) !important;
}

.navbar-actions .btn-outline-light:hover {
    background: var(--ocean) !important;
    color: #fff !important;
}

/* Landing page: transparent navbar that becomes solid on scroll */
.landing-page #mainNavbar {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    padding: 15px 0;
}

/* Logo com halo branco quando navbar está sobre imagem escura */
.landing-page #mainNavbar .navbar-logo {
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.55)) drop-shadow(0 2px 12px rgba(0,0,0,0.5));
}

/* Logo volta ao glow sutil quando navbar fica sólida */
.landing-page #mainNavbar.scrolled .navbar-logo {
    filter: drop-shadow(0 1px 6px rgba(0,0,0,0.14));
}

.landing-page #mainNavbar .brand-text { color: #fff; }

.landing-page #mainNavbar .nav-link {
    color: rgba(255,255,255,0.9) !important;
}

.landing-page #mainNavbar .nav-link:hover {
    color: #fff !important;
    background: rgba(255,255,255,0.15);
}

.landing-page #mainNavbar .btn-outline-light {
    color: rgba(255,255,255,0.9) !important;
    border-color: rgba(255,255,255,0.5) !important;
}

/* Landing page scrolled: revert to solid */
.landing-page #mainNavbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.1);
    padding: 8px 0;
}

.landing-page #mainNavbar.scrolled .brand-text { color: var(--dark); }

.landing-page #mainNavbar.scrolled .nav-link {
    color: var(--dark) !important;
}

.landing-page #mainNavbar.scrolled .btn-outline-light {
    color: var(--ocean) !important;
    border-color: var(--ocean) !important;
}

.navbar-actions { display: flex; align-items: center; gap: 8px; }

.user-menu-btn {
    border-radius: 50px !important;
    padding: 6px 16px !important;
    font-size: 0.9rem;
}

.btn-tropical {
    background: linear-gradient(135deg, var(--sand), var(--coral));
    color: #fff !important;
    border: none;
    border-radius: 50px;
    padding: 8px 24px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-tropical:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244,162,97,0.4);
    color: #fff !important;
}

/* ===================== HERO SECTION ===================== */
.hero-section {
    min-height: 100vh;
    background: url('../img/hero-bg.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
/* WebP: substitui automaticamente se suportado */
@supports (background-image: url('../img/hero-bg.webp')) {
    .hero-section {
        background-image: url('../img/hero-bg.webp');
    }
}

.hero-bg-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0,36,61,0.72) 0%, rgba(0,77,128,0.55) 50%, rgba(42,157,143,0.40) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding-top: 80px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-search-box {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.2);
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.hero-search-box .form-label {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-search-box .form-control,
.hero-search-box .form-select {
    background: rgba(255,255,255,0.95);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.95rem;
}

.hero-search-box .form-control:focus,
.hero-search-box .form-select:focus {
    border-color: var(--sand);
    box-shadow: 0 0 0 3px rgba(244,162,97,0.3);
}

.btn-search-hero {
    background: linear-gradient(135deg, var(--sand), var(--coral));
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 14px 40px;
    font-weight: 700;
    font-size: 1.1rem;
    width: 100%;
    transition: var(--transition);
}

.btn-search-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(244,162,97,0.4);
    color: #fff;
}

.hero-badges {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

.hero-badge i {
    color: var(--sand);
    font-size: 1.1rem;
}

/* Wave divider */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}

.wave-divider svg { width: 100%; height: 80px; }

/* ===================== SECTIONS ===================== */
.section { padding: 80px 0; position: relative; z-index: 1; overflow: hidden; }
.section-light { background: var(--white); }
.section-gray { background: var(--bg); }
.section-ocean { background: linear-gradient(135deg, var(--ocean), var(--ocean-light)); color: #fff; }
.section-dark { background: var(--dark); color: #fff; }

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--ocean), var(--tropical));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 20px auto 0;
}

.section-ocean .section-header h2 { color: #fff; }
.section-ocean .section-header h2::after { background: linear-gradient(90deg, var(--sand), var(--coral)); }
.section-ocean .section-header p { color: rgba(255,255,255,0.85); }

/* ===================== CATEGORY CARDS ===================== */
.category-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--ocean);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0,119,182,0.1);
}

.category-card:hover::before { height: 6px; }

.category-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #fff;
    background: linear-gradient(135deg, var(--ocean), var(--ocean-light));
}

.category-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.category-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* ===================== PRODUCT CARDS ===================== */
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.product-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-card-img img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    backdrop-filter: blur(10px);
}

.product-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-category {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ocean);
    margin-bottom: 8px;
}

.product-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.product-card-location {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.product-card-location i { color: var(--coral); margin-right: 4px; }

.product-card-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.product-feature {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-feature i { color: var(--tropical); }

.product-card-footer {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-size: 0.8rem;
    color: var(--text-light);
}

.product-price strong {
    font-size: 1.4rem;
    color: var(--ocean);
    display: block;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    color: var(--sand);
}

.product-rating span { color: var(--text-light); }

.btn-reserve {
    background: var(--ocean);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px 24px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-reserve:hover {
    background: var(--ocean-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* ===================== TESTIMONIALS ===================== */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--ocean-light);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-style: italic;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
    padding-top: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ocean), var(--tropical));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-info h5 {
    font-size: 0.95rem;
    margin: 0;
}

.testimonial-info small {
    color: var(--text-light);
}

.testimonial-stars {
    color: var(--sand);
    margin-bottom: 10px;
}

/* ===================== CTA SECTION ===================== */
.cta-section {
    background: linear-gradient(135deg, var(--ocean-dark), var(--ocean), var(--tropical));
    padding: 80px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.cta-section h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
}

.btn-cta {
    background: linear-gradient(135deg, var(--sand), var(--coral));
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 16px 50px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: var(--transition);
    display: inline-block;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(244,162,97,0.5);
    color: #fff;
}

/* ===================== FOOTER ===================== */
/* ===================== FOOTER ===================== */
.site-footer {
    background: #0f1b2d;
    color: rgba(255,255,255,0.65);
}

.footer-inner {
    padding: 40px 0 32px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Layout de duas colunas desktop */
.footer-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

/* Coluna esquerda */
.footer-col-brand {
    flex: 0 0 auto;
    max-width: 340px;
}

.footer-logo-wrap {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 12px;
}

.footer-logo-img {
    height: 64px;
    max-height: 64px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.18)) drop-shadow(0 2px 16px rgba(244, 162, 97, 0.5));
}

.footer-logo-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
}

.footer-logo-icon { font-size: 1.5rem; }

.footer-desc {
    color: rgba(255,255,255,0.62);
    font-size: 0.84rem;
    line-height: 1.65;
    margin: 0 0 16px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--sand);
    color: #fff;
    transform: translateY(-2px);
}

/* Coluna direita: contato */
.footer-col-contact {
    flex: 0 0 auto;
}

.footer-contact-title {
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--ocean);
    display: inline-block;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.84rem;
    color: rgba(255,255,255,0.68);
    margin-bottom: 10px;
}

.footer-contact-list li i {
    color: var(--ocean-light);
    font-size: 0.8rem;
    width: 14px;
    text-align: center;
    flex-shrink: 0;
}

/* Rodapé inferior */
.footer-bottom {
    padding: 14px 0;
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.76rem;
    color: rgba(255,255,255,0.48);
}

.footer-badges {
    display: flex;
    gap: 16px;
}

.footer-badges span {
    font-size: 0.73rem;
    color: rgba(255,255,255,0.42);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Footer mobile: empilha */
@media (max-width: 767px) {
    .footer-row { flex-direction: column; gap: 28px; align-items: center; text-align: center; }
    .footer-col-brand { max-width: 100%; }
    .footer-social { justify-content: center; }
    .footer-col-contact { text-align: left; }
    .footer-bottom .container { flex-direction: column; text-align: center; }
    .footer-badges { justify-content: center; }
}

/* ===================== FLASH ALERTS ===================== */
.flash-alert {
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
    min-width: 300px;
    max-width: 600px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateX(-50%) translateY(-20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ===================== AUTH PAGES ===================== */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--ocean), var(--ocean-light), var(--tropical));
    padding: 100px 0 40px;
}

.auth-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
}

.auth-header {
    background: linear-gradient(135deg, var(--ocean), var(--ocean-light));
    padding: 30px;
    text-align: center;
    color: #fff;
}

.auth-header h2 { color: #fff; font-size: 1.5rem; margin: 10px 0 5px; }
.auth-header p { opacity: 0.9; font-size: 0.9rem; }

.auth-body { padding: 30px; }

.form-floating label { color: var(--text-light); }
.form-floating .form-control {
    border-radius: var(--radius-sm);
    border: 2px solid #e0e0e0;
    padding: 16px;
}

.form-floating .form-control:focus {
    border-color: var(--ocean);
    box-shadow: 0 0 0 3px rgba(0,119,182,0.15);
}

.btn-primary-ocean {
    background: linear-gradient(135deg, var(--ocean), var(--ocean-light));
    border: none;
    border-radius: var(--radius-sm);
    padding: 14px;
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    width: 100%;
    transition: var(--transition);
}

.btn-primary-ocean:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,119,182,0.3);
    color: #fff;
}

/* ===================== CATALOG PAGE ===================== */
.catalog-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, rgba(0,36,61,0.7), rgba(0,119,182,0.5)),
                url('../img/catalog-bg.jpg') center center / cover no-repeat;
    color: #fff;
    text-align: center;
}
/* WebP: substitui automaticamente se suportado */
@supports (background-image: url('../img/catalog-bg.webp')) {
    .catalog-header {
        background-image: linear-gradient(135deg, rgba(0,36,61,0.7), rgba(0,119,182,0.5)),
                          url('../img/catalog-bg.webp');
    }
}

.catalog-header h1 { color: #fff; font-size: 2.5rem; font-weight: 800; }
.catalog-header p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom:0; }

.catalog-container {
    margin-top: -35px;
    position: relative;
    z-index: 10;
    padding-bottom: 60px;
}

.filter-bar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.filter-bar-search {
    padding: 20px 24px;
    background: #fff;
}

.filter-search-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
}

.filter-date-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-date-arrow {
    color: var(--ocean-light);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.filter-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.filter-input-wrap > i {
    position: absolute;
    left: 12px;
    color: var(--ocean);
    font-size: 0.85rem;
    z-index: 2;
    pointer-events: none;
}

.filter-input-wrap .form-control {
    padding-left: 36px;
    border: 2px solid #e8eef3;
    border-radius: var(--radius-sm);
    height: 44px;
    font-size: 0.9rem;
    transition: var(--transition);
    background: #f8fafc;
}

.filter-input-wrap .form-control:focus {
    border-color: var(--ocean);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0,119,182,0.1);
}

.filter-date-group .filter-input-wrap .form-control {
    width: 140px;
}

.filter-text-group {
    min-width: 0;
}

.filter-text-group .form-control {
    width: 100%;
}

.filter-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.filter-actions .btn-ocean {
    height: 44px;
    padding: 0 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    white-space: nowrap;
}

.filter-actions .btn-outline-secondary {
    height: 44px;
    width: 44px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.filter-bar-cats {
    padding: 14px 24px;
    background: #f8fafc;
    border-top: 1px solid #edf2f7;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #4a5568;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.filter-chip:hover {
    border-color: var(--chip-color, var(--ocean));
    color: var(--chip-color, var(--ocean));
    background: #fff;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.filter-chip.active {
    background: var(--chip-color, var(--ocean));
    border-color: var(--chip-color, var(--ocean));
    color: #fff;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
}

.filter-chip i {
    font-size: 0.8rem;
}

.filter-info {
    margin-top: 16px;
    padding: 10px 16px;
    background: rgba(0,119,182,0.06);
    border-left: 3px solid var(--ocean);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.88rem;
    color: #4a5568;
}

/* ---- Responsive catalog filters ---- */
@media (max-width: 991px) {
    .filter-search-grid {
        grid-template-columns: 1fr;
    }
    .filter-date-group {
        width: 100%;
    }
    .filter-date-group .filter-input-wrap {
        flex: 1;
    }
    .filter-date-group .filter-input-wrap .form-control {
        width: 100%;
    }
    .filter-actions {
        width: 100%;
    }
    .filter-actions .btn-ocean {
        flex: 1;
    }
}

@media (max-width: 575px) {
    .catalog-header { padding: 100px 0 50px; }
    .catalog-header h1 { font-size: 1.8rem; }
    .filter-bar-search { padding: 16px; }
    .filter-bar-cats { padding: 12px 16px; }
    .filter-date-group { flex-wrap: wrap; }
    .filter-date-arrow { display: none; }
    .filter-date-group .filter-input-wrap { flex: 1 1 45%; min-width: 120px; }
    .filter-chip { padding: 6px 12px; font-size: 0.8rem; }
}

/* ===================== PRODUCT DETAIL - AIRBNB STYLE ===================== */
.airbnb-detail {
    padding-top: 105px;
    padding-bottom: 60px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Header */
.airbnb-header { margin-bottom: 20px; }
.airbnb-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 6px;
    line-height: 1.3;
}
.airbnb-subtitle {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 0.9rem;
    color: #555;
}
.airbnb-dot { color: #bbb; }
.airbnb-rating { font-weight: 600; color: #222; }
.airbnb-rating i { color: #e31c5f; font-size: 0.8rem; }
.airbnb-rating-count { font-weight: 400; color: #717171; }
.airbnb-location i, .airbnb-category i { margin-right: 4px; color: #e31c5f; }
.airbnb-header-actions {
    margin-top: 8px;
}
.airbnb-action-btn {
    background: none;
    border: none;
    font-size: 0.88rem;
    font-weight: 500;
    color: #222;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 8px;
    transition: background 0.2s;
    text-decoration: underline;
}
.airbnb-action-btn:hover { background: #f7f7f7; }

/* Gallery Grid (Airbnb 5-photo layout) */
.airbnb-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    margin-bottom: 40px;
    aspect-ratio: 2 / 1;
}
.airbnb-gallery--single { grid-template-columns: 1fr; }
.airbnb-gallery-main,
.airbnb-gallery-cell {
    position: relative;
    overflow: hidden;
}
.airbnb-gallery-main img,
.airbnb-gallery-cell img,
.airbnb-gallery-main picture,
.airbnb-gallery-cell picture {
    display: block;
    width: 100%;
    height: 100%;
}
.airbnb-gallery-main img,
.airbnb-gallery-cell img {
    object-fit: cover;
    cursor: pointer;
    transition: filter 0.2s, transform 0.3s;
}
.airbnb-gallery-main img:hover,
.airbnb-gallery-cell img:hover {
    filter: brightness(0.92);
    transform: scale(1.02);
}
.airbnb-gallery-main--full { grid-column: 1 / -1; }
.airbnb-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
}
.airbnb-gallery-grid--few {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 8px;
}
/* When only 2 images total (1 main + 1 side), make the side full height */
.airbnb-gallery-grid--few .airbnb-gallery-cell:only-child {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
}
.airbnb-gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.airbnb-gallery-placeholder i { font-size: 5rem; color: rgba(255,255,255,0.7); }
.airbnb-gallery-showmore {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #fff;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.12);
}
.airbnb-gallery-showmore:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

/* Content layout */
.airbnb-content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 80px;
    align-items: start;
}

/* Main column */
.airbnb-main { min-width: 0; }
.airbnb-divider {
    border: none;
    border-top: 1px solid #ebebeb;
    margin: 32px 0;
}
.airbnb-section { margin-bottom: 8px; }
.airbnb-section-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
}

/* Host bar */
.airbnb-host-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}
.airbnb-host-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 6px;
}
.airbnb-host-highlights {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    color: #717171;
    flex-wrap: wrap;
}
.airbnb-host-highlights i { margin-right: 3px; }
.airbnb-avatar-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
}

/* Highlights */
.airbnb-highlights { padding: 8px 0; }
.airbnb-highlight-item {
    display: flex;
    gap: 16px;
    padding: 14px 0;
}
.airbnb-highlight-icon {
    width: 32px;
    font-size: 1.3rem;
    color: #222;
    flex-shrink: 0;
    padding-top: 2px;
}
.airbnb-highlight-item strong {
    display: block;
    font-size: 0.95rem;
    color: #222;
}
.airbnb-highlight-item p {
    margin: 2px 0 0;
    font-size: 0.85rem;
    color: #717171;
}

/* Description */
.airbnb-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #484848;
}
.airbnb-description--collapsed {
    max-height: 120px;
    overflow: hidden;
    position: relative;
}
.airbnb-description--collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(transparent, #fff);
}
.airbnb-showmore-link {
    background: none;
    border: none;
    color: #222;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    padding: 8px 0;
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.airbnb-showmore-link:hover { color: #000; }

/* Sleep cards */
.airbnb-sleep-cards {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
}
.airbnb-sleep-card {
    min-width: 180px;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    padding: 24px;
    text-align: left;
}
.airbnb-sleep-card i {
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 12px;
    display: block;
}
.airbnb-sleep-card strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.airbnb-sleep-card span {
    font-size: 0.85rem;
    color: #717171;
}

/* Amenities */
.airbnb-amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.airbnb-amenity-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 0.95rem;
    color: #484848;
}
.airbnb-amenity-item i {
    font-size: 1.2rem;
    width: 28px;
    color: #222;
    flex-shrink: 0;
    text-align: center;
}
.airbnb-amenity-hidden { display: none; }
.airbnb-showmore-btn {
    margin-top: 16px;
    background: #fff;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}
.airbnb-showmore-btn:hover { background: #f7f7f7; }

/* Calendar wrap */
.airbnb-calendar-wrap {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #ebebeb;
    padding: 20px;
}

/* ===== BOOKING CARD (SIDEBAR) ===== */
.airbnb-sidebar { position: relative; }
.airbnb-booking-card {
    border: 1px solid #ebebeb;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    position: sticky;
    top: 90px;
    background: #fff;
}
.airbnb-booking-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 20px;
}
.airbnb-price-amount {
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
}
.airbnb-price-period {
    font-size: 0.95rem;
    color: #717171;
}
.airbnb-booking-rating {
    margin-left: auto;
    font-size: 0.85rem;
    font-weight: 600;
    color: #222;
}
.airbnb-booking-rating i { color: #e31c5f; font-size: 0.75rem; }
.airbnb-booking-rating span { color: #717171; font-weight: 400; }
.airbnb-weekend-price {
    background: #f0f7ff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #484848;
    margin-bottom: 16px;
}
.airbnb-weekend-price i { color: #f4a261; margin-right: 4px; }

/* Date picker */
.airbnb-date-picker {
    display: flex;
    border: 1px solid #b0b0b0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0;
}
.airbnb-date-field {
    flex: 1;
    padding: 10px 12px;
    position: relative;
}
.airbnb-date-field--left { border-right: 1px solid #b0b0b0; }
.airbnb-date-field--full { flex: 1; }
.airbnb-date-field label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
}
.airbnb-date-field .form-control {
    border: none;
    padding: 0;
    font-size: 0.88rem;
    color: #717171;
    background: transparent;
    height: auto;
    box-shadow: none !important;
}
.airbnb-date-field .form-control:focus {
    color: #222;
}

/* ===== FLATPICKR CUSTOM THEME ===== */
.flatpickr-calendar {
    border-radius: 16px !important;
    box-shadow: 0 8px 28px rgba(0,0,0,0.18) !important;
    border: none !important;
    padding: 12px !important;
    font-family: inherit !important;
    width: 326px !important;
    overflow: visible !important;
}
.flatpickr-innerContainer,
.flatpickr-rContainer,
.flatpickr-days,
.dayContainer {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
}
.flatpickr-months {
    padding: 4px 0 8px !important;
}
.flatpickr-months .flatpickr-month {
    height: 36px !important;
}
.flatpickr-current-month {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #222 !important;
}
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    font-weight: 600 !important;
    font-size: 1rem !important;
}
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    padding: 6px 10px !important;
    top: 8px !important;
}
.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
    width: 12px !important;
    height: 12px !important;
}
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
    color: #e31c5f !important;
}
.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
    fill: #e31c5f !important;
}
span.flatpickr-weekday {
    color: #717171 !important;
    font-weight: 600 !important;
    font-size: 0.75rem !important;
    text-transform: uppercase;
}
.flatpickr-day {
    border-radius: 50% !important;
    font-size: 0.88rem !important;
    font-weight: 500 !important;
    color: #222 !important;
    height: 36px !important;
    line-height: 36px !important;
    max-width: 36px !important;
    margin: 2px !important;
    transition: background 0.15s, color 0.15s !important;
}
.flatpickr-day:hover {
    background: #f0f0f0 !important;
    border-color: transparent !important;
}
.flatpickr-day.today {
    border: 2px solid #e31c5f !important;
    background: transparent !important;
    color: #e31c5f !important;
    font-weight: 700 !important;
}
.flatpickr-day.today:hover {
    background: #fce4ec !important;
}
.flatpickr-day.selected,
.flatpickr-day.selected:hover {
    background: #e31c5f !important;
    border-color: #e31c5f !important;
    color: #fff !important;
    font-weight: 700 !important;
}
.flatpickr-day.flatpickr-disabled {
    color: #ccc !important;
    text-decoration: none !important;
}
/* Datas bloqueadas com X vermelho */
.flatpickr-day.flatpickr-disabled-x {
    position: relative !important;
    color: transparent !important;
    pointer-events: none !important;
    background: #fff5f5 !important;
    border-color: transparent !important;
}
.flatpickr-day.flatpickr-disabled-x .fp-day-num {
    color: #e0e0e0;
    font-size: 0.82rem;
    position: relative;
    z-index: 1;
}
.flatpickr-day.flatpickr-disabled-x .fp-day-x {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #e53935;
    font-size: 1.1rem;
    font-weight: 700;
    z-index: 2;
    line-height: 1;
    opacity: 0.8;
}
/* Dias de outros meses */
.flatpickr-day.prevMonthDay {
    color: #ddd !important;
    opacity: 0.4 !important;
    pointer-events: none !important;
}
.flatpickr-day.nextMonthDay {
    color: #888 !important;
    opacity: 0.75 !important;
    background: transparent !important;
}
.flatpickr-day.nextMonthDay:hover {
    background: #f0f0f0 !important;
    color: #222 !important;
    opacity: 1 !important;
}

/* Guests picker */
.airbnb-guests-picker {
    position: relative;
    margin-bottom: 16px;
}
.airbnb-guests-trigger {
    border: 1px solid #b0b0b0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 10px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.2s;
}
.airbnb-guests-trigger:hover { background: #f7f7f7; }
.airbnb-guests-trigger label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    margin-right: auto;
    pointer-events: none;
}
.airbnb-guests-trigger span {
    font-size: 0.88rem;
    color: #222;
    margin-right: 8px;
}
.airbnb-guests-trigger i {
    font-size: 0.7rem;
    color: #222;
    margin-left: auto;
}
.airbnb-guests-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    padding: 16px 20px;
    z-index: 100;
    margin-top: 4px;
}
.airbnb-guests-dropdown.open { display: block; }
.airbnb-guest-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #f5f5f5;
}
.airbnb-guest-row:last-child { border-bottom: none; }
.airbnb-guest-type strong {
    display: block;
    font-size: 0.95rem;
    color: #222;
}
.airbnb-guest-type span {
    font-size: 0.82rem;
    color: #717171;
}
.airbnb-guest-counter {
    display: flex;
    align-items: center;
    gap: 12px;
}
.airbnb-counter-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #b0b0b0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.7rem;
    color: #717171;
    transition: all 0.2s;
}
.airbnb-counter-btn:hover:not(:disabled) {
    border-color: #222;
    color: #222;
}
.airbnb-counter-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.airbnb-guest-counter input {
    width: 32px;
    text-align: center;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: #222;
    background: transparent;
}
.airbnb-guest-blocked {
    gap: 8px;
    font-size: 0.85rem;
    color: #c13515;
    justify-content: flex-start;
}
.airbnb-guest-capacity { justify-content: center; }
.airbnb-guest-capacity small { color: #717171; }
.airbnb-guests-close {
    width: 100%;
    background: none;
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    color: #222;
    text-decoration: underline;
    cursor: pointer;
    padding: 8px;
    text-align: right;
}

/* Price breakdown */
.airbnb-price-breakdown { margin-bottom: 16px; }
.airbnb-price-line {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #484848;
}
.airbnb-price-line-label { text-decoration: underline; }
.airbnb-price-total {
    display: flex;
    justify-content: space-between;
    padding: 16px 0 0;
    border-top: 1px solid #ebebeb;
    font-weight: 600;
    font-size: 1rem;
    color: #222;
}

/* Reserve button */
.airbnb-reserve-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(to right, #e31c5f, #d70466);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.airbnb-reserve-btn:hover {
    background: linear-gradient(to right, #d70466, #bd1e59);
    transform: scale(1.01);
}
.airbnb-no-charge {
    text-align: center;
    font-size: 0.85rem;
    color: #717171;
    margin: 12px 0 0;
}
.airbnb-booking-footer {
    margin-top: 16px;
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid #ebebeb;
}
.airbnb-whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #25d366;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: underline;
}
.airbnb-whatsapp-link:hover { color: #128c7e; }

/* Reviews */
.airbnb-reviews-section .airbnb-section-title i { color: #e31c5f; }
.airbnb-reviews-summary { margin-bottom: 8px; }
.airbnb-reviews-big-star { font-size: 1.3rem; font-weight: 700; color: #222; }
.airbnb-reviews-big-star i { font-size: 1.1rem; }
#btnLerAvaliacoes { border-radius: 8px; font-weight: 500; }
.airbnb-reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 48px;
    margin-top: 20px;
}
.airbnb-review-card { padding: 0; }
.airbnb-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}
.airbnb-review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #222, #484848);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}
.airbnb-review-meta strong {
    display: block;
    font-size: 0.95rem;
    color: #222;
}
.airbnb-review-meta span {
    font-size: 0.82rem;
    color: #717171;
}
.airbnb-review-stars {
    color: #e31c5f;
    font-size: 0.7rem;
    margin-bottom: 8px;
}
.airbnb-review-stars .text-muted { color: #ddd !important; }
.airbnb-review-text {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #484848;
    margin: 0;
}

/* Rules */
.airbnb-rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}
.airbnb-rules-col h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
}
.airbnb-rules-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.airbnb-rules-list li {
    padding: 8px 0;
    font-size: 0.92rem;
    color: #484848;
    display: flex;
    align-items: center;
    gap: 10px;
}
.airbnb-rules-list li i {
    color: #222;
    width: 18px;
    text-align: center;
}
.airbnb-rules-text {
    font-size: 0.92rem;
    color: #484848;
    line-height: 1.6;
}

/* Related cards */
.airbnb-related-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
}
.airbnb-related-card:hover { transform: translateY(-4px); }
.airbnb-related-img {
    border-radius: 12px;
    overflow: hidden;
    height: 200px;
    margin-bottom: 10px;
}
.airbnb-related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.airbnb-related-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.airbnb-related-placeholder i { font-size: 2.5rem; color: rgba(255,255,255,0.7); }
.airbnb-related-body h4 {
    font-size: 0.95rem;
    font-weight: 500;
    color: #222;
    margin: 0 0 4px;
}
.airbnb-related-price {
    font-size: 0.9rem;
    color: #717171;
    margin: 0;
}
.airbnb-related-price strong { color: #222; }

/* ===== LIGHTBOX ===== */
.airbnb-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.airbnb-lightbox-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
}
.airbnb-lightbox-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.airbnb-lightbox-close:hover { background: rgba(255,255,255,0.15); }
.airbnb-lightbox-img {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 85vw;
    max-height: 75vh;
}
.airbnb-lightbox-img img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 4px;
}
.airbnb-lightbox-prev, .airbnb-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    color: #222;
    transition: all 0.2s;
    z-index: 10;
}
.airbnb-lightbox-prev { left: 20px; }
.airbnb-lightbox-next { right: 20px; }
.airbnb-lightbox-prev:hover, .airbnb-lightbox-next:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.08);
}
.airbnb-lightbox-thumbs {
    display: flex;
    gap: 6px;
    padding: 16px;
    overflow-x: auto;
    max-width: 90vw;
}
.airbnb-lightbox-thumbs img {
    width: 60px;
    height: 42px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s, border 0.2s;
    border: 2px solid transparent;
}
.airbnb-lightbox-thumbs img.active,
.airbnb-lightbox-thumbs img:hover {
    opacity: 1;
    border-color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .airbnb-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .airbnb-booking-card {
        position: static;
        box-shadow: var(--shadow);
    }
    .airbnb-reviews-grid {
        grid-template-columns: 1fr;
    }
    .airbnb-gallery {
        aspect-ratio: 16 / 9;
    }
    .airbnb-gallery-main { min-height: 0; }
}

@media (max-width: 576px) {
    .airbnb-detail { padding-top: 75px; }
    .airbnb-title { font-size: 1.35rem; }
    .airbnb-gallery {
        grid-template-columns: 1fr;
        aspect-ratio: 4 / 3;
        border-radius: 0;
        margin-left: -12px;
        margin-right: -12px;
    }
    .airbnb-gallery-grid { display: none; }
    .airbnb-gallery-main { min-height: 0; }
    .airbnb-host-title { font-size: 1.1rem; }
    .airbnb-amenities-grid { grid-template-columns: 1fr; }
    .airbnb-rules-grid { grid-template-columns: 1fr; }
    .airbnb-sleep-card { min-width: 150px; }
    .airbnb-lightbox-prev, .airbnb-lightbox-next { display: none; }
}

/* ===================== COMBO DETAIL — PRODUCT CARDS ===================== */

/* Lista de produtos inclusos */
.combo-produtos-lista {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.combo-prod-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    padding: 12px 16px;
    transition: box-shadow 0.2s, transform 0.15s;
}

.combo-prod-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}

/* Thumbnail da imagem do produto */
.combo-prod-item > picture,
.combo-prod-item > img {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.combo-prod-item > picture {
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.combo-prod-item > picture img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    display: block;
}

/* Ícone fallback quando não há imagem */
.combo-prod-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--ocean), var(--tropical));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.combo-prod-icon i {
    font-size: 1.6rem;
    color: #fff;
}

/* Info do produto */
.combo-prod-info {
    flex: 1;
    min-width: 0;
}

.combo-prod-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ocean);
    background: rgba(0,119,182,0.08);
    padding: 2px 10px;
    border-radius: 20px;
    margin-bottom: 4px;
}

.combo-prod-nome {
    font-size: 0.95rem;
    font-weight: 600;
    color: #222;
    line-height: 1.3;
}

.combo-prod-qtd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ocean);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    margin-right: 4px;
    vertical-align: middle;
}

.combo-prod-desc {
    font-size: 0.82rem;
    color: #717171;
    margin-top: 2px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Link externo */
.combo-prod-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    color: #717171;
    background: #f7f7f7;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    flex-shrink: 0;
}

.combo-prod-link:hover {
    background: var(--ocean);
    color: #fff;
}

.combo-prod-link i {
    font-size: 0.78rem;
}

/* Cortesias grid */
.combo-cortesias-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.combo-cortesia-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 0.92rem;
    color: #484848;
}

.combo-cortesia-item i {
    color: #2a9d8f;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Aviso de roteiro */
.combo-roteiro-aviso {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0,119,182,0.04), rgba(42,157,143,0.04));
    border: 1px solid rgba(0,119,182,0.12);
    border-radius: 12px;
}

.combo-roteiro-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ocean), var(--tropical));
    display: flex;
    align-items: center;
    justify-content: center;
}

.combo-roteiro-icon i {
    color: #fff;
    font-size: 1.1rem;
}

.combo-roteiro-titulo {
    font-weight: 600;
    font-size: 0.95rem;
    color: #222;
    margin-bottom: 4px;
}

.combo-roteiro-texto {
    font-size: 0.85rem;
    color: #717171;
    line-height: 1.5;
}

/* Preço big combo */
.airbnb-price-big {
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
}

.airbnb-price-unit {
    font-size: 0.92rem;
    color: #717171;
}

/* Combo responsive */
@media (max-width: 576px) {
    .combo-cortesias-grid {
        grid-template-columns: 1fr;
    }
    .combo-prod-item {
        gap: 12px;
        padding: 10px 12px;
    }
    .combo-prod-item > picture,
    .combo-prod-item > img,
    .combo-prod-item > picture img {
        width: 64px;
        height: 64px;
        min-width: 64px;
    }
    .combo-prod-icon {
        width: 64px;
        height: 64px;
        min-width: 64px;
    }
    .combo-roteiro-aviso {
        flex-direction: column;
        gap: 12px;
    }
}

/* ===================== PAINEL DO CLIENTE — AIRBNB STYLE ===================== */

.painel-wrapper {
    background: #f7f7f7;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 60px;
}

/* ---- Sidebar ---- */
.painel-sidebar {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 16px;
    padding: 24px 0 16px;
    position: sticky;
    top: 110px;
}

.painel-sidebar-profile {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 20px 20px;
}

.painel-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ocean), var(--tropical));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
    letter-spacing: 1px;
}

.painel-profile-info {
    min-width: 0;
    overflow: hidden;
}

.painel-profile-info strong {
    display: block;
    font-size: 0.95rem;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.painel-profile-info span {
    font-size: 0.78rem;
    color: #717171;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.painel-sidebar-hr {
    border: none;
    border-top: 1px solid #ebebeb;
    margin: 0 0 8px;
}

.painel-sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 0 8px;
}

.painel-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 12px;
    border-radius: 10px;
    color: #484848;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
    text-decoration: none;
    position: relative;
}

.painel-nav-link i {
    width: 20px;
    text-align: center;
    font-size: 0.95rem;
    color: #717171;
    flex-shrink: 0;
    transition: color 0.15s;
}

.painel-nav-link:hover {
    background: #f7f7f7;
    color: #222;
    text-decoration: none;
}

.painel-nav-link:hover i { color: #222; }

.painel-nav-link.active {
    background: #f7f7f7;
    color: #222;
    font-weight: 600;
}

.painel-nav-link.active i { color: var(--ocean); }

.painel-nav-link--danger { color: #e31c5f; }
.painel-nav-link--danger i { color: #e31c5f; }
.painel-nav-link--danger:hover { background: #fff5f7; color: #c0154e; }

.painel-nav-link--admin { color: var(--ocean); }
.painel-nav-link--admin i { color: var(--ocean); }

.painel-nav-badge {
    margin-left: auto;
    background: #e31c5f;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    border-radius: 50px;
    padding: 2px 7px;
    line-height: 1.4;
}

.painel-sidebar-cta {
    margin: 12px 16px 0;
}

.painel-sidebar-cta a {
    display: block;
    text-align: center;
    padding: 10px;
    border: 1.5px solid #ebebeb;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ocean);
    transition: border-color 0.15s, background 0.15s;
}

.painel-sidebar-cta a:hover {
    border-color: var(--ocean);
    background: rgba(0,119,182,0.04);
    text-decoration: none;
}

/* ---- Greeting ---- */
.painel-greeting {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.painel-greeting h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 4px;
}

.painel-greeting p {
    color: #717171;
    font-size: 0.9rem;
    margin: 0;
}

/* ---- Stats strip ---- */
.painel-stats-strip {
    display: flex;
    align-items: center;
    gap: 0;
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 14px;
    padding: 20px 28px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.painel-stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.painel-stat-num {
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
}

.painel-stat-label {
    font-size: 0.78rem;
    color: #717171;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.painel-stat-divider {
    width: 1px;
    height: 36px;
    background: #ebebeb;
    flex-shrink: 0;
}

/* ---- Sections ---- */
.painel-section {
    margin-bottom: 36px;
}

.painel-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.painel-section-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #222;
    margin: 0;
}

.painel-section-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: #222;
    text-decoration: underline;
}

.painel-section-link:hover { color: var(--ocean); }

/* ---- Trip cards (grid) ---- */
.painel-trips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.painel-trip-card {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}

.painel-trip-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.painel-trip-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.painel-trip-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
}

.painel-trip-icon-fallback {
    font-size: 2.5rem;
    color: rgba(255,255,255,0.9);
    position: relative;
    z-index: 1;
}

.painel-trip-status-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
}

.painel-trip-body {
    padding: 16px;
}

.painel-trip-category {
    font-size: 0.75rem;
    color: #717171;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.painel-trip-name {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.3;
}

.painel-trip-dates {
    font-size: 0.82rem;
    color: #484848;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.painel-trip-dates i { color: #717171; }

.painel-trip-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #f5f5f5;
}

.painel-trip-code {
    font-size: 0.78rem;
    color: #aaa;
    font-family: monospace;
}

.painel-trip-price {
    font-weight: 700;
    color: #222;
    font-size: 0.95rem;
}

/* ---- Trip list (reservas.php) ---- */
.painel-trip-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.painel-trip-row {
    display: flex;
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.painel-trip-row:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }

.painel-trip-row-img {
    width: 160px;
    min-height: 140px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e8f4fc;
    font-size: 2rem;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    cursor: pointer;
    transition: filter 0.2s;
}
a.painel-trip-row-img:hover { filter: brightness(0.9); }

.painel-trip-row-body {
    flex: 1;
    padding: 18px 20px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.painel-trip-row-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.painel-trip-row-category {
    font-size: 0.75rem;
    color: #717171;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.painel-trip-row-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: #222;
    margin: 0;
}

.painel-trip-row-dates {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.painel-trip-row-date {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.painel-trip-row-date span {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #717171;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.painel-trip-row-date strong {
    font-size: 0.9rem;
    color: #222;
}

.painel-trip-row-date--price strong {
    color: var(--ocean);
}

.painel-trip-row-arrow {
    color: #aaa;
    font-size: 0.75rem;
    padding-top: 14px;
}

.painel-trip-unavailable {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    border: 1px solid #f3b7bf;
    background: #fff1f2;
    color: #9f1239;
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.35;
}

.painel-trip-unavailable i {
    margin-top: 2px;
}

.painel-trip-row-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
    border-top: 1px solid #f5f5f5;
    flex-wrap: wrap;
    gap: 8px;
}

.painel-trip-row-code {
    font-size: 0.78rem;
    color: #aaa;
    font-family: monospace;
}

.painel-trip-row-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* ---- Buttons ---- */
.btn-painel-primary {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    background: #222;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
    cursor: pointer;
}

.btn-painel-primary:hover {
    background: #111;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

.btn-painel-ghost {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    background: none;
    color: #484848;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    transition: border-color 0.15s, color 0.15s;
    text-decoration: none;
    cursor: pointer;
}

.btn-painel-ghost:hover {
    border-color: #222;
    color: #222;
    text-decoration: none;
}

.btn-painel-ghost--danger {
    color: #e31c5f;
    border-color: #f5c0cc;
}

.btn-painel-ghost--danger:hover {
    border-color: #e31c5f;
    color: #c0154e;
}

/* ---- Filter chips ---- */
.painel-chips-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    gap: 10px;
}

.painel-chips-track {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-behavior: smooth;
    flex: 1;
    /* hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: 2px;
}

.painel-chips-track::-webkit-scrollbar { display: none; }

.painel-chips-arrow {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #d0d0d0;
    background: #fff;
    color: #484848;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s, box-shadow 0.15s;
    animation: chipsBtnPulse 1.8s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(0,119,182,0.4);
}

.painel-chips-arrow:hover {
    border-color: var(--ocean);
    color: var(--ocean);
    animation: none;
    box-shadow: 0 2px 8px rgba(0,119,182,0.2);
}

@keyframes chipsBtnPulse {
    0%   { box-shadow: 0 0 0 0 rgba(0,119,182,0.35); }
    60%  { box-shadow: 0 0 0 7px rgba(0,119,182,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,119,182,0); }
}

.painel-filter-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.painel-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #484848;
    background: #fff;
    border: 1.5px solid #d0d0d0;
    text-decoration: none;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.painel-chip:hover {
    border-color: #222;
    color: #222;
    text-decoration: none;
}

.painel-chip.active {
    background: #222;
    border-color: #222;
    color: #fff;
}

/* ---- Cards genéricos ---- */
.painel-card {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 14px;
    overflow: hidden;
}

.painel-card-header {
    padding: 20px 24px 16px;
    border-bottom: 1px solid #f5f5f5;
}

.painel-card-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    margin: 0;
    display: flex;
    align-items: center;
}

.painel-card-header h3 i { color: var(--ocean); }

.painel-card > form,
.painel-card > .table-responsive,
.painel-card > .painel-message-list {
    padding: 20px 24px;
}

/* ---- Activity ---- */
.painel-activity-list {
    display: flex;
    flex-direction: column;
}

.painel-activity-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f5f5f5;
}

.painel-activity-item:last-child { border-bottom: none; }

.painel-activity-item.unread .painel-activity-text strong::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e31c5f;
    margin-left: 7px;
    vertical-align: middle;
}

.painel-activity-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.painel-activity-dot--blue { background: #e8f4fb; color: var(--ocean); }
.painel-activity-dot--green { background: #e6f7f4; color: var(--tropical); }
.painel-activity-dot--amber { background: #fef6e8; color: #d97706; }

.painel-activity-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.painel-activity-text strong { font-size: 0.88rem; color: #222; }
.painel-activity-text span { font-size: 0.82rem; color: #484848; }
.painel-activity-text time { font-size: 0.75rem; color: #aaa; }

/* ---- Empty state ---- */
.painel-empty {
    text-align: center;
    padding: 60px 24px;
}

.painel-empty-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
    line-height: 1;
}

.painel-empty h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
}

.painel-empty p {
    font-size: 0.9rem;
    color: #717171;
    margin-bottom: 20px;
}

/* ---- Messages ---- */
.painel-message-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.painel-message-item {
    display: flex;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid #f5f5f5;
}

.painel-message-item:last-child { border-bottom: none; }

.painel-message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ocean), var(--tropical));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.painel-message-body {
    flex: 1;
    min-width: 0;
}

.painel-message-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.painel-message-meta strong { font-size: 0.9rem; color: #222; }
.painel-message-meta time { font-size: 0.75rem; color: #aaa; }

.painel-message-subject {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ocean);
    margin-bottom: 4px;
}

.painel-message-body > p {
    font-size: 0.9rem;
    color: #484848;
    line-height: 1.5;
    margin: 0 0 10px;
}

.painel-message-reply {
    background: #f7f7f7;
    border-radius: 10px;
    padding: 12px 16px;
    border-left: 3px solid var(--tropical);
}

.painel-message-reply .painel-message-meta strong { color: var(--tropical); }
.painel-message-reply p { font-size: 0.88rem; color: #484848; margin: 6px 0 0; }

.painel-message-pending {
    font-size: 0.78rem;
    color: #aaa;
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
    .painel-wrapper { padding-top: 70px; }

    .painel-sidebar {
        position: static;
        border-radius: 12px;
    }

    .painel-trips-grid { grid-template-columns: 1fr; }

    .painel-trip-row { flex-direction: column; }
    .painel-trip-row-img { width: 100%; height: 160px; min-height: 0; }

    .painel-stats-strip {
        gap: 12px;
        padding: 16px 18px;
    }
    .painel-stat-divider { display: none; }

    .painel-greeting h2 { font-size: 1.4rem; }

    .painel-trip-row-dates { gap: 10px; }
    .painel-trip-row-arrow { display: none; }
}

/* ===================== RESERVA DETALHE (painel/reserva-detalhe.php) ===================== */

/* Hero */
.rd-hero {
    position: relative;
    height: 260px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--ocean), var(--tropical));
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    margin-bottom: 4px;
}
.rd-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.55) 100%);
}
.rd-hero-content {
    position: relative;
    z-index: 2;
    padding: 24px;
    flex: 1;
}
.rd-hero-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 8px;
}
.rd-hero-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.rd-hero-location {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
    margin: 0;
}
.rd-hero-status {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
}
.rd-hero-icon {
    font-size: 3.5rem;
    color: rgba(255,255,255,0.5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

/* Cards */
.rd-card {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 14px;
    overflow: hidden;
}
.rd-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 22px 14px;
    border-bottom: 1px solid #f5f5f5;
}
.rd-card-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    margin: 0;
}
.rd-card-icon {
    color: var(--ocean);
    font-size: 0.95rem;
    width: 18px;
    text-align: center;
}

/* Info grid */
.rd-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0;
    padding: 4px 0;
}
.rd-info-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 14px 22px;
    border-bottom: 1px solid #f9f9f9;
}
.rd-info-item:nth-child(odd)  { border-right: 1px solid #f9f9f9; }
.rd-info-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #aaa;
    font-weight: 600;
}
.rd-info-value {
    font-size: 0.92rem;
    color: #222;
    font-weight: 600;
}
.rd-code {
    font-family: monospace;
    font-size: 0.9rem;
    color: #484848;
}
.rd-price {
    color: var(--ocean) !important;
    font-size: 1.05rem !important;
}

/* Desc text */
.rd-desc {
    padding: 16px 22px;
    font-size: 0.9rem;
    color: #484848;
    line-height: 1.65;
    margin: 0;
}

/* Specs row */
.rd-specs-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    padding: 6px 22px 18px;
}
.rd-spec {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: #484848;
}
.rd-spec i {
    width: 18px;
    text-align: center;
    color: var(--ocean);
    font-size: 0.85rem;
}

/* Amenities */
.rd-amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
    padding: 16px 22px 20px;
}
.rd-amenity {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.87rem;
    color: #484848;
}
.rd-amenity i { color: var(--tropical); font-size: 0.8rem; }

/* Combo reservation detail */
.rd-combo-card .rd-desc {
    padding-bottom: 8px;
}
.rd-combo-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 14px;
    padding: 16px 22px 20px;
}
.rd-combo-item {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 14px;
    align-items: stretch;
    min-height: 92px;
    border: 1px solid #eceff3;
    border-radius: 12px;
    background: linear-gradient(180deg, #fff, #f8fbfc);
    overflow: hidden;
}
.rd-combo-item-media {
    position: relative;
    min-height: 92px;
    background: linear-gradient(135deg, var(--ocean), var(--tropical));
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.rd-combo-item-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.22));
}
.rd-combo-item-media i {
    position: relative;
    z-index: 1;
    font-size: 1.35rem;
}
.rd-combo-item-qty {
    position: absolute;
    z-index: 2;
    top: 8px;
    left: 8px;
    background: #fff;
    color: var(--ocean);
    border-radius: 999px;
    padding: 2px 8px;
    font-size: .72rem;
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(0,0,0,.12);
}
.rd-combo-item-body {
    min-width: 0;
    padding: 12px 12px 12px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}
.rd-combo-item-type {
    font-size: .68rem;
    line-height: 1;
    text-transform: uppercase;
    color: var(--ocean);
    font-weight: 800;
    letter-spacing: .4px;
}
.rd-combo-item-body strong {
    font-size: .95rem;
    line-height: 1.25;
    color: #1f2933;
}
.rd-combo-item-body small {
    color: #6b7280;
    font-size: .78rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.rd-combo-gifts {
    margin: 0 22px 22px;
    padding: 14px;
    border-radius: 12px;
    background: #fff8e6;
    border: 1px solid #ffe7a3;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.rd-combo-gifts-title {
    width: 100%;
    color: #7a5200;
    font-weight: 800;
    font-size: .86rem;
}
.rd-combo-gifts span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 999px;
    background: #fff;
    color: #513900;
    font-size: .82rem;
    font-weight: 700;
    border: 1px solid rgba(122,82,0,.16);
}
.rd-combo-gifts i {
    color: #d97706;
}

/* Rules list */
.rd-rules-list {
    list-style: none;
    padding: 14px 22px 18px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.rd-rules-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.88rem;
    color: #484848;
    line-height: 1.5;
}
.rd-rules-list li i {
    color: var(--ocean);
    margin-top: 3px;
    flex-shrink: 0;
}

/* Check-in / check-out */
.rd-checkinout {
    display: flex;
    gap: 0;
    padding: 16px 22px 20px;
    flex-wrap: wrap;
    gap: 12px;
}
.rd-checkinout-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex: 1;
    min-width: 130px;
}
.rd-checkinout-item > i {
    font-size: 1.3rem;
    margin-top: 2px;
}
.rd-checkinout-in > i  { color: var(--tropical); }
.rd-checkinout-out > i { color: var(--coral); }
.rd-checkinout-item div { display: flex; flex-direction: column; gap: 2px; }
.rd-checkinout-item span  { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.5px; color: #aaa; font-weight: 600; }
.rd-checkinout-item strong { font-size: 1.05rem; color: #222; font-weight: 700; }
.rd-checkinout-item small  { font-size: 0.78rem; color: #717171; }

/* Route stops */
.rd-route-stops {
    padding: 0 22px 20px;
}
.rd-route-stops h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 14px;
}
.rd-stops-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}
.rd-stops-list::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 22px;
    bottom: 22px;
    width: 2px;
    background: #ebebeb;
}
.rd-stop {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
    position: relative;
}
.rd-stop-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--ocean);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.rd-stop-info { display: flex; flex-direction: column; gap: 2px; padding-top: 4px; }
.rd-stop-info strong { font-size: 0.9rem; color: #222; }
.rd-stop-info span   { font-size: 0.82rem; color: #717171; }

/* Map link */
.rd-map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ocean);
    text-decoration: none;
    padding: 0 22px 16px;
    transition: color 0.15s;
}
.rd-map-link:hover { color: var(--ocean-light); }
.rd-map-embed { padding: 0 22px 20px; }

/* Sidebar */
.rd-sidebar { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 16px; }

/* Price card */
.rd-price-card {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 14px;
    padding: 22px;
}
.rd-price-main {
    font-size: 1.6rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
}
.rd-price-sub {
    font-size: 0.82rem;
    color: #717171;
    margin-bottom: 12px;
}
.rd-price-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 12px 0;
}
.rd-price-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    color: #484848;
    padding: 5px 0;
}
.rd-price-line--discount { color: var(--tropical); }
.rd-price-line--total {
    font-size: 1rem;
    font-weight: 700;
    color: #222;
    border-top: 1px solid #f0f0f0;
    margin-top: 6px;
    padding-top: 10px;
}

/* Action buttons */
.rd-actions { display: flex; flex-direction: column; gap: 10px; }
.rd-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px 16px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    border: 1.5px solid #d0d0d0;
    background: #fff;
    color: #484848;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s;
    text-align: center;
    width: 100%;
}
.rd-action-btn:hover {
    border-color: var(--ocean);
    color: var(--ocean);
    text-decoration: none;
}
.rd-action-btn--pay {
    border-color: var(--ocean);
    background: var(--ocean);
    color: #fff;
}
.rd-action-btn--pay:hover {
    background: var(--ocean-dark);
    border-color: var(--ocean-dark);
    color: #fff;
}
.rd-action-btn--danger {
    border-color: #f5c0cc;
    color: #e31c5f;
}
.rd-action-btn--danger:hover {
    border-color: #e31c5f;
    color: #c0154e;
}
.rd-pending-note {
    border: 1px solid #ffe08a;
    background: #fff8db;
    color: #6f5200;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: .8rem;
    line-height: 1.35;
}
.rd-pending-note strong {
    display: block;
    margin-bottom: 4px;
    font-size: .82rem;
    letter-spacing: .03em;
}
.rd-pending-note--unavailable {
    border-color: #f3b7bf;
    background: #fff1f2;
    color: #9f1239;
}
.rd-pending-note--unavailable strong {
    display: block;
    margin-bottom: 4px;
}

/* Dates card */
.rd-dates-card {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 14px;
    padding: 18px;
}
.rd-dates-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.rd-dates-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}
.rd-dates-item span   { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.5px; color: #aaa; font-weight: 600; }
.rd-dates-item strong { font-size: 0.92rem; color: #222; font-weight: 700; }
.rd-dates-item small  { font-size: 0.75rem; color: #717171; }
.rd-dates-divider { color: #ccc; font-size: 0.75rem; }

.rd-booked-at {
    font-size: 0.78rem;
    color: #aaa;
    text-align: center;
    margin: 0;
}

/* Mobile */
@media (max-width: 767px) {
    .rd-hero { height: 200px; border-radius: 12px; }
    .rd-hero-title { font-size: 1.2rem; }
    .rd-sidebar { position: static; }
    .rd-info-grid { grid-template-columns: 1fr 1fr; }
    .rd-amenities-grid { grid-template-columns: 1fr 1fr; }
    .rd-combo-items { grid-template-columns: 1fr; padding: 14px; }
    .rd-combo-item { grid-template-columns: 76px minmax(0, 1fr); }
    .rd-combo-gifts { margin: 0 14px 16px; }
    .rd-checkinout { flex-direction: column; }
}

/* ===================== CHECKOUT ===================== */


.checkout-page { padding: 100px 0 50px; }

/* Roteiro option cards */
.roteiro-option {
    cursor: pointer;
    border: 2px solid #dee2e6;
    border-radius: 12px;
    display: block;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.18s;
    position: relative;
    background: #fff;
    height: 100%;
}
.roteiro-option:hover {
    border-color: #a8cfe8;
    box-shadow: 0 3px 12px rgba(0,119,182,0.1);
}
.roteiro-option.selected {
    border-color: var(--ocean);
    border-width: 2.5px;
    box-shadow: 0 0 0 4px rgba(0,119,182,0.14), 0 6px 20px rgba(0,119,182,0.14);
    transform: translateY(-3px);
}
.roteiro-option.selected::after {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 1.15rem;
    color: var(--ocean);
    background: #fff;
    border-radius: 50%;
    line-height: 1;
    z-index: 5;
}

.btn-back-checkout {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 8px;
    border: 1.5px solid #d0d0d0;
    background: #fff;
    color: #484848;
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s, box-shadow 0.15s;
    margin-bottom: 18px;
}
.btn-back-checkout:hover {
    border-color: var(--ocean);
    color: var(--ocean);
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,119,182,0.12);
}

.checkout-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.checkout-payment-hint {
    color: #5f6f7a;
    font-size: .92rem;
    margin: 0 0 18px;
}

#paymentBrick_container,
#paymentBrickCombo_container {
    border: 1px solid rgba(0, 119, 182, .14);
    border-radius: 18px;
    padding: 10px;
    background: linear-gradient(180deg, #f7fcff 0%, #ffffff 70%);
}

.mp-pix-result {
    margin-top: 16px;
}

.mp-pix-card {
    border: 1px solid rgba(0, 119, 182, .18);
    background: radial-gradient(circle at top left, rgba(0, 168, 204, .14), transparent 34%), #ffffff;
    border-radius: 18px;
    padding: 22px;
    text-align: center;
    box-shadow: 0 14px 34px rgba(0, 48, 73, .08);
}

.mp-pix-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #e8f8f6;
    color: #0f766e;
    font-weight: 800;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 12px;
}

.mp-pix-card h5 {
    font-weight: 800;
    margin-bottom: 8px;
}

.mp-pix-card p {
    color: #59656f;
    max-width: 520px;
    margin: 0 auto 16px;
}

.mp-pix-qr {
    display: block;
    width: min(260px, 84vw);
    height: auto;
    margin: 12px auto 18px;
    padding: 12px;
    border: 1px solid #edf2f7;
    border-radius: 16px;
    background: #fff;
}

.mp-pix-label {
    display: block;
    text-align: left;
    font-weight: 800;
    color: #1f2937;
    margin: 12px 0 8px;
}

.mp-pix-code {
    width: 100%;
    min-height: 94px;
    border: 1px solid #d9e5ec;
    border-radius: 14px;
    padding: 12px;
    color: #334155;
    background: #f8fafc;
    font-size: .82rem;
    resize: vertical;
}

.mp-pix-copy,
.mp-pix-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 12px;
    padding: 0 18px;
    font-weight: 800;
    text-decoration: none;
    margin-top: 12px;
    width: 100%;
}

.mp-pix-copy {
    border: 0;
    background: var(--ocean);
    color: #fff;
}

.mp-pix-link {
    border: 1px solid #d7e8ef;
    color: var(--ocean);
    background: #fff;
}

.checkout-summary {
    background: linear-gradient(135deg, var(--ocean), var(--ocean-light));
    border-radius: var(--radius);
    padding: 30px;
    color: #fff;
}

.checkout-summary h3 { color: #fff; }

.summary-line {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 15px 0 0;
    font-size: 1.3rem;
    font-weight: 700;
}

/* ===================== COUPON CARD ===================== */
.coupon-card {
    background: #fff;
    border: 2px dashed var(--ocean-light);
    border-radius: 16px;
    padding: 22px 24px;
    position: relative;
    overflow: hidden;
    transition: border-color .2s;
}
.coupon-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 6px; height: 100%;
    background: linear-gradient(180deg, var(--ocean), var(--ocean-light));
    border-radius: 16px 0 0 16px;
}
.coupon-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
.coupon-card-icon {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, var(--ocean), var(--ocean-light));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.coupon-card-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark);
}
.coupon-card-subtitle {
    font-size: .8rem;
    color: #6b7280;
    margin-top: 2px;
}
.coupon-input-row {
    display: flex;
    gap: 10px;
}
.coupon-input {
    flex: 1;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 11px 16px;
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    background: #fafbff;
}
.coupon-input:focus {
    border-color: var(--ocean-light);
    box-shadow: 0 0 0 3px rgba(0,180,216,.12);
}
.coupon-input::placeholder {
    letter-spacing: 1px;
    color: #b0b8c8;
    font-weight: 400;
}
.coupon-btn-apply {
    background: linear-gradient(135deg, var(--ocean), var(--ocean-light));
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 11px 22px;
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    transition: opacity .2s, transform .1s;
    white-space: nowrap;
}
.coupon-btn-apply:hover { opacity: .9; }
.coupon-btn-apply:active { transform: scale(.97); }
.coupon-btn-apply:disabled { opacity: .6; cursor: not-allowed; }
.coupon-feedback {
    min-height: 22px;
    margin-top: 10px;
    font-size: .85rem;
}
.coupon-success-msg { color: #059669; font-weight: 500; }
.coupon-error-msg   { color: #dc2626; font-weight: 500; }
.coupon-applied-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border: 1.5px solid #6ee7b7;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: .88rem;
    font-weight: 600;
    color: #065f46;
    margin-top: 10px;
    gap: 12px;
}
.coupon-remove-btn {
    background: none;
    border: 1px solid #6ee7b7;
    border-radius: 6px;
    color: #065f46;
    font-size: .78rem;
    padding: 3px 10px;
    cursor: pointer;
    white-space: nowrap;
    transition: background .15s;
}
.coupon-remove-btn:hover { background: #a7f3d0; }

/* ===================== DASHBOARD / PANELS ===================== */
.dashboard-wrapper {
    background: #f5f7fa;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 40px;
    overflow-x: hidden;
}

.dashboard-wrapper > .container > .row {
    align-items: flex-start;
}

.dashboard-header {
    margin-bottom: 28px;
}

.dashboard-header h4 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.dashboard-header p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin: 4px 0 0;
}

.dashboard-sidebar {
    background: var(--white);
    border: 1px solid #e8ecf1;
    border-radius: 10px;
    padding: 0;
    position: static;
    top: auto;
    height: fit-content;
    overflow: hidden;
}

.sidebar-user {
    text-align: center;
    padding: 24px 20px 18px;
    border-bottom: 1px solid #e8ecf1;
    background: #fafbfc;
}

.sidebar-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--ocean);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 auto 10px;
    letter-spacing: 1px;
}

.sidebar-user h6 {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--dark);
}

.sidebar-user small {
    font-size: 0.78rem;
    color: var(--text-light);
}

.sidebar-nav {
    list-style: none;
    padding: 8px 0;
    margin: 0;
}

.sidebar-nav li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: #5a6778;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.88rem;
    border-left: 3px solid transparent;
}

.sidebar-nav li a:hover {
    background: #f5f7fa;
    color: var(--ocean);
    border-left-color: transparent;
}

.sidebar-nav li a.active {
    background: rgba(0,119,182,0.06);
    color: var(--ocean);
    border-left-color: var(--ocean);
    font-weight: 600;
}

.sidebar-nav li a i {
    width: 18px;
    text-align: center;
    font-size: 0.88rem;
    opacity: 0.7;
}

.sidebar-nav li a.active i { opacity: 1; }

.sidebar-nav li hr {
    margin: 6px 16px;
    border-color: #e8ecf1;
}

.dashboard-content {
    background: var(--white);
    border: 1px solid #e8ecf1;
    border-radius: 10px;
    padding: 24px;
    min-height: 200px;
}

.dashboard-content h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eef0f4;
}

.dashboard-content h5 i { color: var(--ocean); }

/* Stats Cards */
.stat-card {
    background: var(--white);
    border: 1px solid #e8ecf1;
    border-radius: 10px;
    padding: 20px;
    transition: var(--transition);
    position: relative;
}

.stat-card:hover {
    border-color: var(--ocean);
    box-shadow: 0 2px 12px rgba(0,119,182,0.08);
}

.stat-card .stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.stat-card .stat-icon.bg-ocean {
    background: rgba(0,119,182,0.1);
    color: var(--ocean);
}

.stat-card .stat-icon.bg-green {
    background: rgba(42,157,143,0.1);
    color: var(--tropical);
}

.stat-card .stat-icon.bg-amber {
    background: rgba(244,162,97,0.1);
    color: var(--sand);
}

.stat-card .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.stat-card .stat-label {
    font-size: 0.78rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Table inside dashboard */
.dashboard-content .table { font-size: 0.88rem; }
.dashboard-content .table thead th {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    font-weight: 600;
    border-bottom: 2px solid #eef0f4;
    padding: 10px 12px;
}

.dashboard-content .table tbody td {
    padding: 12px;
    vertical-align: middle;
    border-color: #f3f5f8;
}

/* Notification items in dashboard */
.notif-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 6px;
    transition: var(--transition);
}

.notif-item:hover { background: #f8f9fb; }

.notif-item.unread { background: #f5f8ff; }

.notif-dot {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.75rem;
}

.notif-dot.success { background: rgba(42,157,143,0.1); color: var(--tropical); }
.notif-dot.warning { background: rgba(244,162,97,0.1); color: var(--sand); }
.notif-dot.info { background: rgba(0,119,182,0.1); color: var(--ocean); }

.notif-item strong { font-size: 0.85rem; color: var(--dark); }
.notif-item small { font-size: 0.78rem; }

/* ===================== RESERVA CARDS ===================== */
.reservas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eef0f4;
    gap: 12px;
    flex-wrap: wrap;
}

.reservas-header h5 {
    border: none;
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
}

.reservas-filters {
    display: flex;
    gap: 6px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.reservas-filters::-webkit-scrollbar { display: none; }
.reservas-filters .btn { white-space: nowrap; font-size: 0.78rem; padding: 5px 12px; }
.reservas-filters .filtro-label {
    display: inline-block;
    white-space: nowrap;
}

.reserva-card {
    border: 1px solid #e8ecf1;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 10px;
    transition: var(--transition);
    background: #fff;
}

.reserva-card:hover {
    border-color: var(--ocean);
    box-shadow: 0 2px 8px rgba(0,119,182,0.06);
}

.reserva-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.reserva-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.reserva-info {
    flex: 1;
    min-width: 0;
}

.reserva-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.reserva-code {
    font-size: 0.78rem;
    color: var(--text-light);
}

.reserva-status { flex-shrink: 0; }

.reserva-card-details {
    display: flex;
    gap: 16px;
    padding: 10px 0;
    border-top: 1px solid #f3f5f8;
}

.reserva-detail {
    flex: 1;
}

.reserva-detail-label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 500;
    margin-bottom: 2px;
}

.reserva-detail-value {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
}

.reserva-price { color: var(--ocean) !important; }

.reserva-card-actions {
    padding-top: 10px;
    border-top: 1px solid #f3f5f8;
    text-align: right;
}

.reserva-card-actions .btn { font-size: 0.78rem; }

/* ===================== ADMIN PANEL ===================== */
/* Admin: checkbox comodidades */
.comodidade-check { cursor: pointer; transition: all .15s; font-size: .92rem; }
.comodidade-check:hover { border-color: var(--ocean) !important; background: rgba(0,119,182,.04); }
.comodidade-check input[type="checkbox"] { flex-shrink: 0; }

.admin-layout {
    display: flex;
    min-height: 100vh;
    padding-top: 0;
}

.admin-sidebar {
    width: 260px;
    background: var(--dark);
    color: #fff;
    padding: 30px 0;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    overflow-y: auto;
    z-index: 100;
    transition: var(--transition);
}

.admin-sidebar-header {
    padding: 0 20px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 15px;
}

.admin-sidebar-header h4 {
    color: #fff;
    font-size: 1rem;
    margin: 0;
}

.admin-sidebar-header small {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
}

.admin-nav { list-style: none; padding: 0; }

.admin-nav li { margin: 2px 10px; }

.admin-nav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    color: rgba(255,255,255,0.7);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
}

.admin-nav li a:hover, .admin-nav li a.active {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.admin-nav li a.active {
    background: linear-gradient(135deg, var(--ocean), var(--ocean-light));
}

.admin-nav li a i { width: 20px; text-align: center; }

.admin-nav-divider {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 15px 20px;
}

.admin-nav-label {
    padding: 10px 25px 5px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.4);
}

.admin-main {
    flex: 1;
    margin-left: 260px;
    padding: 30px;
    background: var(--bg);
    min-height: 100vh;
}

.admin-page-header {
    margin-bottom: 30px;
}

.admin-page-header h1 {
    font-size: 1.8rem;
    margin: 0;
}

.admin-page-header p { color: var(--text-light); margin: 5px 0 0; }

.admin-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 25px;
    margin-bottom: 25px;
}

.admin-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.admin-card-header h3 {
    font-size: 1.1rem;
    margin: 0;
}

/* Table styling */
.table-modern {
    border-collapse: separate;
    border-spacing: 0;
}

.table-modern thead th {
    background: var(--bg);
    border: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    padding: 12px 16px;
}

.table-modern tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid #f5f5f5;
    vertical-align: middle;
}

.table-modern tbody tr:hover {
    background: rgba(0,119,182,0.03);
}

/* Buttons */
.btn-ocean {
    background: linear-gradient(135deg, var(--ocean), var(--ocean-light));
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px 24px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-ocean:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,119,182,0.3);
}

.btn-sand {
    background: linear-gradient(135deg, var(--sand), var(--coral));
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px 24px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-sand:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(244,162,97,0.3);
}

@media (max-width: 576px) {
    #btnContinuar,
    #btnPagarCombo {
        font-size: .85rem !important;
        padding-top: .65rem !important;
        padding-bottom: .65rem !important;
        white-space: nowrap;
    }
}

/* Calendar */
.fc {
    font-family: 'Poppins', sans-serif;
}

.fc .fc-toolbar-title {
    font-size: 1.2rem;
    font-weight: 600;
}

.fc .fc-button-primary {
    background: var(--ocean);
    border-color: var(--ocean);
}

.fc .fc-daygrid-day.fc-day-today {
    background: rgba(0,119,182,0.08);
}

.fc-event {
    border-radius: 6px;
    padding: 2px 6px;
    font-size: 0.8rem;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991px) {
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 20px; }
    
    /* Navbar collapsed menu styling */
    #mainNavbar .navbar-collapse {
        background: #fff;
        border-radius: 12px;
        padding: 16px;
        margin-top: 10px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    }

    #mainNavbar .navbar-collapse .nav-link {
        color: var(--dark) !important;
        padding: 10px 14px !important;
    }

    #mainNavbar .navbar-collapse .nav-link:hover {
        background: #f5f7fa;
        color: var(--ocean) !important;
    }

    #mainNavbar .navbar-collapse .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 12px;
    }

    #mainNavbar .navbar-collapse .btn-outline-light {
        color: var(--ocean) !important;
        border-color: var(--ocean) !important;
    }

    #mainNavbar .navbar-collapse .btn-tropical {
        width: 100%;
        text-align: center;
    }

    .landing-page #mainNavbar .navbar-collapse .nav-link {
        color: var(--dark) !important;
    }

    .landing-page #mainNavbar .navbar-collapse .brand-text {
        color: var(--dark);
    }

    /* Navbar toggler */
    .navbar-toggler {
        border: 1px solid rgba(0,0,0,0.15);
        padding: 4px 8px;
    }

    .landing-page .navbar-toggler {
        border-color: rgba(255,255,255,0.5);
    }

    .landing-page .navbar-toggler .navbar-toggler-icon {
        filter: invert(1);
    }

    .landing-page #mainNavbar.scrolled .navbar-toggler {
        border-color: rgba(0,0,0,0.15);
    }

    .landing-page #mainNavbar.scrolled .navbar-toggler .navbar-toggler-icon {
        filter: none;
    }

    /* Hero: stack columns */
    .hero-section { min-height: auto; padding: 100px 0 80px; }
    .hero-content { padding-top: 20px; text-align: center; }
    .hero-badges { justify-content: center; }
    .hero-search-box { margin-top: 30px; max-width: 100%; }

    /* Sections */
    .section-header { margin-bottom: 30px; }
    .section-header h2 { font-size: 1.8rem; }
    .section-header p { font-size: 0.95rem; }

    /* Category cards */
    .category-card { padding: 28px 20px; }
    .category-icon { width: 60px; height: 60px; font-size: 1.5rem; }
    .category-card h3 { font-size: 1.15rem; }
    .category-card p { font-size: 0.85rem; margin-bottom: 14px; }
    
    /* Admin: sidebar as full-height slide-in drawer on mobile */
    .admin-sidebar {
        transform: translateX(-100%);
        top: 0;
        height: 100%;
        width: min(300px, 85vw);
        z-index: 1060;
    }

    .admin-sidebar.show {
        transform: translateX(0);
        box-shadow: 4px 0 30px rgba(0,0,0,0.4);
    }

    .admin-main {
        margin-left: 0;
        padding: 16px;
    }

    .sidebar-nav li a.active:hover {
        background: linear-gradient(135deg, #0a84d8 0%, #0077b6 100%);
        color: #fff;
    }

    .sidebar-nav li a.text-danger {
        color: #d64557;
        background: linear-gradient(180deg, #fff8f8 0%, #fff0f1 100%);
        border-color: #ffe1e6;
    }

    .sidebar-nav li a i {
        font-size: 0.96rem;
        width: auto;
        flex-shrink: 0;
    }

    .sidebar-nav li a .sidebar-label {
        display: block;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 0;
    }

    .sidebar-nav li a .sidebar-label::after {
        content: attr(data-mobile);
        display: block;
        font-size: 0.56rem;
        letter-spacing: 0.01em;
    }

    .sidebar-nav li a .badge {
        position: absolute;
        top: 5px;
        right: 5px;
        min-width: 15px;
        height: 15px;
        padding: 0 3px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.48rem;
        line-height: 1;
    }
}

@media (max-width: 767px) {
    .hero-title { font-size: 1.7rem; line-height: 1.3; }
    .hero-subtitle { font-size: 0.9rem; }
    .hero-search-box { padding: 18px; }
    .hero-search-box h5 { font-size: 0.95rem; }
    .hero-badges { gap: 10px; }
    .hero-badge { font-size: 0.78rem; gap: 6px; }
    .hero-badge i { font-size: 0.9rem; }

    .section { padding: 40px 0; }
    .section-header { margin-bottom: 24px; }
    .section-header h2 { font-size: 1.5rem; }
    .section-header p { font-size: 0.88rem; margin-top: 12px; }

    /* AOS mobile: only opacity, no translate (prevents section overlap) */
    [data-aos] {
        transform: none !important;
    }
    [data-aos].aos-animate {
        transform: none !important;
    }

    /* Product cards compact */
    .product-card-img { height: 180px; }
    .product-card-body { padding: 14px; }
    .product-card-title { font-size: 1rem; }
    .product-price strong { font-size: 1.15rem; }
    .product-gallery-main { height: 280px; }

    /* Category cards: 2-col grid */
    .category-card { padding: 20px 14px; }
    .category-icon { width: 48px; height: 48px; font-size: 1.2rem; margin-bottom: 12px; }
    .category-card h3 { font-size: 1rem; margin-bottom: 8px; }
    .category-card p { font-size: 0.8rem; margin-bottom: 10px; }
    .category-card .btn { font-size: 0.78rem; padding: 6px 14px !important; }

    /* Counters section */
    .counter-value { font-size: 1.8rem; }
    .counter-label { font-size: 0.78rem; }

    /* Testimonials */
    .testimonial-card { padding: 20px; }

    /* About section */
    .about-image div { height: 250px !important; }

    /* Navbar actions on mobile */
    .navbar-actions {
        margin-top: 12px;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .navbar-actions .btn { font-size: 0.85rem; }

    /* --- Dashboard mobile refinements --- */
    .dashboard-wrapper { padding-top: 64px; padding-bottom: 20px; }
    .dashboard-wrapper > .container { padding-left: 12px; padding-right: 12px; }

    .dashboard-header { margin-bottom: 16px; }
    .dashboard-header h4 { font-size: 1.15rem; }
    .dashboard-header p { font-size: 0.82rem; }

    /* Stats: vertical stack on mobile */
    .stat-row-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px;
        margin-bottom: 16px !important;
    }

    .stat-row-wrapper > [class*="col-"] {
        flex: 0 0 auto;
        width: 100%;
    }

    .stat-row-wrapper .stat-card {
        padding: 12px 16px;
    }

    .stat-row-wrapper .stat-value { font-size: 1.2rem; }
    .stat-row-wrapper .stat-label { font-size: 0.75rem; }
    .stat-row-wrapper .stat-icon { width: 36px; height: 36px; font-size: 0.95rem; }

    /* Dashboard content cards */
    .dashboard-content {
        padding: 16px;
        border-radius: 8px;
        margin-bottom: 12px;
    }

    .dashboard-content h5 {
        font-size: 0.88rem;
        margin-bottom: 14px;
        padding-bottom: 10px;
    }

    /* Table → stacked cards on mobile */
    .dashboard-content .table-responsive { margin: 0 -8px; }

    .dashboard-content .table thead { display: none; }

    .dashboard-content .table tbody tr {
        display: block;
        background: #fafbfc;
        border-radius: 8px;
        padding: 12px;
        margin-bottom: 8px;
        border: 1px solid #eef0f4;
    }

    .dashboard-content .table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 4px 0;
        border: none;
        font-size: 0.84rem;
    }

    .dashboard-content .table tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-light);
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        flex-shrink: 0;
        margin-right: 12px;
    }

    /* Notif items mobile */
    .notif-item { padding: 10px 8px; gap: 10px; }
    .notif-dot { width: 28px; height: 28px; font-size: 0.7rem; border-radius: 6px; }
    .notif-item strong { font-size: 0.82rem; }

    /* Reserva cards mobile */
    .reservas-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding-bottom: 12px;
        margin-bottom: 14px;
    }

    .reservas-filters {
        width: 100%;
        gap: 3px;
        overflow: visible;
    }

    .reservas-filters .btn {
        flex: 1 1 0;
        min-width: 0;
        padding: 6px 2px;
        font-size: 0.58rem;
        border-radius: 9px;
        letter-spacing: -0.01em;
        line-height: 1.1;
    }

    .reservas-filters .filtro-label {
        display: block;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: clip;
        font-size: inherit;
    }

    .reserva-card { padding: 12px; margin-bottom: 8px; }

    .reserva-card-top { gap: 10px; }
    .reserva-icon { width: 36px; height: 36px; font-size: 0.88rem; border-radius: 8px; }
    .reserva-info strong { font-size: 0.84rem; }
    .reserva-code { font-size: 0.74rem; }

    .reserva-card-details {
        flex-direction: column;
        gap: 0;
        padding: 8px 0;
    }

    .reserva-detail {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 5px 0;
    }

    .reserva-detail-label {
        margin-bottom: 0;
        font-size: 0.74rem;
    }

    .reserva-detail-value { font-size: 0.84rem; }

    .reserva-card-actions { padding-top: 8px; }
    .reserva-card-actions .btn { width: 100%; font-size: 0.8rem; }

    /* ===== ADMIN PANEL — PHONE LAYOUT ===== */

    /* Layout padding for topbar (56px) + bottom nav (62px) */
    .admin-page .admin-layout {
        padding-top: 56px;
        padding-bottom: 62px;
    }

    /* Sidebar: becomes full-height, from top 0 */
    .admin-page .admin-sidebar {
        top: 0 !important;
        height: 100vh !important;
        padding-top: 56px;
    }

    /* Show sidebar close button */
    .admin-sidebar-close { display: flex !important; }

    /* Main content: hard-contain all overflow */
    .admin-page .admin-main {
        padding: 14px 16px 20px;
        width: 100%;
        max-width: 100%;
        /* overflow-x: clip não cria Block Formatting Context, evitando a assimetria
           causada por overflow:hidden ao cortar as margens negativas do Bootstrap .row */
        overflow-x: clip;
        box-sizing: border-box;
    }

    /* Todos os filhos diretos respeitam a largura do container */
    .admin-page .admin-main > * { max-width: 100%; }

    /* Hide the old inline toggle buttons (replaced by topbar) */
    .admin-page .admin-main button#toggleSidebar,
    .admin-page .admin-main button[id="toggleSidebar"] {
        display: none !important;
    }

    /* Page headings */
    .admin-page .admin-main h2,
    .admin-page .admin-main h1 { font-size: 1.15rem !important; }

    /* Stat cards: always 2-column grid */
    .admin-page .stat-card { padding: 14px 12px; }
    .admin-page .stat-number { font-size: 1.3rem !important; }
    .admin-page .stat-label { font-size: 0.7rem; }
    .admin-page .stat-icon { width: 38px; height: 38px; font-size: 0.95rem; border-radius: 8px; }

    /* Cards */
    .admin-page .card { border-radius: 12px !important; overflow: hidden; }
    .admin-page .card-header { padding: 11px 14px !important; }
    .admin-page .card-header h5,
    .admin-page .card-header h6 { font-size: 0.88rem !important; margin: 0; }
    .admin-page .card-body { padding: 12px !important; }

    /* ---- TABLES → CARD LIST VIEW on mobile ---- */
    /* Override table-responsive so cards don't scroll, they stack */
    .admin-page .table-responsive {
        overflow: visible !important;
    }
    .admin-page .table-responsive .table,
    .admin-page .table-responsive .table tbody,
    .admin-page .table-responsive .table thead,
    .admin-page .table-responsive .table tr {
        display: block;
        width: 100%;
    }
    /* Hide header row */
    .admin-page .table-responsive .table thead { display: none !important; }
    /* Each row becomes a card */
    .admin-page .table-responsive .table tbody tr {
        background: #fff;
        border: 1px solid #eef0f4 !important;
        border-radius: 12px !important;
        margin-bottom: 10px;
        padding: 10px 12px;
        box-shadow: 0 1px 6px rgba(0,0,0,0.05);
        width: 100%;
        box-sizing: border-box;
    }
    .admin-page .table-responsive .table tbody tr:hover { background: #f9fbff !important; }
    /* Each cell: label on left, value on right */
    .admin-page .table-responsive .table tbody td {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 4px 0 !important;
        border: none !important;
        font-size: 0.82rem;
        word-break: break-word;
        white-space: normal !important;
        width: 100%;
        box-sizing: border-box;
        min-height: 26px;
    }
    /* Label from data-label attribute */
    .admin-page .table-responsive .table tbody td[data-label]::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-light);
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        flex-shrink: 0;
        margin-right: 10px;
        white-space: nowrap;
    }
    /* Hide empty cells */
    .admin-page .table-responsive .table tbody td:empty { display: none; }
    /* Action column: right-align, separator on top */
    .admin-page .table-responsive .table tbody td:last-child:has(a, button) {
        padding-top: 8px !important;
        margin-top: 6px;
        border-top: 1px solid #f0f2f5 !important;
        justify-content: flex-end;
        gap: 6px;
    }
    /* Badges inside cards */
    .admin-page .table-responsive .table tbody td .badge { font-size: 0.72rem; }

    /* Prevent iOS double-tap zoom on form inputs */
    .admin-page input[type="text"],
    .admin-page input[type="email"],
    .admin-page input[type="number"],
    .admin-page input[type="password"],
    .admin-page input[type="search"],
    .admin-page input[type="tel"],
    .admin-page select,
    .admin-page textarea { font-size: 16px !important; }

    /* Bigger touch targets for buttons */
    .admin-page .btn-sm {
        padding: 7px 12px !important;
        font-size: 0.8rem !important;
        min-height: 36px;
    }

    /* Action bar row adjustments */
    .admin-page .d-flex.justify-content-between.align-items-center.mb-4 {
        flex-wrap: wrap;
        gap: 8px;
    }
    .admin-page .d-flex.gap-2 { flex-wrap: wrap; }

    /* Charts: never overflow */
    .admin-page canvas { max-width: 100% !important; }
    .admin-page .fc { max-width: 100%; overflow: hidden; }
    .admin-page .fc .fc-toolbar { flex-wrap: wrap; gap: 6px; }
    .admin-page .fc .fc-toolbar-title { font-size: 0.95rem; }
    .admin-page .fc .fc-button { padding: 4px 8px; font-size: 0.78rem; }
}

/* ===================== ADMIN MOBILE COMPONENTS ===================== */

/* Mobile Topbar */
.admin-mobile-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    z-index: 1055;
    box-shadow: 0 2px 16px rgba(0,0,0,0.45);
}

.admin-topbar-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: none;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    position: relative;
    flex-shrink: 0;
}
.admin-topbar-btn:hover,
.admin-topbar-btn:focus { background: rgba(255,255,255,0.16); color: #fff; }

.admin-topbar-title {
    flex: 1;
    text-align: center;
    overflow: hidden;
    padding: 0 8px;
}
.admin-topbar-brand {
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
    display: block;
    line-height: 1.2;
}
.admin-topbar-page {
    color: rgba(255,255,255,0.5);
    font-size: 0.68rem;
    display: block;
    line-height: 1;
}

.admin-topbar-actions {
    display: flex;
    gap: 4px;
    align-items: center;
    flex-shrink: 0;
}
.admin-topbar-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    min-width: 16px;
    height: 16px;
    padding: 0 3px;
    background: var(--coral);
    border-radius: 8px;
    font-size: 0.58rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    line-height: 1;
}

/* Sidebar Backdrop */
.admin-sidebar-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 1054;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    backdrop-filter: blur(2px);
}
.admin-sidebar-backdrop.show {
    opacity: 1;
    visibility: visible;
}

/* Sidebar Close Button (shown only on mobile via CSS) */
.admin-sidebar-close {
    display: none !important;
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.75);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    flex-shrink: 0;
    transition: background 0.2s;
}
.admin-sidebar-close:hover { background: rgba(255,255,255,0.2); color: #fff; }

/* Bottom Navigation Bar */
.admin-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 62px;
    background: var(--dark);
    display: flex;
    align-items: stretch;
    z-index: 1050;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.35);
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

.admin-bn-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: rgba(255,255,255,0.45);
    font-size: 0.62rem;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    padding: 6px 2px;
    transition: color 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.admin-bn-item i { font-size: 1.2rem; line-height: 1; }
.admin-bn-item span { line-height: 1; }
.admin-bn-item.active { color: var(--ocean-light); }
.admin-bn-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--ocean-light);
    border-radius: 0 0 4px 4px;
}

/* Central action button (floating style) */
.admin-bn-action { color: #fff !important; }
.admin-bn-action i {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--ocean), var(--ocean-light));
    border-radius: 14px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem !important;
    box-shadow: 0 4px 14px rgba(0,119,182,0.45);
    margin-top: -14px;
    transition: transform 0.15s;
}
.admin-bn-action:active i { transform: scale(0.9); }

.admin-bn-badge {
    position: absolute;
    top: 4px;
    right: calc(50% - 18px);
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    background: var(--coral);
    border-radius: 9px;
    font-size: 0.6rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--dark);
    pointer-events: none;
}

/* ===================== ANIMATIONS ===================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Skeleton loading */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Success page */
.success-animation {
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Sobre section image */
.about-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--ocean-light);
    border-radius: var(--radius-lg);
    z-index: -1;
}

/* Contact section */
.contact-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.3rem;
    color: #fff;
}

/* Number counter animation */
.counter-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
}

.counter-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
}

/* Notification badge */
.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--coral);
    color: #fff;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Image placeholder */
.img-placeholder {
    background: linear-gradient(135deg, var(--ocean-light), var(--tropical));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 3rem;
}

/* ======================================================
   COMBOS / PACOTES
   ====================================================== */

/* Card de combo no cat�logo / home */
.combo-card {
    border: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    transition: transform .2s, box-shadow .2s;
}
.combo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,119,182,.16);
}
.combo-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.combo-card-body {
    padding: 20px;
}
.combo-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--ocean), var(--tropical));
    color: #fff;
    border-radius: 20px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 3px 12px;
    margin-bottom: 10px;
}
.combo-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}
.combo-card-desc {
    font-size: .87rem;
    color: #555;
    margin-bottom: 14px;
    line-height: 1.45;
}
.combo-card-meta {
    display: flex;
    gap: 14px;
    font-size: .82rem;
    color: #666;
    margin-bottom: 14px;
}
.combo-card-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--ocean);
    margin-bottom: 12px;
}
.combo-card-price span {
    font-size: .8rem;
    font-weight: 400;
    color: #888;
}

/* Detalhe combo � lista de produtos */
.combo-produtos-lista {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.combo-prod-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border: 1px solid #e8f4ff;
    border-radius: 12px;
    background: #f8fbff;
}
.combo-prod-item img,
.combo-prod-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}
.combo-prod-icon {
    background: linear-gradient(135deg, var(--ocean), var(--tropical));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
}
.combo-prod-info { flex: 1; }
.combo-prod-badge {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--ocean);
    margin-bottom: 2px;
}
.combo-prod-nome {
    font-weight: 700;
    font-size: .95rem;
    color: var(--dark);
}
.combo-prod-qtd {
    background: var(--ocean);
    color: #fff;
    border-radius: 6px;
    padding: 1px 7px;
    font-size: .78rem;
    font-weight: 700;
    margin-right: 6px;
}
.combo-prod-desc {
    font-size: .8rem;
    color: #666;
    margin-top: 2px;
}
.combo-prod-link {
    color: var(--ocean);
    opacity: .5;
    font-size: .9rem;
    flex-shrink: 0;
    transition: opacity .2s;
    text-decoration: none;
}
.combo-prod-link:hover { opacity: 1; }

/* Cortesias */
.combo-cortesias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}
.combo-cortesia-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #fffbf0;
    border: 1px solid #ffe8b0;
    border-radius: 10px;
    font-size: .9rem;
    font-weight: 500;
}
.combo-cortesia-item i {
    color: #f4a261;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Aviso roteiro */
.combo-roteiro-aviso {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #eef6ff;
    border: 1px solid #b8d8f5;
    border-radius: 12px;
    padding: 18px 20px;
}
.combo-roteiro-icon {
    font-size: 1.6rem;
    color: var(--ocean);
    flex-shrink: 0;
    padding-top: 2px;
}
.combo-roteiro-titulo {
    font-weight: 700;
    font-size: .95rem;
    color: var(--dark);
    margin-bottom: 4px;
}
.combo-roteiro-texto {
    font-size: .87rem;
    color: #444;
    line-height: 1.5;
}

/* Section combos na home */
.combo-section-header {
    text-align: center;
    margin-bottom: 40px;
}
.combo-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--ocean), var(--tropical));
    color: #fff;
    border-radius: 30px;
    padding: 5px 18px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.combo-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}
.combo-section-subtitle {
    color: #555;
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .combo-cortesias-grid {
        grid-template-columns: 1fr;
    }
    .combo-card-img { height: 180px; }
}
