/* ========================================
   TREVILLE HOTEL - Styles
   ======================================== */

:root {
    --gold: #b8860b;
    --gold-light: #d4a843;
    --gold-dark: #8a6508;
    --dark: #1a1a1a;
    --dark-2: #2d2d2d;
    --dark-3: #3d3d3d;
    --text: #333;
    --text-light: #666;
    --text-lighter: #999;
    --bg: #fafaf7;
    --bg-cream: #f5f0e8;
    --bg-dark: #0f0f0f;
    --white: #fff;
    --shadow-sm: 0 1px 3px rgba(20,20,20,0.06), 0 1px 2px rgba(20,20,20,0.04);
    --shadow: 0 6px 24px rgba(20,20,20,0.07), 0 2px 6px rgba(20,20,20,0.05);
    --shadow-lg: 0 20px 50px -12px rgba(20,20,20,0.22), 0 8px 20px -8px rgba(20,20,20,0.12);
    --radius: 14px;
    --radius-lg: 22px;
    --transition: 0.3s ease;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-dark); }

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--dark); line-height: 1.3; }

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-tag.light { color: var(--gold-light); }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}
.btn-secondary:hover {
    background: var(--gold);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
}

.btn-full { width: 100%; }
.btn-nav {
    background: var(--gold);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 8px;
}
.btn-nav:hover { background: var(--gold-dark); color: var(--white) !important; }

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

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

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
    transition: var(--transition);
}

.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 6px;
    color: var(--gold-light);
    font-weight: 500;
}

.header.scrolled .logo-name { color: var(--dark); }

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav a {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav a:hover { color: var(--gold-light); }

.header.scrolled .nav a { color: var(--text); }
.header.scrolled .nav a:hover { color: var(--gold); }
.header.scrolled .nav .btn-nav { color: var(--white) !important; }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.header.scrolled .menu-toggle span { background: var(--dark); }

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(184, 134, 11, 0.2);
    border: 1px solid rgba(184, 134, 11, 0.4);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 span {
    font-size: 1.8rem;
    color: var(--gold-light);
    font-weight: 400;
}

.hero-desc {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features */
.features {
    padding: 80px 0;
    background: var(--white);
    margin-top: -60px;
    position: relative;
    z-index: 3;
    border-radius: var(--radius) var(--radius) 0 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    color: var(--gold);
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* About */
.about { padding: 100px 0; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-grid.reverse { direction: rtl; }
.about-grid.reverse > * { direction: ltr; }

.img-placeholder {
    background: var(--bg-cream);
    border-radius: var(--radius);
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.img-placeholder::after {
    content: attr(data-text);
    font-size: 0.85rem;
    color: var(--text-lighter);
    font-weight: 500;
}

.img-placeholder.dark {
    background: var(--dark-2);
}
.img-placeholder.dark::after { color: rgba(255,255,255,0.5); }

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1rem;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Rooms */
.rooms {
    padding: 100px 0;
    background: var(--bg-cream);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.room-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.room-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.room-card.featured {
    border: 2px solid var(--gold);
}

.room-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.room-img {
    height: 220px;
    overflow: hidden;
}

.room-img .img-placeholder {
    height: 100%;
    border-radius: 0;
}

.room-info {
    padding: 28px;
}

.room-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.room-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.room-amenities {
    list-style: none;
    margin-bottom: 20px;
}

.room-amenities li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.room-amenities li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

/* Restaurant */
.restaurant { padding: 100px 0; }

.restaurant-meals {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

.meal {
    padding: 20px;
    background: var(--bg-cream);
    border-radius: 8px;
    border-left: 3px solid var(--gold);
}

.meal h4 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--gold-dark);
}

.meal p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Events CTA */
.events-cta {
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
}

.events-cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.events-cta-text h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 16px;
}

.events-cta-text p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
}

.events-features {
    list-style: none;
    margin-bottom: 30px;
}

.events-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.events-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-light);
    font-weight: 700;
}

/* Location */
.location {
    padding: 100px 0;
    background: var(--bg-cream);
}

.location-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.location-distances h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.distance-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.distance-label {
    font-size: 0.9rem;
    color: var(--text);
}

.distance-value {
    font-weight: 600;
    color: var(--gold-dark);
    font-size: 0.9rem;
    white-space: nowrap;
    margin-left: 16px;
}

/* Reviews */
.reviews {
    padding: 100px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.review-stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.review-card p {
    color: var(--text);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.7;
}

.review-author {
    color: var(--text-lighter);
    font-size: 0.8rem;
}

/* CTA Carazinho */
.cta-carazinho {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.cta-carazinho-inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-carazinho-inner h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta-carazinho-inner p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-item summary {
    padding: 20px 0;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark);
}

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--gold);
    transition: var(--transition);
    font-weight: 300;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item p {
    padding: 0 0 20px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Contact */
.contact {
    padding: 100px 0;
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.contact-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-lighter);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item a, .contact-item span {
    color: var(--text);
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-cream);
    border-radius: 50%;
    color: var(--gold);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--white);
}

/* Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
}

.form-row { margin-bottom: 16px; }

.form-row.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-lighter);
    margin-top: 12px;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo-name {
    color: var(--white);
    font-size: 1.4rem;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    padding: 4px 0;
    transition: var(--transition);
}

.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 0;
        transition: var(--transition);
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    }

    .nav.active { right: 0; }

    .nav a {
        color: var(--text) !important;
        padding: 14px 0;
        border-bottom: 1px solid #eee;
        font-size: 1rem;
    }

    .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .hero h1 { font-size: 2.2rem; }
    .hero h1 span { font-size: 1.3rem; }

    .features-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-grid.reverse { direction: ltr; }
    .rooms-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
    .events-cta-inner { grid-template-columns: 1fr; }
    .events-cta-img { display: none; }
    .location-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .form-row.two-col { grid-template-columns: 1fr; }
    .about-stats { gap: 24px; }
    .section-header h2 { font-size: 1.8rem; }

    .contact-form-wrapper { padding: 24px; }
}

@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 1.8rem; }
    .hero-desc { font-size: 1rem; }
    .about-stats { flex-direction: column; gap: 16px; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* ========================================
   EVENTOS PAGE
   ======================================== */

.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.page-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.page-section { padding: 80px 0; }
.page-section.alt { background: var(--white); }

/* Events specific */
.event-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.event-type-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.event-type-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.event-type-card .icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.event-type-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.event-type-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.spec-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-cream);
    border-radius: var(--radius);
}

.spec-card .number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.spec-card .label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 4px;
}

.brands-section { text-align: center; }

.brands-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.brand-item {
    padding: 20px 30px;
    background: var(--bg-cream);
    border-radius: var(--radius);
    font-weight: 600;
    color: var(--text);
    font-size: 1.1rem;
}

.lead-form-section {
    padding: 80px 0;
    background: var(--dark);
}

.lead-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.lead-form-wrapper h2 {
    text-align: center;
    margin-bottom: 8px;
    font-size: 1.6rem;
}

.lead-form-wrapper > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

/* Carazinho Guide */
.guide-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.guide-intro-text h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.guide-intro-text p {
    color: var(--text-light);
    margin-bottom: 12px;
}

.guide-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.guide-stat {
    text-align: center;
    padding: 20px;
    background: var(--bg-cream);
    border-radius: 8px;
}

.guide-stat .num {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.guide-stat .lbl {
    font-size: 0.8rem;
    color: var(--text-light);
}

.poi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.poi-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.poi-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.poi-card-img {
    height: 180px;
    background: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

.poi-card-body { padding: 24px; }

.poi-card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.poi-card-body p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.poi-card-body .distance-tag {
    display: inline-block;
    margin-top: 12px;
    padding: 4px 12px;
    background: var(--bg-cream);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-dark);
}

.gastro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gastro-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.gastro-card .emoji { font-size: 3rem; margin-bottom: 16px; }

.gastro-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.gastro-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.expodireto-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d5016, #1a3a0a);
    color: var(--white);
}

.expodireto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.expodireto-grid h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 16px;
}

.expodireto-grid p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 16px;
}

.expodireto-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.expodireto-fact {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.expodireto-fact .val {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #8bc34a;
    display: block;
}

.expodireto-fact .lbl {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}

.guide-cta {
    padding: 80px 0;
    background: var(--gold);
    text-align: center;
}

.guide-cta h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 12px;
}

