/*
Theme Name: Professora Ana - Educação Infantil
Theme URI: https://profanaeducacao.com.br
Author: Professora Ana
Author URI: https://profanaeducacao.com.br
Description: Tema personalizado para educação infantil com design moderno, cores vibrantes e foco em criatividade. Ideal para professoras e escolas infantis.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: professora-ana
Tags: education, colorful, creative, responsive, custom-menu, custom-logo, featured-images
*/

/* ========================================
   RESET E BASE
   ======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --pink: #ff73c3;
    --pink-dark: #e055a8;
    --pink-light: #ff9dd4;
    --yellow: #ffd93d;
    --green: #6bcb77;
    --blue: #4d96ff;
    --red: #ff6b6b;
    --purple: #c084fc;
    --black: #000000;
    --white: #ffffff;
    --gray: #1a1a1a;
    --gray-light: #2a2a2a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.1;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   NAVEGAÇÃO
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
}

.site-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.site-logo span {
    color: var(--pink);
}

.main-navigation {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-navigation a {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.main-navigation a:hover {
    opacity: 1;
    color: var(--pink);
}

.cta-button {
    background: var(--pink);
    color: var(--black);
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--pink-light);
    transform: translateY(-2px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 2;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(6, 1fr);
    z-index: 3;
}

.grid-cell {
    border: 1px solid rgba(255,255,255,0.1);
}

.grid-cell.pink {
    background: var(--pink);
    opacity: 0.9;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 1.5rem;
}

.hero-title span {
    display: inline-block;
    background: var(--pink);
    color: var(--black);
    padding: 0.2em 0.4em;
    margin: 0.1em;
}

.hero-subtitle {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-cta {
    display: inline-block;
    border: 2px solid var(--pink);
    color: var(--pink);
    padding: 1rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-cta:hover {
    background: var(--pink);
    color: var(--black);
}

/* ========================================
   SECTION LABEL
   ======================================== */
.section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--pink);
    margin-bottom: 1rem;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--pink);
}

/* ========================================
   METODOLOGIA SECTION
   ======================================== */
.metodologia-section {
    padding: 8rem 2rem;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.decorative-text {
    position: absolute;
    font-size: 20vw;
    font-weight: 900;
    opacity: 0.03;
    pointer-events: none;
    text-transform: uppercase;
    bottom: 0;
    left: -5%;
}

.metodologia-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.metodologia-header {
    margin-bottom: 2rem;
}

.metodologia-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-transform: uppercase;
}

.metodologia-title .accent {
    color: var(--pink);
}

.professora-tag {
    display: inline-block;
    background: var(--pink);
    color: var(--black);
    padding: 0.5rem 1rem;
    font-weight: 700;
    margin-top: 1rem;
}

.professora-image {
    position: relative;
}

.professora-image img {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(255,115,195,0.3));
}

.professora-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.professora-info p {
    font-size: 1.125rem;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 2rem;
}

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

.stat-item {
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem;
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--pink);
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.6;
}

.color-swatches {
    margin-bottom: 2rem;
}

.color-swatches-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 0.75rem;
}

.swatch-container {
    display: flex;
    gap: 0.75rem;
}

.swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.swatch:hover {
    transform: scale(1.2);
}

/* ========================================
   ATIVIDADES SECTION
   ======================================== */
.atividades-section {
    padding: 8rem 2rem;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.atividades-header {
    text-align: center;
    margin-bottom: 4rem;
}

.atividades-header .section-label {
    justify-content: center;
}

.atividades-header .section-label::before,
.atividades-header .section-label::after {
    width: 50px;
}

.atividades-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    text-transform: uppercase;
}

.atividades-title .accent {
    color: var(--pink);
}

.atividades-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 2px;
    max-width: 1400px;
    margin: 0 auto;
}

.atividade-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.atividade-card:hover {
    transform: scale(1.02);
    z-index: 10;
}

.atividade-card.pink { background: var(--pink); }
.atividade-card.yellow { background: var(--yellow); color: var(--black); }
.atividade-card.green { background: var(--green); color: var(--black); }
.atividade-card.blue { background: var(--blue); }
.atividade-card.red { background: var(--red); }
.atividade-card.purple { background: var(--purple); }

.atividade-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.atividade-card .subtitle {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.atividade-card .description {
    font-size: 0.875rem;
    text-align: center;
    opacity: 0.9;
    line-height: 1.6;
}

.atividades-hint {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.875rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ========================================
   FILOSOFIA SECTION
   ======================================== */
.filosofia-section {
    padding: 8rem 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.filosofia-container {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 600px;
}

.filosofia-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.filosofia-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.filosofia-title .accent {
    color: var(--pink);
}

.filosofia-text {
    font-size: 1.125rem;
    line-height: 1.9;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.filosofia-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feature-tag::before {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--pink);
}

.filosofia-image {
    position: relative;
    overflow: hidden;
}

.filosofia-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.filosofia-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--black), transparent);
    z-index: 1;
}

.diagonal-line {
    position: absolute;
    top: 0;
    left: 55%;
    width: 2px;
    height: 100%;
    background: var(--pink);
    transform: rotate(5deg);
    transform-origin: top center;
    z-index: 2;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: var(--gray);
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.footer-brand h2 span {
    color: var(--pink);
}

.footer-brand p {
    opacity: 0.7;
    line-height: 1.8;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--pink);
    border-color: var(--pink);
}

.footer-links h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    opacity: 0.7;
    font-size: 0.9375rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--pink);
}

.footer-contact {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.875rem;
    opacity: 0.6;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    font-size: 0.875rem;
    opacity: 0.6;
}

.footer-legal a:hover {
    opacity: 1;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .metodologia-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .atividades-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 250px);
    }
    
    .filosofia-container {
        grid-template-columns: 1fr;
    }
    
    .filosofia-image {
        min-height: 400px;
    }
    
    .diagonal-line {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 1rem;
    }
    
    .main-navigation {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .atividades-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 200px);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* ========================================
   WORDPRESS DEFAULTS
   ======================================== */
.alignleft {
    float: left;
    margin-right: 1.5rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.875rem;
    opacity: 0.7;
    text-align: center;
    margin-top: 0.5rem;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
