﻿/* Estilos específicos para projeto Python Training */

.python-intro {
            background: linear-gradient(135deg, var(--python-color), #2980b9);
            color: white;
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
        }
        
        .course-banner {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 20px;
        }
        
        .banner-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .python-main-icon {
            font-size: 4rem;
        }
        
        .course-stats {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }
        
        .stat-item {
            text-align: center;
            color: white;
        }
        
        .stat-item strong {
            display: block;
            font-size: 1.8rem;
            margin-bottom: 5px;
        }
        
        .course-badge {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: white;
        }
        
        .badge-text {
            text-align: center;
            background: rgba(255, 255, 255, 0.2);
            padding: 15px;
            border-radius: 10px;
        }
        
        .learning-path {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 25px;
            margin: 20px 0;
        }
        
        .path-step {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding: 15px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        .step-icon {
            font-size: 2rem;
            margin-right: 20px;
            min-width: 60px;
            text-align: center;
        }
        
        .step-content h5 {
            color: var(--python-color);
            margin-bottom: 5px;
        }
        
        .step-content small {
            background: var(--python-color);
            color: white;
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 0.75rem;
        }
        
        .tech-curriculum {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 25px;
        }
        
        .curriculum-group {
            margin-bottom: 25px;
        }
        
        .curriculum-group h5 {
            color: var(--python-color);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .tech-topics {
            list-style: none;
            padding: 0;
        }
        
        .tech-topics li {
            padding: 8px 0;
            border-bottom: 1px solid #dee2e6;
            position: relative;
            padding-left: 20px;
        }
        
        .tech-topics li:before {
            content: "\25B6";
            color: var(--python-color);
            position: absolute;
            left: 0;
        }
        
        .modules-container {
            display: grid;
            gap: 25px;
            margin: 30px 0;
        }
        
        .module-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-left: 6px solid var(--python-color);
        }
        
        .module-card.beginner { border-left-color: #27ae60; }
        .module-card.intermediate { border-left-color: #f39c12; }
        .module-card.advanced { border-left-color: #e74c3c; }
        .module-card.web { border-left-color: #9b59b6; }
        .module-card.api { border-left-color: #3498db; }
        .module-card.deploy { border-left-color: #34495e; }
        
        .module-header {
            display: flex;
            align-items: center;
            padding: 25px;
            background: #f8f9fa;
        }
        
        .module-number {
            background: var(--python-color);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            margin-right: 20px;
        }
        
        .module-info h4 {
            margin-bottom: 5px;
        }
        
        .module-duration {
            color: #6c757d;
            font-size: 0.9rem;
        }
        
        .module-body {
            padding: 25px;
        }
        
        .module-topics {
            margin-bottom: 20px;
        }
        
        .module-topics ul {
            list-style: none;
            padding: 0;
        }
        
        .module-topics li {
            padding: 5px 0;
            position: relative;
            padding-left: 20px;
        }
        
        .module-topics li:before {
            content: "\2713";
            color: var(--python-color);
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        
        .module-project {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid var(--python-color);
        }
        
        .projects-showcase {
            margin: 30px 0;
        }
        
        .project-highlight {
            display: flex;
            align-items: center;
            background: white;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .project-image {
            margin-right: 25px;
        }
        
        .project-icon {
            font-size: 4rem;
            color: var(--python-color);
        }
        
        .project-details h5 {
            color: var(--python-color);
            margin-bottom: 10px;
        }
        
        .project-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 15px;
        }
        
        .project-tech .tech {
            background: var(--python-color);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
        }
        
        .capstone-project {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 30px;
            border-radius: 15px;
            margin: 30px 0;
        }
        
        .capstone-option {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 15px;
        }
        
        .capstone-option h6 {
            color: white;
            margin-bottom: 10px;
        }
        
        .resource-section {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 25px;
            height: 100%;
        }
        
        .resource-list {
            margin-top: 20px;
        }
        
        .resource-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding: 15px;
            background: white;
            border-radius: 10px;
        }
        
        .resource-item i {
            font-size: 2rem;
            color: var(--python-color);
            margin-right: 15px;
            min-width: 40px;
        }
        
        .resource-info h6 {
            margin-bottom: 5px;
        }
        
        .resource-info p {
            margin: 0;
            color: #6c757d;
            font-size: 0.9rem;
        }
        
        .platform-features .row {
            gap: 20px 0;
        }
        
        .feature-card {
            background: white;
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            height: 100%;
        }
        
        .feature-card i {
            font-size: 3rem;
            color: var(--python-color);
            margin-bottom: 15px;
        }
        
        .feature-card h6 {
            color: var(--python-color);
            margin-bottom: 10px;
        }
        
        .certification-overview {
            background: linear-gradient(135deg, #f093fb, #f5576c);
            color: white;
            padding: 30px;
            border-radius: 15px;
            margin: 30px 0;
        }
        
        .cert-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 25px;
            height: 100%;
        }
        
        .cert-badge {
            text-align: center;
            margin-bottom: 20px;
        }
        
        .cert-icon {
            font-size: 4rem;
            margin-bottom: 10px;
            display: block;
        }
        
        .cert-benefits {
            list-style: none;
            padding: 0;
        }
        
        .cert-benefits li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .career-section {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 25px;
            height: 100%;
        }
        
        .career-stats {
            display: flex;
            justify-content: space-between;
            margin: 20px 0;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .stat {
            text-align: center;
        }
        
        .stat-number {
            display: block;
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
        }
        
        .stat-label {
            font-size: 0.8rem;
            opacity: 0.8;
        }
        
        .roles-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 10px;
        }
        
        .role-tag {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
        }
        
        .assessment-process {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            margin: 30px 0;
        }
        
        .process-step {
            flex: 1;
            min-width: 250px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .step-num {
            background: var(--python-color);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
        }
        
        .step-content {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            flex: 1;
        }
        
        .step-content h6 {
            color: var(--python-color);
            margin-bottom: 10px;
        }
        
        .testimonials-section .row {
            gap: 20px 0;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            height: 100%;
        }
        
        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .student-avatar i {
            font-size: 3rem;
            color: var(--python-color);
            margin-right: 15px;
        }
        
        .student-info h6 {
            margin-bottom: 5px;
        }
        
        .student-info small {
            color: #6c757d;
        }
        
        .testimonial-content p {
            font-style: italic;
            margin-bottom: 15px;
        }
        
        .outcome {
            background: #f8f9fa;
            padding: 10px 15px;
            border-radius: 8px;
            border-left: 4px solid var(--python-color);
            font-size: 0.9rem;
        }
        
        .cta-section {
            background: linear-gradient(135deg, #00b894, #00cec9);
            color: white;
            padding: 40px;
            border-radius: 20px;
            margin: 40px 0;
        }
        
        .course-offer {
            text-align: center;
        }
        
        .offer-price {
            margin-bottom: 30px;
        }
        
        .price-old {
            text-decoration: line-through;
            opacity: 0.7;
            font-size: 1.2rem;
        }
        
        .price-current {
            display: block;
            font-size: 3rem;
            font-weight: bold;
            margin: 10px 0;
        }
        
        .price-installment {
            font-size: 1.1rem;
        }
        
        .bonus-list {
            list-style: none;
            padding: 0;
            text-align: left;
            display: inline-block;
        }
        
        .bonus-list li {
            padding: 5px 0;
        }
        
        .python-nav {
            list-style: none;
            padding: 0;
        }
        
        .python-nav li {
            margin-bottom: 8px;
        }
        
        .python-nav a {
            display: flex;
            align-items: center;
            padding: 8px 12px;
            color: var(--wiki-text);
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.2s;
        }
        
        .python-nav a:hover {
            background-color: rgba(52, 152, 219, 0.1);
        }
        
        .python-nav i {
            margin-right: 8px;
            color: var(--python-color);
        }
        
        @media (max-width: 768px) {
            .banner-content {
                flex-direction: column;
                text-align: center;
            }
            
            .course-stats {
                justify-content: center;
            }
            
            .path-step {
                flex-direction: column;
                text-align: center;
            }
            
            .step-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .project-highlight {
                flex-direction: column;
                text-align: center;
            }
            
            .project-image {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .assessment-process {
                flex-direction: column;
            }
            
            .career-stats {
                flex-direction: column;
                gap: 20px;
            }
        }