/* RPG & Coffee — identidade visual alinhada ao flyer (dark + gold) */
:root {
    --bg: #0b0907;
    --bg-elevated: #14100c;
    --bg-card: rgba(18, 13, 10, 0.85);
    --bg-soft: #1a1410;
    --gold: #c59b6d;
    --gold-bright: #d4af37;
    --gold-muted: #a67c52;
    --text: #f5f0ea;
    --text-muted: #a89888;
    --border: rgba(197, 155, 109, 0.45);
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --radius: 10px;
    --section-pad: 100px 0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    background-image:
        radial-gradient(ellipse at 20% 0%, rgba(197, 155, 109, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(139, 90, 43, 0.06) 0%, transparent 45%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(11, 9, 7, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    border-bottom-color: var(--border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 44px;
    width: auto;
    display: block;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.65rem;
    letter-spacing: 0.04em;
    color: var(--text);
    text-transform: uppercase;
    line-height: 1;
}

.nav-logo .brand-gold {
    color: var(--gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

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

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

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero — full-bleed, brand first */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 7rem 2rem 4rem;
    background:
        linear-gradient(180deg, rgba(11, 9, 7, 0.55) 0%, rgba(11, 9, 7, 0.88) 70%, var(--bg) 100%),
        url('https://images.unsplash.com/photo-1447933601403-0c6688de566e?auto=format&fit=crop&w=1920&q=80') center / cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
    pointer-events: none;
    animation: grainShift 8s steps(6) infinite;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    position: relative;
    text-align: center;
    margin: 0 auto;
}

.hero-logo {
    display: block;
    width: min(280px, 55vw);
    height: auto;
    margin: 0 auto 1.25rem;
    animation: fadeInUp 0.9s ease;
}

.hero-brand {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 12vw, 7.5rem);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: 0.06em;
    color: var(--text);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    text-shadow: 0 4px 32px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease;
}

.hero-brand .brand-gold {
    color: var(--gold);
    display: inline;
}

.hero-tagline {
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 32rem;
    margin: 0 auto 2.25rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-image {
    display: none;
}

.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background: var(--gold);
    color: var(--bg);
    box-shadow: 0 4px 20px rgba(197, 155, 109, 0.25);
}

.btn-primary:hover {
    background: var(--gold-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(197, 155, 109, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold-muted);
}

.btn-secondary:hover {
    background: rgba(197, 155, 109, 0.12);
    color: var(--text);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.btn-lang {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 12px 22px;
}

.btn-lang:hover {
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.2rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 2px;
    background: var(--gold);
}

/* About */
.about {
    padding: var(--section-pad);
    background: var(--bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.feature i {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.feature h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 0.5rem;
}

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

.about-image img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    filter: saturate(0.85) brightness(0.88);
}

/* Resources */
.resources {
    padding: var(--section-pad);
    background: var(--bg-elevated);
}

.resources .section-title,
.coffee-methods .section-title {
    margin-bottom: 1.75rem;
}

.resources-intro,
.coffee-methods-intro {
    max-width: 760px;
    margin: 0 auto 3.5rem;
    color: var(--text-muted);
    font-size: 1.08rem;
    line-height: 1.8;
    text-align: center;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.resource-card {
    position: relative;
    padding: 2.25rem 2rem;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

.resource-card:hover::before {
    opacity: 1;
}

.resource-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    border: 1px solid var(--gold-muted);
    border-radius: 50%;
    font-size: 1.55rem;
}

.resource-highlight {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.resource-card h3 {
    margin-bottom: 0.75rem;
    color: var(--text);
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.1;
    text-transform: uppercase;
}

.resource-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Bookstore */
.bookstore {
    padding: var(--section-pad);
    background: var(--bg);
}

.section-title-left {
    text-align: left;
}

.section-title-left::after {
    left: 0;
    transform: none;
}

.bookstore-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
}

.bookstore-content .section-title {
    margin-bottom: 2rem;
}

.bookstore-content p {
    color: var(--text-muted);
    font-size: 1.08rem;
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.bookstore-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    list-style: none;
    margin-top: 1.75rem;
}

.bookstore-tags li {
    padding: 0.45rem 0.95rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.bookstore-visual {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.bookstore-visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    filter: saturate(0.8) brightness(0.88);
}

/* Team */
.team {
    padding: var(--section-pad);
    background: var(--bg-elevated);
}

.team-panel {
    max-width: 820px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.team-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    border: 1px solid var(--gold-muted);
    border-radius: 50%;
    font-size: 1.75rem;
}

.team-panel p {
    color: var(--text-muted);
    font-size: 1.08rem;
    line-height: 1.85;
}

.team-panel p + p {
    margin-top: 1.25rem;
}

/* Coffee methods */
.coffee-methods {
    padding: var(--section-pad);
    background:
        radial-gradient(circle at 50% 0%, rgba(197, 155, 109, 0.08), transparent 36%),
        var(--bg);
}

.coffee-methods-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.coffee-method-card {
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.coffee-method-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.4);
}

.coffee-method-image {
    width: 100%;
    aspect-ratio: 8 / 9;
    background-image: url('assets/metodos-cafe-grid.png');
    background-repeat: no-repeat;
    background-size: 400% 200%;
    filter: saturate(0.85) brightness(0.88);
    transition: filter 0.35s ease, transform 0.45s ease;
}

.coffee-method-card:hover .coffee-method-image {
    filter: saturate(1) brightness(1);
    transform: scale(1.025);
}

.method-espresso { background-position: 0% 0%; }
.method-v60 { background-position: 33.333% 0%; }
.method-aeropress { background-position: 66.666% 0%; }
.method-origami { background-position: 100% 0%; }
.method-chemex { background-position: 0% 100%; }
.method-turco { background-position: 33.333% 100%; }
.method-cold-brew { background-position: 66.666% 100%; }
.method-outros { background-position: 100% 100%; }

.coffee-method-content {
    position: relative;
    padding: 1.4rem 1.35rem 1.5rem;
    background: var(--bg-card);
}

.coffee-method-content span {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.coffee-method-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text);
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1.1;
    text-transform: uppercase;
}

.coffee-method-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

/* Activities */
.activities {
    padding: var(--section-pad);
    background: var(--bg-elevated);
}

#activities .section-title {
    margin-bottom: 1.5rem;
}

.activities-subtitle {
    max-width: 860px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.08rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.8;
    text-transform: none;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.activity-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.activity-icon {
    width: 72px;
    height: 72px;
    background: transparent;
    border: 1px solid var(--gold-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.activity-icon i {
    font-size: 1.75rem;
    color: var(--gold);
}

.activity-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 1rem;
}

.activity-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.activity-time {
    display: inline-block;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold-muted);
    padding: 0.45rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Games */
.games {
    padding: var(--section-pad);
    background:
        radial-gradient(circle at 50% 0%, rgba(197, 155, 109, 0.1), transparent 38%),
        var(--bg);
}

.games .section-title {
    margin-bottom: 2rem;
}

.games-description {
    max-width: 900px;
    margin: 0 auto 3.5rem;
    color: var(--text-muted);
    font-size: 1.08rem;
    line-height: 1.85;
    text-align: center;
}

.games-description p {
    margin-bottom: 1.15rem;
}

.games-description p:last-child {
    margin-bottom: 0;
}

.games-description strong {
    color: var(--text);
    font-weight: 600;
}

.games-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 260px;
    gap: 1.25rem;
}

.game-card {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-card);
    isolation: isolate;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.game-card-featured {
    grid-column: span 2;
    grid-row: span 2;
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.75) brightness(0.72);
    transition: transform 0.55s ease, filter 0.35s ease;
}

.game-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 25%, rgba(7, 6, 5, 0.92) 100%);
}

.game-card-overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 1.5rem;
}

.game-platform {
    display: inline-block;
    margin-bottom: 0.45rem;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.game-card h3 {
    color: var(--text);
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1.1;
    text-transform: uppercase;
}

.game-card-featured h3 {
    font-size: 2.2rem;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

.game-card:hover img {
    transform: scale(1.06);
    filter: saturate(0.95) brightness(0.85);
}

/* Products */
.products {
    padding: var(--section-pad);
    background: var(--bg-elevated);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: brightness(0.9);
}

.product-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text);
}

.product-card p {
    padding: 0 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.price {
    display: block;
    padding: 1rem 1.5rem 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
}

.products-description {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.products-description p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 1.15rem;
}

.products-description p:last-child {
    margin-bottom: 0;
}

.products-description strong {
    color: var(--text);
    font-weight: 600;
}

.products-carousel {
    margin-top: 3rem;
}

.carousel-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    aspect-ratio: 3/4;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: var(--bg-soft);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(11, 9, 7, 0.85);
    color: var(--gold);
    border: 1px solid var(--gold-muted);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--gold);
    color: var(--bg);
    transform: translateY(-50%) scale(1.05);
}

.carousel-prev {
    left: 16px;
}

.carousel-next {
    right: 16px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bg-soft);
    border: 1px solid var(--gold-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.15);
}

.carousel-indicator:hover {
    background: var(--gold-muted);
}

@media (max-width: 768px) {
    .carousel-container {
        max-width: 90%;
        aspect-ratio: 3/4;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        max-width: 95%;
        aspect-ratio: 2/3;
    }
}

/* Events */
.events {
    padding: var(--section-pad);
    background: var(--bg-elevated);
}

.events-soon {
    text-align: center;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3rem 2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.corujao-event {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    padding: 2.75rem 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.corujao-event::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.corujao-badge {
    display: inline-block;
    margin-bottom: 1.25rem;
    padding: 0.4rem 0.9rem;
    border: 1px solid var(--gold-muted);
    border-radius: 4px;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.corujao-eyebrow {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.corujao-header h3 {
    margin-bottom: 1rem;
    color: var(--text);
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;
}

.corujao-lead {
    max-width: 720px;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

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

.corujao-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.35rem;
    background: rgba(11, 9, 7, 0.45);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.corujao-item i {
    margin-top: 0.2rem;
    color: var(--gold);
    font-size: 1.2rem;
}

.corujao-item h4 {
    margin-bottom: 0.4rem;
    color: var(--text);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.corujao-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.corujao-rules {
    padding: 1.5rem 1.6rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(197, 155, 109, 0.06);
}

.corujao-rules h4 {
    margin-bottom: 0.85rem;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.corujao-rules ul {
    padding-left: 1.15rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.corujao-rules li + li {
    margin-top: 0.35rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.event-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    display: flex;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.event-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.event-date {
    background: transparent;
    border-right: 1px solid var(--border);
    color: var(--gold);
    padding: 2rem 1.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 100px;
}

.event-date .day {
    font-family: var(--font-display);
    font-size: 2.4rem;
    letter-spacing: 0.04em;
    display: block;
    line-height: 1;
}

.event-date .month {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.9;
    margin-top: 0.35rem;
}

.event-content {
    padding: 1.75rem;
    flex: 1;
}

.event-content h3 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.event-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.event-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.event-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Timeline */
.timeline {
    padding: var(--section-pad);
    background: var(--bg);
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 50%;
    text-align: right;
    padding-right: 2rem;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
    margin-right: 0;
    text-align: left;
    padding-left: 2rem;
}

.timeline-content {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    position: relative;
}

.timeline-content h3 {
    font-family: var(--font-display);
    color: var(--gold);
    font-size: 1.35rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: var(--gold);
    border: 3px solid var(--bg);
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--gold-muted);
}

/* Reviews */
.reviews {
    padding: var(--section-pad);
    background: var(--bg-elevated);
}

.reviews-description {
    max-width: 860px;
    margin: 0 auto 3rem;
    text-align: center;
}

.reviews-description p {
    color: var(--text-muted);
    font-size: 1.08rem;
    line-height: 1.85;
    margin-bottom: 1.15rem;
}

.reviews-description p:last-child {
    margin-bottom: 0;
}

.reviews-description strong {
    color: var(--text);
    font-weight: 600;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.review-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.review-header {
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border);
}

.reviewer-info h4 {
    color: var(--text);
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

.stars {
    color: var(--gold-bright);
    font-size: 0.9rem;
}

.review-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-style: italic;
}

.overall-rating {
    text-align: center;
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.rating-info h3 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--gold);
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

.rating-info .stars {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.rating-info p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Contact */
.contact {
    padding: var(--section-pad);
    background: var(--bg);
}

/* FAQ */
.faq {
    padding: var(--section-pad);
    background: var(--bg-elevated);
}

.faq-intro {
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.faq-list {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    gap: 0.85rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-card);
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.faq-item[open] {
    border-color: var(--gold);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 1.15rem 3rem 1.15rem 1.35rem;
    position: relative;
    color: var(--text);
    font-weight: 600;
    font-size: 1.02rem;
    line-height: 1.45;
}

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

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.6rem;
    line-height: 1;
}

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

.faq-item summary:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: -2px;
}

.faq-answer {
    padding: 0 1.35rem 1.35rem;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 0.85rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.4rem;
    color: var(--gold);
    margin-top: 0.35rem;
}

.contact-item h3 {
    font-family: var(--font-display);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Map */
.map {
    padding: 5rem 0;
    background: var(--bg-elevated);
}

.map-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}

.map-info {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.map-details h3 {
    font-family: var(--font-display);
    color: var(--gold);
    font-size: 1.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.map-details p {
    margin-bottom: 1rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-details i {
    color: var(--gold);
    width: 20px;
    text-align: center;
}

.map-actions {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.map-embed {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.map-embed iframe {
    border-radius: var(--radius);
    filter: grayscale(0.35) contrast(1.05) brightness(0.85);
}

.contact-whatsapp {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.whatsapp-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.whatsapp-icon {
    font-size: 4rem;
    color: #25D366;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.whatsapp-content h3 {
    font-family: var(--font-display);
    color: var(--text);
    font-size: 1.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.whatsapp-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.whatsapp-features {
    text-align: left;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.whatsapp-features i {
    color: #25D366;
    margin-right: 10px;
    width: 20px;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #070605;
    color: var(--text);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    font-family: var(--font-display);
    color: var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--gold);
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    color: var(--bg);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(197, 155, 109, 0.2);
    color: var(--text-muted);
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.4rem;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.35);
}

.floating-btn:hover {
    transform: scale(1.08);
}

.floating-btn.whatsapp {
    background: #25D366;
}

.floating-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.scroll-to-top {
    background: var(--gold) !important;
    color: var(--bg) !important;
    border: 1px solid var(--gold-muted) !important;
    box-shadow: 0 5px 18px rgba(197, 155, 109, 0.3) !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes grainShift {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-1%, 1%); }
    50% { transform: translate(1%, -1%); }
    75% { transform: translate(-1%, -1%); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(11, 9, 7, 0.98);
        border-bottom: 1px solid var(--border);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1.25rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-logo-img {
        height: 36px;
    }

    .nav-logo-text {
        font-size: 1.35rem;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        min-height: 90vh;
        padding: 6rem 1.5rem 3rem;
    }

    .hero-logo {
        width: min(200px, 48vw);
        margin-bottom: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .bookstore-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title-left {
        text-align: center;
    }

    .section-title-left::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .bookstore-tags {
        justify-content: center;
    }

    .team-panel {
        padding: 2.25rem 1.5rem;
    }

    .coffee-methods-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .games-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 230px;
    }

    .game-card-featured {
        grid-row: span 1;
    }

    .game-card-featured h3 {
        font-size: 1.55rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .whatsapp-card {
        flex-direction: column;
        text-align: center;
    }

    .timeline-container::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 50px;
        margin-right: 0;
        text-align: left;
        padding-left: 2rem;
        padding-right: 0;
    }

    .timeline-dot {
        left: 20px;
    }

    .floating-buttons {
        bottom: 1rem;
        right: 1rem;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .nav-logo-text {
        display: none;
    }

    .nav-logo-img {
        height: 40px;
    }

    .hero-brand {
        font-size: 3.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .activities-grid,
    .products-grid,
    .events-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .games-description {
        font-size: 1rem;
        text-align: left;
    }

    .resources-intro,
    .coffee-methods-intro {
        font-size: 1rem;
        text-align: left;
    }

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

    .coffee-methods-grid {
        grid-template-columns: 1fr;
    }

    .games-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .game-card-featured {
        grid-column: span 1;
    }

    .event-card {
        flex-direction: column;
    }

    .corujao-event {
        padding: 2rem 1.35rem;
    }

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

    .event-date {
        min-width: auto;
        padding: 1rem;
        border-right: none;
        border-bottom: 1px solid var(--border);
        flex-direction: row;
        gap: 0.75rem;
        align-items: baseline;
        justify-content: center;
    }
}
