/* Estilos específicos para a página de cursos */
/* Variáveis de cores baseadas no logo */
:root {
    --primary-color: #091736; /* Azul escuro */
    --secondary-color: #3498db; /* Azul médio */
    --accent-color: #e74c3c; /* Vermelho */
    --light-color: #ecf0f1; /* Branco gelo */
    --dark-color: #2c3e50; /* Azul escuro */
    --text-color: #333;
    --text-light: #7f8c8d;
    --gold-accent: #f1a900; /* Dourado do logo */
}
:root {
    --primary-color: #1a4d8c;
    --secondary-color: #f8b400;
    --accent-color: #4f8a8b;
    --light-color: #f5f5f5;
    --dark-color: #333;
    --text-color: #444;
    --white: #fff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f9f9f9;
}

/* Header */
.main-header {
    background-color: var(--primary-color);
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 80px;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-container img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.logo-text h1 {
    font-family: 'Poppins', serif;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.logo-text p {
    color: var(--light-color);
    font-size: 0.8rem;
    opacity: 0.9;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.main-nav a.active,
.main-nav a:hover {
    color: var(--gold-accent);
}

.main-nav a.active:after,
.main-nav a:hover:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.courses-main {
    padding-top: 70px; /* Compensa o header fixo */
}

.courses-hero {
    background: linear-gradient(rgba(3, 19, 64, 0.975), rgb(15, 100, 146));
    height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.courses-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.courses-hero h1 {
    font-family: 'Poppins', serif;
    font-size: 3rem;
    margin-bottom: 15px;
}

.courses-hero .hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

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

.section-title {
    text-align: center;
    font-family: 'Poppins', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--gold-accent);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.course-header {
    padding: 30px;
    color: white;
    position: relative;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.course-header.basic {
    background: linear-gradient(135deg, #3498db, #2c3e50);
}

.course-header.intermediate {
    background: linear-gradient(135deg, #f39c12, #e74c3c);
}

.course-header.advanced {
    background: linear-gradient(135deg, #9b59b6, #34495e);
}

.course-header h3 {
    font-family: 'Poppins', serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
    z-index: 2;
}

.course-icon {
    position: absolute;
    right: 30px;
    bottom: 30px;
    font-size: 3rem;
    opacity: 0.2;
    z-index: 1;
}

.course-content {
    padding: 30px;
}

.course-features {
    list-style: none;
    margin-bottom: 30px;
}

.course-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.course-features i {
    color: var(--gold-accent);
    margin-right: 10px;
    font-size: 1.2rem;
}

.course-access {
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.course-access p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.access-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.access-button:hover {
    background-color: var(--gold-accent);
    color: var(--primary-color);
}

/* Seção de Preços */
.pricing-section {
    background-color: var(--light-color);
    padding: 80px 0;
}

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

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

.pricing-table:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.pricing-header {
    padding: 30px;
    text-align: center;
    color: white;
}

.pricing-table.basic .pricing-header {
    background: linear-gradient(135deg, #3498db, #2c3e50);
}

.pricing-table.intermediate .pricing-header {
    background: linear-gradient(135deg, #f39c12, #e74c3c);
}

.pricing-table.advanced .pricing-header {
    background: linear-gradient(135deg, #9b59b6, #34495e);
}

.pricing-header h3 {
    font-family: 'Poppins', serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.price-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
}

.pricing-features {
    list-style: none;
    padding: 30px;
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.pricing-features i {
    color: var(--gold-accent);
    margin-right: 10px;
    font-size: 1.2rem;
}

.pricing-button {
    display: block;
    margin: 0 30px 30px;
    padding: 15px;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-button:hover {
    background-color: var(--gold-accent);
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), 
                url('img/cta-bg.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
}

.cta-section .container {
    max-width: 800px;
}

.cta-section h2 {
    font-family: 'Poppins', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--gold-accent);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--gold-accent);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--gold-accent);
}

.cta-button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Responsividade */
@media (max-width: 768px) {
    .courses-hero h1 {
        font-size: 2.5rem;
    }
    
    .courses-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-button, .cta-button.secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .courses-hero h1 {
        font-size: 2rem;
    }
    
    .courses-hero {
        height: 300px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 800px) {
    .news{
        display: grid;
    }
    .logo-text p {
    display: none;
}
}
@media (max-width: 1024px) {
    .welcome-content {
        flex-direction: column;
    }
    
    .welcome-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .welcome-features {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial {
        min-width: 280px;
    }
}
@media (max-width: 768px) {
    .main-header {
        padding: 15px 20px;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background-color: var(--primary-color);
        padding: 30px 20px;
        transition: all 0.3s ease;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .hamburger {
        display: block;
        z-index: 1001;
    }
    
    .hamburger.active div:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active div:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active div:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Restante do seu CSS para mobile... */
}