@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --bg-dark: #050a14;
    --bg-card: #0a1120;
    --accent-gold: #c1a35f;
    --accent-gold-glow: rgba(193, 163, 95, 0.3);
    --text-white: #f8f9fa;
    --text-muted: rgba(248, 249, 250, 0.6);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Antigravity Utilities */
.glass-effect {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.floating {
    will-change: transform;
    transition: var(--transition);
}

.floating:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Sections Layout */
section {
    padding: 100px 5%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, rgba(5, 10, 20, 0.7), var(--bg-dark)),
        url('../assets/hero.png') no-repeat center center/cover;
    text-align: center;
    align-items: center;
}

.hero-content {
    max-width: 900px;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero h1 span {
    color: var(--accent-gold);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-button:hover {
    background-color: #e5c98d;
    transform: scale(1.05);
    box-shadow: 0 10px 30px var(--accent-gold-glow);
}

/* Grid Sections */
.sections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card {
    padding: 40px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 20px;
    opacity: 0.8;
}

/* Stats Section */
.stats {
    background-color: #080f1d;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    display: block;
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Footer Section */
.footer {
    min-height: auto;
    padding: 60px 5%;
    background-color: #03060d;
    text-align: center;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    display: block;
}

.footer-logo span {
    color: var(--accent-gold);
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info p {
    color: var(--text-muted);
}

/* Animations JS classes */
.reveal {
    /* Removido opacity: 0 para evitar que o conteúdo suma se o JS falhar */
    will-change: transform, opacity;
}

@media (max-width: 768px) {
    section {
        padding: 60px 20px;
    }
}