* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Muli', sans-serif;
            line-height: 1.6;
            background: linear-gradient(135deg, white 0%, white 100%);
            min-height: 100vh;
            background: rgba(240, 249, 255, 0.9)
;
        .header {
            background:#f5fffa;
            backdrop-filter: blur(10px);
            padding: 1.5rem 0;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid #f5fffa;
            margin-bottom: 2rem;

        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

         .page-title {
            color: #54605A;
            font-size: 2rem;
            font-weight: 700;
            margin: 0;
        }

       .breadcrumb-nav{
            color: #54605A;
            font-size: 1.1rem;
            font-weight: 500;
        }

        .breadcrumb-nav a {
            color: #54605A;
            text-decoration: none;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
        }

        .breadcrumb a:hover {
            color: rgba(255, 255, 255, 0.8);
        }

        .hero-section {
            background: linear-gradient(135deg, rgba(51, 153, 0, 0.9), rgba(34, 136, 0, 0.9));
            padding: 4rem 0;
            text-align: center;
            color: white;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #fff, #e0e7ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: fadeInUp 1s ease;
        }

        .breadcrumb {
            margin-bottom: 2rem;
            opacity: 0.8;
        }

        .breadcrumb a {
            color: white;
            text-decoration: none;
            margin: 0 0.5rem;
        }

        .main-content {
            max-width: 1200px;
            margin: -2rem auto 0;
            padding: 0 2rem;
            position: relative;
            z-index: 10;
        }

        .course-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 3rem;
            margin-bottom: 2rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            animation: slideUp 0.8s ease;
        }

        .course-header {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .course-title {
            font-size: 2.5rem;
            color: #2d3748;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .course-subtitle {
            color: #339900;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .course-description {
            color: #4a5568;
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: justify;
        }

        .course-info {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

       .info-item {
            background: linear-gradient(135deg, #92dd78, #dcfceb);
            color: #54605A;
            padding: 0.3rem 0.5rem;   
            border-radius: 10px;       /* Cantos menos arredondados */
            text-align: center;
            font-size: 0.95rem;       
            box-shadow: 0 2px 8px rgba(51, 153, 0, 0.18); /* Sombra mais leve */
            min-width: 80px;           
            display: inline-block;
            width: 150px;
    }

        .info-label {
            font-size: 0.9rem;
            opacity: 0.9;
            margin-bottom: 0.5rem;
        }

        .info-value {
            font-size: 1.3rem;
            font-weight: 700;
        }

        .objectives-section {
            margin: 3rem 0;
        }

        .section-title {
            font-size: 2rem;
            color: #2d3748;
            margin-bottom: 2rem;
            text-align: center;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #339900, #228800);
            border-radius: 2px;
        }

        .objectives-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .objective-item {
            background: linear-gradient(135deg, rgba(51, 153, 0, 0.1), rgba(34, 136, 0, 0.1));
            padding: 1.5rem;
            border-radius: 15px;
            border-left: 4px solid #339900;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .objective-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(51, 153, 0, 0.2);
        }

        .curriculum-section {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 249, 255, 0.9));
            padding: 3rem;
            border-radius: 20px;
            margin: 2rem 0;
        }

        .module {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            margin-bottom: 1rem;
            border: 1px solid rgba(51, 153, 0, 0.2);
            transition: all 0.3s ease;
        }

        .module:hover {
            box-shadow: 0 5px 20px rgba(51, 153, 0, 0.15);
            transform: translateX(10px);
        }

        .module-title {
            color: #339900;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .cta-section {
            background: linear-gradient(135deg,  #92dd78, #dcfceb);
            color: #54605A;
            padding: 3rem;
            border-radius: 20px;
            text-align: center;
            margin: 2rem 0;
        }

        .cta-button {
            background: white;
            color: #339900;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .course-header {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .course-card {
                padding: 2rem;
            }

            .nav-container {
                flex-direction: column;
                gap: 1rem;
            }
        }

        /* New styles for the additional section */
        .services-section {
            background: linear-gradient(135deg, #92dd78, #dcfceb);
            padding: 4rem 0;
            margin-top: 4rem;
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        .service-title {
            color:  #54605A;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .service-description {
            color:  #54605A;
            font-size: 1rem;
            line-height: 1.6;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .course-header {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .course-card {
                padding: 2rem;
            }

            .nav-container {
                flex-direction: column;
                gap: 1rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .service-card {
                padding: 1.5rem;
            }
        }

         .objectives-list {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 249, 255, 0.9));
            padding: 2.5rem;
            border-radius: 20px;
            margin-top: 2rem;
            box-shadow: 0 10px 30px rgba(51, 153, 0, 0.1);
        }

        .objective-item {
            background: white;
            padding: 1.5rem 2rem;
            margin-bottom: 1rem;
            border-radius: 15px;
            border-left: 5px solid #339900;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .objective-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(135deg, #339900, #228800);
            transition: width 0.3s ease;
        }

        .objective-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(51, 153, 0, 0.2);
            background: linear-gradient(135deg, rgba(51, 153, 0, 0.05), rgba(255, 255, 255, 1));
        }

        .objective-item:hover::before {
            width: 100%;
            opacity: 0.05;
        }

        .objective-item:last-child {
            margin-bottom: 0;
        }

        .objective-text {
            color: #2d3748;
            font-size: 1.1rem;
            line-height: 1.7;
            font-weight: 500;
        }
    }

    #movetop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background: #ddf7d0;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    padding: 0;
    transition: background 0.2s;
}
#movetop img {
    width: 24px;
    height: 24px;
    display: block;
    margin: auto;
}
#movetop:hover {
    background: #228800;
}

