/* ========================================
   Money Gloss - Styles
   Design Elegante e Financeiro
   ======================================== */

:root {
    --primary-color: #1a535c;
    --secondary-color: #4ecdc4;
    --accent-color: #f7b801;
    --gold: #ffd700;
    --text-color: #2c2c2c;
    --light-bg: #f8fffe;
    --white: #ffffff;
    --shadow: 0 12px 35px rgba(26, 83, 92, 0.12);
    --shadow-hover: 0 18px 45px rgba(26, 83, 92, 0.2);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 25px;
}

/* ============ Header ============ */
.site-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 1.8rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.2rem;
    letter-spacing: 2px;
    font-weight: 700;
}

.tagline {
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.main-navigation a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: var(--transition);
}

.main-navigation a:hover::after {
    width: 100%;
}

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

/* ============ Hero Section ============ */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, #68d9cf 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '💰';
    position: absolute;
    font-size: 22rem;
    opacity: 0.08;
    right: -7rem;
    top: -7rem;
    animation: spin 30s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--light-bg);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--accent-color) 100%);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(247, 184, 1, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(247, 184, 1, 0.6);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 4rem;
    backdrop-filter: blur(10px);
}

.image-placeholder {
    font-size: 10rem;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ============ Main Content ============ */
.main-content {
    padding: 6rem 0;
    background: var(--light-bg);
}

.content-section {
    background: var(--white);
    padding: 4rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 4rem;
    transition: var(--transition);
}

.content-section:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.content-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 4px solid var(--light-bg);
}

.content-section h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 2.5rem 0 1.5rem 0;
    font-weight: 700;
}

.content-section p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 1.8rem;
    color: var(--text-color);
}

/* ============ Posts Grid ============ */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.post-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 3px solid transparent;
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.post-image {
    background: linear-gradient(135deg, rgba(26, 83, 92, 0.08), rgba(78, 205, 196, 0.08));
    padding: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.post-image .image-placeholder {
    font-size: 5rem;
}

.post-content {
    padding: 2.5rem;
}

.post-content h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.read-more {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.read-more::after {
    content: ' →';
}

.read-more:hover {
    color: var(--accent-color);
    transform: translateX(10px);
}

/* ============ Footer ============ */
.site-footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d3d47 100%);
    color: var(--white);
    padding: 5rem 0 2rem 0;
    margin-top: 6rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

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

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--gold);
    padding-left: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(255, 215, 0, 0.2);
}

/* ============ WhatsApp Button ============ */
.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    padding: 1.2rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 999;
}

.whatsapp-button:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

/* ============ Responsive ============ */
@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-content h2 {
        font-size: 2.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .main-navigation ul {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}
