:root {
    /* Color Palette - Igreja Atitude */
    --primary-gold: #FF6600;
    /* Orange / White */
    --primary-sand: #FFAA66;
    --dark-blue: #111111;
    /* Deep Dark */
    --dark-bg: #0f0f0f;
    /* Almost black */
    --light-text: #F8F9FA;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);

    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.container {
    padding: 0 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-sand), var(--primary-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(15, 15, 15, 0.9);
    /* Slightly darker for legibility */
    border-bottom: 1px solid var(--glass-border);
}

/* Logo Container Safety */
.logo {
    display: flex;
    align-items: center;
    max-width: 200px;
}

.nav-logo-img {
    height: 65px;
    /* Balanced layout size for impact without overlap */
    width: auto;
    object-fit: contain;
}

.btn-visit {
    background: var(--primary-gold);
    color: var(--dark-blue);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: transform 0.2s;
}

.btn-visit:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    background-image: url('assets/images/hero-bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
}

.hero-logo {
    max-width: 150px;
    margin-bottom: 3rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 15, 15, 0.4), rgba(15, 15, 15, 0.9));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    /* Increased for logo space */
}

/* Removed .badge as it's replaced by logo */

.hero h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.btn-primary {
    background: var(--light-text);
    color: var(--dark-blue);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:active {
    transform: scale(0.95);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    z-index: 2;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Sections */
section {
    padding: 4rem 0;
}

/* Reveal Section (New) */
.reveal-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.reveal-text {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.4;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
}

.highlight-gold {
    color: var(--primary-gold);
    font-weight: 700;
    font-style: normal;
    display: block;
    margin-top: 1rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.story-section .card {
    padding: 2rem;
    border-top: 2px solid var(--primary-gold);
}

.story-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-sand);
}

.highlight-text {
    font-size: 1.5rem;
    margin: 1.5rem 0;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Concept Section */
.concept-section {
    background: linear-gradient(to top, var(--dark-bg), #1c1c1c);
}

.rounded-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
}

.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.final-punch {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-top: 2rem;
    color: var(--primary-sand);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 2rem;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.02);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--light-text);
}

.caption {
    margin-top: 1rem;
    opacity: 0.7;
    font-style: italic;
}

/* Concept Section (Journey) */
.journey-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.journey-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s;
}

.journey-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

.journey-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 2px solid var(--primary-gold);
}

.card-content {
    padding: 1.5rem;
    text-align: left;
}

.card-content h3 {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-style: italic;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.highlight-small {
    margin: 1rem 0;
    font-size: 0.95rem;
    color: var(--primary-sand);
    line-height: 1.5;
}

.cta-text {
    font-weight: 700;
    color: var(--light-text);
    text-align: center;
    margin-top: 1.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .journey-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Info Section */
.info-section {
    padding-bottom: 6rem;
}

.info-card {
    padding: 2.5rem;
    text-align: center;
}

.info-details {
    margin: 2rem 0;
    text-align: left;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.icon {
    font-size: 1.5rem;
}

.btn-whatsapp {
    display: block;
    width: 100%;
    background: #25D366;
    color: white;
    padding: 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 1rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

/* Footer */
footer {
    padding: 2rem;
    text-align: center;
    background: #000;
    color: #888;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.slide-right {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.slide-left {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Responsive Desktop Tweaks */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 5rem;
    }

    .split-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #1c1c1c;
    padding: 2rem;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    border: 1px solid var(--primary-gold);
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-btn {
    display: block;
    background: var(--primary-gold);
    color: var(--dark-blue);
    padding: 0.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s;
}

.contact-btn:hover {
    transform: scale(1.02);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 3000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    animation: zoom 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* Other Locations */
.other-locations {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.small-text {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.btn-secondary {
    display: inline-block;
    border: 1px solid var(--primary-sand);
    color: var(--primary-sand);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--primary-sand);
    color: var(--dark-blue);
}

/* Gallery Center Fix */
.gallery-grid {
    justify-content: center;
}

.gallery-item {
    cursor: pointer;
}