/* Reset e Variáveis */
:root {
    --black: #0a0a0a;
    --dark-grey: #2c2c2c;
    --gold: #d4af37;
    --rose-gold: #b76e79;
    --nude: #f5f0e8;
    --cream: #faf8f3;
    --white: #ffffff;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lato', sans-serif;
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #aa8d2f 100%);
    --gradient-rose: linear-gradient(135deg, #c9a7b0 0%, #b76e79 100%);
    --shadow-elegant: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.12);
}

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

body {
    font-family: var(--font-sans);
    color: var(--dark-grey);
    background-color: var(--cream);
    line-height: 1.9;
    font-weight: 300;
    scroll-behavior: smooth;
}

h1, h2, h3, blockquote {
    font-family: var(--font-serif);
    color: var(--black);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.header {
    padding: 35px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid transparent;
    border-image: var(--gradient-gold) 1;
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.1);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.logo a {
    font-family: var(--font-serif);
    font-size: 38px;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    transition: transform 0.3s ease;
    display: inline-block;
}

.logo a:hover {
    transform: scale(1.05);
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 45px;
}

.nav a {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--dark-grey);
    font-weight: 400;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -8px;
    left: 50%;
    background: var(--gradient-gold);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

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

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

/* Hero Section */
.hero {
    position: relative;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--nude) 0%, var(--cream) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(183, 110, 121, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1 {
    font-size: 68px;
    font-style: italic;
    margin-bottom: 30px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    font-weight: 700;
}

.hero-text p {
    font-size: 22px;
    color: var(--dark-grey);
    line-height: 1.8;
    font-weight: 300;
}

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

.about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.about-text h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--gold);
    margin: 20px auto 0;
}

/* Journal Grid */
.journal-section {
    padding: 100px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 70px;
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 25px auto 0;
    border-radius: 10px;
}

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

.journal-entry {
    background: var(--cream);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.journal-entry:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-elegant);
}

.entry-img {
    height: 300px;
    width: 100%;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.entry-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.2) 100%);
}

.bg-nude { 
    background: linear-gradient(135deg, #f5f0e8 0%, #e8dcc5 100%);
}
.bg-black { 
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
}
.bg-gold { 
    background: var(--gradient-gold);
}

.entry-meta {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    padding: 25px 30px 0;
    margin-bottom: 12px;
    font-weight: 600;
}

.journal-entry h3 {
    padding: 0 30px;
    font-size: 26px;
    margin-bottom: 18px;
    line-height: 1.3;
    font-weight: 700;
}

.journal-entry p {
    padding: 0 30px;
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
}

.read-more {
    padding: 0 30px 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--black);
    position: relative;
    display: inline-block;
    margin-left: 30px;
}

.read-more::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 28px;
    left: 0;
    background: var(--gradient-gold);
    transition: width 0.4s ease;
}

.journal-entry:hover .read-more::after {
    width: calc(100% - 30px);
}

/* Quote Section */
.quote-section {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '"';
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 200px;
    font-family: var(--font-serif);
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
}

blockquote {
    font-size: 42px;
    font-style: italic;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    line-height: 1.5;
    font-weight: 400;
}

cite {
    display: block;
    margin-top: 35px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-style: normal;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Partners & Contact */
.partners-section, .contact-section {
    padding: 90px 0;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    background: var(--cream);
}

.partners-section h3, .contact-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 700;
}

.partners-section p, .contact-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
}

.partners-links {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.partners-links a {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 18px;
    color: #888;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.partners-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--gradient-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.partners-links a:hover::after {
    width: 100%;
}

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

.contact-btn {
    display: inline-block;
    margin-top: 40px;
    padding: 18px 50px;
    background: var(--gradient-gold);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: var(--shadow-elegant);
    transition: all 0.4s ease;
}

.contact-btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    text-align: center;
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 40px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 4px;
}

.social-links {
    margin-bottom: 35px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-links a {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--dark-grey);
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.footer-nav-links {
    margin-bottom: 30px;
}

.footer-nav-links a {
    margin: 0 15px;
    color: #999;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

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

.copyright {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 11px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 2px;
}

