/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variáveis CSS baseadas no site de referência */
:root {
    --primary-yellow: #FFD700;
    --secondary-yellow: #FFA500;
    --dark-color: #333333;
    --black-color: #000000;
    --white-color: #FFFFFF;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
    --gradient-yellow: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-orange: linear-gradient(45deg, #FF8C00 0%, #FFD700 100%);
}

/* Estilos gerais */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--gradient-yellow);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo img {
    height: 60px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 0;
}

nav li {
    margin: 0;
}

nav a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: bold;
    padding: 12px 20px;
    display: block;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

nav a:hover {
    background-color: var(--dark-color);
    color: var(--primary-yellow);
    transform: translateY(-2px);
    border-color: var(--dark-color);
}

/* Hero Section */
.hero {
    background: var(--gradient-yellow);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 100px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    flex: 1;
    max-width: 50%;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: bold;
    color: var(--black-color);
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.categorias {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--black-color);
}

.hero-image {
    flex: 1;
    text-align: center;
    max-width: 50%;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.carousel-indicators {
    display: flex;
    gap: 10px;
    margin: 30px 0;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: var(--dark-color);
    transform: scale(1.2);
}

.whatsapp-section {
    text-align: center;
    margin-top: 40px;
}

.whatsapp-section p {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.whatsapp-btn {
    background-color: var(--dark-color);
    color: var(--primary-yellow);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background-color: #25D366;
    color: white;
}

/* Sobre Section */
.sobre {
    padding: 80px 0;
    background-color: var(--white-color);
}

.sobre-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.sobre-text {
    flex: 1;
}

.sobre-text h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.sobre-text p {
    font-size: 1.1rem;
    color: var(--gray-medium);
    line-height: 1.8;
}

.sobre-icon {
    flex: 0 0 100px;
}

.sobre-icon img {
    width: 80px;
    height: 80px;
}

/* Cursos Section */
.cursos {
    padding: 80px 0;
    background-color: var(--gray-light);
}

.cursos h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.cursos p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-medium);
    margin-bottom: 50px;
}

.cursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.curso-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.curso-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.curso-item h3 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.curso-item img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    margin-top: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.cursos-extras {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.extra-item {
    background: var(--white-color);
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.extra-item h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.extra-item p {
    font-size: 1rem;
    color: var(--gray-medium);
    margin-bottom: 0;
}

.matricule-se-btn {
    margin-top: 20px;
    background-color: var(--dark-color);
    color: var(--primary-yellow);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.matricule-se-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background-color: #25D366;
    color: white;
}

/* Notícias Section */
.noticias {
    padding: 80px 0;
    background-color: var(--white-color);
}

.noticias h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 50px;
}

.noticias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.noticia-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.noticia-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.noticia-content {
    padding: 20px;
}

.noticia-content h3 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 10px;
    line-height: 1.4;
}

.data {
    font-size: 0.9rem;
    color: var(--gray-medium);
}

/* Footer */
footer {
    background: var(--gradient-yellow);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 50px;
    margin-bottom: 30px;
}

.contato-info h3,
.horarios h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.endereco p,
.telefones p,
.horarios-lista p {
    margin-bottom: 8px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.redes-sociais {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.social-link img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.social-link:hover img {
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    color: var(--dark-color);
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.empresa-info {
    text-align: right;
    font-size: 0.9rem;
    color: var(--gray-medium);
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice p {
    flex: 1;
    margin-right: 20px;
}

.cookie-notice a {
    color: var(--primary-yellow);
}

.cookie-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

#cookie-config {
    background: transparent;
    color: white;
    border: 1px solid white;
}

#cookie-accept {
    background: var(--primary-yellow);
    color: var(--dark-color);
}

.cookie-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 15px;
}

/* Responsividade */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }
    
    nav a {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .hero {
        padding-top: 150px;
        min-height: auto;
        padding-bottom: 50px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-text,
    .hero-image {
        max-width: 100%;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .sobre-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .empresa-info {
        text-align: center;
    }
    
    .cookie-notice {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .cookie-notice p {
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .cursos-grid {
        grid-template-columns: 1fr;
    }
    
    .noticias-grid {
        grid-template-columns: 1fr;
    }
}