.guide-cta p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.guide-cta .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.guide-cta .btn-outline:hover {
    background: var(--white);
    color: var(--gold-dark);
}

@media (max-width: 768px) {
    .page-hero { padding: 120px 0 60px; }
    .page-hero h1 { font-size: 2rem; }
    .event-types-grid { grid-template-columns: 1fr; }
    .specs-grid { grid-template-columns: repeat(2, 1fr); }
    .lead-form-wrapper { padding: 24px; }
    .guide-intro { grid-template-columns: 1fr; }
    .poi-grid { grid-template-columns: 1fr; }
    .gastro-grid { grid-template-columns: 1fr; }
    .expodireto-grid { grid-template-columns: 1fr; }
    .expodireto-facts { grid-template-columns: 1fr 1fr; }
    .brands-grid { gap: 20px; }
    .guide-stats { grid-template-columns: 1fr; }
}

/* ========================================
   MODERN LAYER 2026 — fotos reais, galeria,
   lightbox, micro-interacoes e refinos
   ======================================== */

/* Imagens reais ocupando os blocos de midia */
.media, .about-img, .room-img, .poi-card-img, .events-cta-img {
    position: relative;
    overflow: hidden;
}
.media img, .about-img img, .room-img img, .poi-card-img img, .events-cta-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s var(--ease-out);
}
.about-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); height: 460px; }
.about-img img { border-radius: var(--radius-lg); }
.events-cta-img { border-radius: var(--radius-lg); height: 420px; box-shadow: var(--shadow-lg); }

/* hover zoom suave em cards com foto */
.room-card:hover .room-img img,
.poi-card:hover .poi-card-img img,
.gallery-item:hover img { transform: scale(1.06); }

.room-img { height: 250px; }

/* selo de moldura dourada sutil sobre fotos de destaque */
.about-img::after, .events-cta-img::after {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: calc(var(--radius-lg) - 8px);
    pointer-events: none;
}

/* ---- HERO com foto real ---- */
.hero {
    background: #14131a url("img/fachada-treville-hotel.jpg") center/cover no-repeat;
}
.hero-overlay {
    background:
        linear-gradient(180deg, rgba(13,15,26,0.60) 0%, rgba(13,15,26,0.48) 30%, rgba(13,15,26,0.64) 58%, rgba(13,15,26,0.86) 100%),
        radial-gradient(125% 85% at 50% 40%, rgba(0,0,0,0) 42%, rgba(0,0,0,0.38) 100%);
}
.hero h1 { letter-spacing: -0.5px; text-shadow: 0 3px 26px rgba(0,0,0,0.55); }
.hero h1 span { text-shadow: 0 2px 18px rgba(0,0,0,0.5); }
.hero-desc { color: rgba(255,255,255,0.93); text-shadow: 0 1px 16px rgba(0,0,0,0.65); }
.hero-badge { background: rgba(184,134,11,0.30); border-color: rgba(184,134,11,0.55); backdrop-filter: blur(8px); }

@media (max-width: 768px) {
    .hero { background-position: center 33%; }
    .hero-overlay {
        background: linear-gradient(180deg, rgba(13,15,26,0.66) 0%, rgba(13,15,26,0.56) 30%, rgba(13,15,26,0.78) 62%, rgba(13,15,26,0.92) 100%);
    }
    .hero-desc { font-size: 1.02rem; }
}

/* ---- GALERIA ---- */
.gallery { padding: 100px 0; background: var(--white); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 14px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    background: var(--bg-cream);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.45) 100%);
    opacity: 0;
    transition: var(--transition);
}
.gallery-item::before {
    content: "\002B";
    position: absolute; z-index: 2;
    top: 50%; left: 50%; transform: translate(-50%,-50%) scale(0.8);
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.92); color: var(--gold-dark);
    font-size: 1.6rem; font-weight: 300; border-radius: 50%;
    opacity: 0; transition: var(--transition);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover::before { opacity: 1; transform: translate(-50%,-50%) scale(1); }

