/* Reset e Variáveis */
:root {
    --mint-green: #7bed9f;
    --soft-pink: #ff6b9d;
    --pastel-pink: #ffeaa7;
    --vivid-pink: #fd79a8;
    --coral: #fab1a0;
    --text-color: #2d3436;
    --heading-color: #2c3e50;
    --white: #fff;
    --light-bg: #fdfbfb;
    --gradient-pink: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    --gradient-mint: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    --shadow-soft: 0 8px 30px rgba(253, 121, 168, 0.12);
    --shadow-hover: 0 15px 40px rgba(253, 121, 168, 0.2);
}

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

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-color);
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    line-height: 1.7;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5 {
    font-family: 'Lato', sans-serif;
    color: var(--heading-color);
    font-weight: 700;
}

h1 span {
    color: var(--vivid-pink);
    font-family: 'Pacifico', cursive;
    font-weight: 400;
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 18px 0;
    box-shadow: 0 5px 20px rgba(253, 121, 168, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--vivid-pink), var(--mint-green)) 1;
    animation: slideDown 0.6s ease-out;
}

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.logo h1 {
    font-size: 32px;
    margin: 0;
    font-weight: 700;
    transition: transform 0.3s ease;
}

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

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--heading-color);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

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

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

.main-nav a:hover {
    color: var(--vivid-pink);
}

.btn-highlight {
    background: var(--gradient-pink);
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    background: var(--gradient-pink);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '✂️🧵🎨';
    position: absolute;
    top: 20%;
    left: 10%;
    font-size: 80px;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.hero-section::after {
    content: '🌸💐🦋';
    position: absolute;
    bottom: 20%;
    right: 10%;
    font-size: 80px;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(253, 121, 168, 0.3);
    animation: fadeInUp 1s ease-out;
}

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

.hero-section h2 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--heading-color);
    font-weight: 800;
    line-height: 1.2;
}

.hero-section p {
    font-size: 22px;
    margin-bottom: 35px;
    color: var(--text-color);
    line-height: 1.6;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--mint-green) 0%, #7bed9f 100%);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(123, 237, 159, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(123, 237, 159, 0.4);
}

/* Intro Section */
.intro-section {
    padding: 60px 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro-section h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--vivid-pink);
}

/* Blog Grid */
.blog-grid-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #fdfbfb 100%);
}

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

.blog-grid-section h3 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    font-weight: 800;
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.post-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

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

.post-img {
    height: 220px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.placeholder-pink { 
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}
.placeholder-green { 
    background: linear-gradient(135deg, #7bed9f 0%, #a8edea 100%);
}
.placeholder-blue { 
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.post-content {
    padding: 30px;
}

.post-content h4 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--heading-color);
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--vivid-pink);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more:hover {
    transform: translateX(5px);
    color: var(--soft-pink);
}

/* Tips Section */
.tips-section {
    padding: 80px 20px;
    background: var(--gradient-mint);
}

.tips-section h3 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 42px;
    font-weight: 800;
    color: var(--heading-color);
}

.tips-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 35px;
}

.tip-item {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    border: 3px solid transparent;
    background-clip: padding-box;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    position: relative;
}

.tip-item::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--gradient-pink);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tip-item:hover::before {
    opacity: 1;
}

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

.tip-item h4 {
    margin-bottom: 18px;
    font-size: 24px;
    font-weight: 700;
}

/* Authority Links */
.authority-section {
    padding: 50px 20px;
    text-align: center;
    background-color: var(--white);
    border-top: 5px solid var(--pastel-pink);
}

.authority-list {
    list-style: none;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.authority-list a {
    color: var(--text-color);
    text-decoration: underline;
    font-weight: 600;
}

/* CTA Final */
.cta-final {
    padding: 80px 20px;
    text-align: center;
    background: var(--gradient-pink);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

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

.cta-final h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 42px;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.cta-final p {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 25px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-whatsapp:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
    padding: 60px 20px 30px;
}

.footer-cols {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    gap: 40px;
}

.footer-cols .col {
    flex: 1;
    min-width: 250px;
}

.footer-cols h5 {
    background: var(--gradient-mint);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 20px;
    margin-bottom: 18px;
    font-weight: 700;
}

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

.footer-cols a {
    color: #bdc3c7;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-cols a:hover {
    color: var(--mint-green);
    transform: translateX(5px);
}

.copyright {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #95a5a6;
}