/* Estilos básicos para o rodapé */
footer {
  background-color: #565757; 
  color: white; 
  padding: 40px 20px;
  font-family: 'Muli', sans-serif; 
}

.rodape-container {
  display: flex; 
  flex-wrap: wrap; 
  justify-content: space-around; 
  max-width: 1200px;
  margin: 0 auto; 
}

.coluna {
  flex: 1; 
  min-width: 250px; 
  margin: 20px;
}

.coluna h3 {
  font-size: 1.2em;
  border-bottom: 2px solid #5a8e3d; /* Linha verde abaixo do título */
  padding-bottom: 10px;
  margin-bottom: 20px;
}

/* Estilos para a lista de serviços */
.coluna ul {
  list-style-type: none; /* Remove os marcadores de lista */
  padding: 0;
}

.coluna ul li {
  margin-bottom: 10px;
}

/* Estilos para o logo */
.coluna img {
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
}

#movetop {
    display: none; /* Escondido por padrão */
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background: #ddf7d0;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: background 0.2s;
}
#movetop img {
    width: 24px;
    height: 24px;
    display: block;
    margin: auto;
}
#movetop:hover {
    background: #228800;
}

/* NOVO ESTILO: Garante que o link em volta do H3 pareça um título */
.course-content a {
    text-decoration: none; /* Remove o sublinhado */
    color: inherit; /* Garante que a cor padrão do link não seja usada */
    display: block; /* Opcional: para que o link ocupe toda a largura */
}

/* NOVO ESTILO: Garante que o título dentro do link mantenha a cor e o estilo */
.course-content a .course-title {
    color: #333; /* Cor do seu título original */
    /* Você pode adicionar um efeito hover para o link que contém o título */
}

.course-content a:hover .course-title {
    color: #339900; /* Cor de hover que você gosta, como a cor principal do seu site */
    text-decoration: underline; /* Opcional: Adiciona sublinhado no hover para indicar que é clicável */
}
   
/* Estilos para o Rodapé SETMA */
.footer-setma {
    background-color: #464646; 
    background-image: repeating-linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.05),
        rgba(0, 0, 0, 0.05) 1px,
        transparent 1px,
        transparent 2px
    );
    
    /* Configurações básicas */
    width: 100%;
    padding: 20px 0; /* Espaçamento interno superior e inferior */
    text-align: center; /* Centraliza o texto */
    box-sizing: border-box; /* Garante que padding e border não aumentem a largura */
}

/* Container para centralizar e limitar a largura do conteúdo */
.footer-setma .container-setma {
    max-width: 1200px; /* Largura máxima, ajuste se necessário */
    margin: 0 auto; /* Centraliza o container */
}

/* Estilos para o texto de direitos autorais */
.footer-setma p {
    color: #cccccc; /* Cor da fonte cinza clara */
    font-family: 'Muli', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    margin: 0; 
}

/* Links em branco por padrão */
a {
    color: white;
    text-decoration: none;
}

/* Links em verde ao passar o cursor */
a:hover {
    color:#339900;
}
