/* ========================================
   Gordinhas Assumidas - Styles
   Design Empoderador e Acolhedor
   ======================================== */

:root {
    --primary-color: #e91e63;
    --secondary-color: #f06292;
    --accent-color: #ff4081;
    --purple: #9c27b0;
    --text-color: #2c2c2c;
    --light-bg: #fff0f5;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(233, 30, 99, 0.15);
    --shadow-hover: 0 15px 40px rgba(233, 30, 99, 0.25);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

/* ============ Header ============ */
.site-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--purple) 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: 'Poppins', sans-serif;
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 0.3rem;
    letter-spacing: 1px;
    font-weight: 700;
}

.tagline {
    font-size: 1rem;
    color: var(--light-bg);
    font-weight: 600;
    letter-spacing: 2px;
    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(--white);
    transition: var(--transition);
    border-radius: 2px;
}

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

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

.hero::before {
    content: '💖';
    position: absolute;
    font-size: 20rem;
    opacity: 0.08;
    right: -6rem;
    top: -6rem;
    animation: heartbeat 2s ease-in-out infinite;
}

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

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

.hero-content h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 4.5rem;
    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.2rem 3rem;
    background: var(--white);
    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(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255,255,255,0.5);
    background: var(--light-bg);
}

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

.hero-image {
    background: rgba(255,255,255,0.15);
    border-radius: 30px;
    padding: 4rem;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255,255,255,0.3);
}

.image-placeholder {
    font-size: 8rem;
}

.image-caption {
    color: var(--white);
    margin-top: 1.5rem;
    font-style: italic;
    font-size: 1.2rem;
}

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

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

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

.content-section h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.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 var(--light-bg);
}

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

.post-image {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(156, 39, 176, 0.1));
    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(--accent-color);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

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

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

/* ============ Community Section ============ */
.community-section {
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffe0f0 100%);
}

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

.community-intro h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.stat {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.community-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border-left: 6px solid var(--accent-color);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateX(15px);
}

.feature-card h4 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.join-button {
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--purple));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.join-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.4);
}

/* ============ Footer ============ */
.site-footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--purple) 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-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.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(--light-bg);
    padding-left: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(255,255,255,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;
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 3rem;
    }
    
    .community-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .main-navigation ul {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}
