/* Estilos da Página Inicial */

.hero {
    background: linear-gradient(135deg, var(--purple-primary) 0%, var(--purple-dark) 100%);
    color: var(--white);
    padding: 6rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 10 L25 40 L40 70 L55 40 Z' fill='rgba(255,214,0,0.1)' /%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--yellow-primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.graffiti-logo {
    width: 100%;
    max-width: 600px;
    margin: 3rem auto 0;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* Seção Sobre */
.about-section {
    background: var(--white);
    padding: 5rem 2rem;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--purple-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.about-image:hover {
    transform: translateY(-10px);
}

.about-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Seção de Valores */
.values-section {
    background: var(--yellow-primary);
    padding: 5rem 2rem;
    position: relative;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--purple-light), var(--purple-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.value-card h3 {
    color: var(--purple-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card ul {
    list-style: none;
    text-align: left;
}

.value-card li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.value-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--purple-primary);
    font-weight: bold;
}

/* Seção de Categorias */
.categories-section {
    background: var(--white);
    padding: 5rem 2rem;
}

.categories-section h2 {
    font-size: 2.5rem;
    color: var(--purple-primary);
    text-align: center;
    margin-bottom: 3rem;
}

.categories-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--white);
    border: 2px solid var(--purple-primary);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.category-card:hover {
    background: var(--purple-primary);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 44, 145, 0.3);
}

.category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.category-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--purple-primary);
}

.category-card:hover h3,
.category-card:hover p {
    color: var(--white);
}

.category-card p {
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* Seção de Cursos */
.courses-section {
    background: var(--purple-primary);
    padding: 5rem 2rem;
    position: relative;
}

.courses-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext x='20' y='50' font-size='40' fill='rgba(255,214,0,0.05)'%3E&lt;/&gt;%3C/text%3E%3C/svg%3E");
    opacity: 0.3;
}

.courses-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    color: var(--white);
}

.courses-content h2 {
    font-size: 2.5rem;
    color: var(--yellow-primary);
    margin-bottom: 1.5rem;
}

.courses-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.course-image {
    width: 100%;
    max-width: 600px;
    margin: 2rem auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Seção CTA */
.cta-section {
    background: var(--yellow-primary);
    padding: 4rem 2rem;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--purple-primary);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--purple-dark);
    margin-bottom: 2rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-images {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
}