/* ---- LIGHTBOX ---- */
.lightbox {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(10,10,12,0.92);
    display: none; align-items: center; justify-content: center;
    padding: 30px;
    backdrop-filter: blur(4px);
}
.lightbox.open { display: flex; }
.lightbox img {
    max-width: 92vw; max-height: 86vh;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    animation: lbIn 0.35s var(--ease-out);
}
@keyframes lbIn { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }
.lightbox-close, .lightbox-nav {
    position: absolute; background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25); color: #fff;
    width: 50px; height: 50px; border-radius: 50%;
    font-size: 1.5rem; cursor: pointer; display: flex;
    align-items: center; justify-content: center; transition: var(--transition);
}
.lightbox-close:hover, .lightbox-nav:hover { background: var(--gold); border-color: var(--gold); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-nav.prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-caption {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.85); font-size: 0.9rem; letter-spacing: 0.5px;
}

/* ---- micro-interacoes / botoes ---- */
.btn { border-radius: 10px; letter-spacing: 0.3px; }
.room-card, .review-card, .event-type-card, .poi-card { border-radius: var(--radius-lg); }
.feature-card { border-radius: var(--radius); transition: var(--transition); }
.feature-card:hover { background: var(--bg-cream); transform: translateY(-4px); }
.feature-icon {
    width: 70px; height: 70px; margin: 0 auto 18px;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-cream); border-radius: 18px; color: var(--gold-dark);
}

