/* CSS Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* Estilos Globais */
        body {
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Cabeçalho */
        header {
            background-color: #4CAF50;
            color: white;
            padding: 20px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .logo {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
        }

        .logo img {
            height: 75px;
            margin-right: 15px;
        }

        .logo h1 {
            font-size: 2.2rem;
            font-weight: 700;
        }

        /* Navegação */
        nav {
            background-color: #388E3C;
        }

        nav ul {
            display: flex;
            list-style: none;
            justify-content: center;
            flex-wrap: wrap;
        }

        nav ul li {
            position: relative;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            padding: 15px 20px;
            display: block;
            transition: background-color 0.3s;
        }

        nav ul li a:hover {
            background-color: #2E7D32;
        }

        /* Conteúdo Principal */
        main {
            padding: 40px 0;
            min-height: 70vh;
        }

        section {
            margin-bottom: 40px;
        }

        h2 {
            color: #4CAF50;
            margin-bottom: 20px;
            font-size: 1.8rem;
            border-bottom: 2px solid #4CAF50;
            padding-bottom: 10px;
        }

        h3 {
            color: #388E3C;
            margin: 15px 0;
            font-size: 1.4rem;
        }

        p {
            margin-bottom: 15px;
        }

        .dicas-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }

        .dica-card {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .dica-card:hover {
            transform: translateY(-5px);
        }

        .cursos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
        }

        .curso-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .curso-card:hover {
            transform: translateY(-5px);
        }

        .curso-img {
            height: 150px;
            background-color: #ddd;
            background-size: cover;
            background-position: center;
        }

        .curso-info {
            padding: 15px;
        }

        .btn {
            display: inline-block;
            background-color: #4CAF50;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            margin-top: 10px;
            transition: background-color 0.3s;
        }

        .btn:hover {
            background-color: #388E3C;
        }

        /* Rodapé */
        footer {
            background-color: #333;
            color: white;
            padding: 40px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-section h3 {
            color: #4CAF50;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .footer-section p, .footer-section a {
            color: #ddd;
            margin-bottom: 10px;
            display: block;
        }

        .footer-section a {
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #4CAF50;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            font-size: 0.9rem;
        }

        /* Páginas de Políticas */
        .policy-content {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }

        .policy-content h3 {
            margin-top: 25px;
        }

        .policy-content ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .logo h1 {
                font-size: 1.8rem;
            }
            
            nav ul {
                flex-direction: column;
                text-align: center;
            }
            
            .dicas-container, .cursos-grid {
                grid-template-columns: 1fr;
            }
        }
        
/* Cookies*/
.cookie-consent {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #333;
            color: white;
            padding: 15px;
            z-index: 9999;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
        }
        
        .cookie-text {
            flex: 1;
            min-width: 250px;
            margin-right: 15px;
            margin-bottom: 10px;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 8px 15px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .cookie-accept {
            background: #4CAF50;
            color: white;
        }
        
        .cookie-accept:hover {
            background: #45a049;
        }
        
        .cookie-settings {
            background: #f1f1f1;
            color: #333;
        }
        
        .cookie-settings:hover {
            background: #ddd;
        }
        
        .cookie-learn-more {
            color: #4CAF50;
            text-decoration: underline;
            cursor: pointer;
            margin-left: 5px;
        }