/* ---- reveal on scroll ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---- painel restaurante (sem foto) ---- */
.restaurant-panel {
    background: linear-gradient(160deg, #1f1d29 0%, #14131a 100%);
    color: #fff; border-radius: var(--radius-lg);
    padding: 44px 40px; box-shadow: var(--shadow-lg);
    position: relative; overflow: hidden;
}
.restaurant-panel::before {
    content: ""; position: absolute; top: -40px; right: -40px;
    width: 160px; height: 160px; border-radius: 50%;
    background: radial-gradient(circle, rgba(184,134,11,0.35), transparent 70%);
}
.restaurant-panel-tag {
    display: inline-block; font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
    color: #14131a; background: var(--gold-light); padding: 5px 14px; border-radius: 50px; font-weight: 700; margin-bottom: 20px;
}
.restaurant-panel h3 { color: #fff; font-size: 1.4rem; margin-bottom: 18px; }
.restaurant-hours { list-style: none; margin-bottom: 22px; }
.restaurant-hours li { display: flex; justify-content: space-between; align-items: center; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.restaurant-hours span { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.restaurant-hours strong { color: var(--gold-light); font-size: 0.95rem; }
.restaurant-panel-note { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin-bottom: 26px; }
.restaurant-panel .btn-secondary { color: var(--gold-light); border-color: var(--gold-light); }
.restaurant-panel .btn-secondary:hover { background: var(--gold-light); color: #14131a; }

/* ---- painel eventos (sem foto) ---- */
.events-panel {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg); padding: 44px 40px; text-align: center;
}
.events-panel-num { font-family: 'Playfair Display', serif; font-size: 4.5rem; font-weight: 700; color: var(--gold-light); line-height: 1; display: block; }
.events-panel-lbl { color: rgba(255,255,255,0.7); letter-spacing: 1px; text-transform: uppercase; font-size: 0.8rem; }
.events-panel-divider { height: 1px; background: rgba(255,255,255,0.12); margin: 28px 0; }
.events-panel-row { display: flex; justify-content: space-between; padding: 11px 0; color: rgba(255,255,255,0.82); font-size: 0.9rem; }
.events-panel-row span::before { content: "✓"; color: var(--gold-light); margin-right: 8px; font-weight: 700; }

/* ---- responsivo galeria ---- */
@media (max-width: 900px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .gallery-item.wide { grid-column: span 2; }
    .gallery-item.tall { grid-row: span 1; }
    .about-img, .events-cta-img { height: 340px; }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
    .lightbox-nav { width: 42px; height: 42px; }
}

/* ========================================
   ARTIGOS / BLOG — layout de leitura
   ======================================== */
.article-hero {
    padding: 150px 0 70px;
    background: linear-gradient(160deg, #1f1d29 0%, #14131a 100%);
    color: #fff;
}
.article-hero .container { max-width: 820px; }
.breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--gold-light); }
.article-hero .eyebrow { color: var(--gold-light); text-transform: uppercase; letter-spacing: 2px; font-size: 0.78rem; font-weight: 600; }
.article-hero h1 { color: #fff; font-size: 2.6rem; margin: 14px 0 18px; line-height: 1.2; letter-spacing: -0.5px; }
.article-meta { display: flex; gap: 20px; flex-wrap: wrap; color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.article-meta span::before { content: ""; display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); margin-right: 8px; vertical-align: middle; }

.article-wrap { padding: 60px 0 90px; background: var(--white); }
.article-wrap .container { max-width: 820px; }
.article-body { font-size: 1.06rem; color: #2c2c2c; line-height: 1.85; }
.article-body > p:first-of-type { font-size: 1.18rem; color: #1a1a1a; }
.article-body h2 { font-size: 1.7rem; margin: 44px 0 16px; padding-top: 8px; }
.article-body h3 { font-size: 1.25rem; margin: 30px 0 12px; color: var(--dark-2); }
.article-body p { margin-bottom: 18px; }
.article-body ul, .article-body ol { margin: 0 0 20px 22px; }
.article-body li { margin-bottom: 10px; }
.article-body strong { color: #1a1a1a; }
.article-body a { color: var(--gold-dark); font-weight: 500; text-decoration: underline; text-decoration-color: rgba(184,134,11,0.35); text-underline-offset: 3px; }
.article-body a:hover { text-decoration-color: var(--gold); }
.article-body img { border-radius: var(--radius); margin: 28px 0; box-shadow: var(--shadow); }
.article-body blockquote {
    border-left: 4px solid var(--gold); background: var(--bg-cream);
    padding: 18px 24px; border-radius: 0 10px 10px 0; margin: 26px 0; font-style: italic; color: #444;
}

/* TOC / sumario */
.article-toc {
    background: var(--bg-cream); border: 1px solid rgba(184,134,11,0.18);
    border-radius: var(--radius); padding: 24px 28px; margin: 0 0 36px;
}
.article-toc h2 { font-size: 1rem !important; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 14px !important; color: var(--gold-dark); }
.article-toc ol { margin: 0 0 0 18px; }
.article-toc li { margin-bottom: 8px; font-size: 0.95rem; }

/* callout / destaque */
.callout {
    background: linear-gradient(135deg, rgba(184,134,11,0.08), rgba(184,134,11,0.03));
    border: 1px solid rgba(184,134,11,0.25); border-radius: var(--radius);
    padding: 22px 26px; margin: 28px 0;
}
.callout strong { color: var(--gold-dark); }

/* tabela */
.article-body table { width: 100%; border-collapse: collapse; margin: 26px 0; font-size: 0.95rem; }
.article-body th, .article-body td { text-align: left; padding: 12px 14px; border-bottom: 1px solid #eee; }
.article-body th { background: var(--bg-cream); font-family: 'Playfair Display', serif; color: var(--dark); }

/* CTA hotel dentro do artigo */
.article-cta {
    margin: 44px 0; padding: 40px; border-radius: var(--radius-lg);
    background: linear-gradient(160deg, #1f1d29, #14131a); color: #fff; text-align: center;
}
.article-cta h3 { color: #fff; font-size: 1.5rem; margin-bottom: 10px; }
.article-cta p { color: rgba(255,255,255,0.7); margin-bottom: 22px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* artigos relacionados */
.related { background: var(--bg-cream); padding: 70px 0; }
.related .container { max-width: 1000px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 30px; }
.related-card { background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); transition: var(--transition); display: block; }
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.related-card span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); font-weight: 600; }
.related-card h3 { font-size: 1.1rem; margin: 10px 0 6px; color: var(--dark); }
.related-card p { font-size: 0.88rem; color: var(--text-light); }

/* indice de artigos (hub) */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.blog-card .cat { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.blog-card h2 { font-size: 1.2rem; margin-bottom: 10px; line-height: 1.35; }
.blog-card p { font-size: 0.9rem; color: var(--text-light); flex: 1; }
.blog-card .read { margin-top: 16px; font-size: 0.85rem; font-weight: 600; color: var(--gold-dark); }

@media (max-width: 768px) {
    .article-hero { padding: 120px 0 50px; }
    .article-hero h1 { font-size: 1.9rem; }
    .article-body { font-size: 1rem; }
    .related-grid, .blog-grid { grid-template-columns: 1fr; }
    .article-cta { padding: 28px 22px; }
}
