.elementor-26489 .elementor-element.elementor-element-a785723{
 
            --display: initial;
        }
 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Unbounded', 'Oswald', 'Work Sans', Arial, Helvetica, sans-serif;
        }
 
        body {
            background-color: #314358;
            color: #333;
            line-height: 1.6;
        }

        html {
            scroll-behavior: smooth;
        }

        /* Header - estilos copiados do front-page.css */
        header {
            background-color: #314358;
            z-index: 1000;
        }

        .navbar-brand.logo img {
            height: 75px;
            width: auto;
        }

        .nav-link {
            color: white !important;
            font-weight: 500;
            transition: color 0.3s ease;
            padding: 10px 20px !important;
        }

        .nav-link:hover {
            color: #D7DE76 !important;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #314358 0%, #2a3847 100%);
            padding: 60px 20px;
            text-align: center;
            color: white;
        }
 
        .hero-content h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            font-weight: 700;
        }
 
        .hero-content .highlight {
            color: #DFDF6F;
        }
 
        .hero-content p {
            font-size: 1.1rem;
            opacity: 0.9;
        }
 
        /* Main Content */
        .main-content {
            background-color: white;
            padding: 60px 20px;
        }
 
        .content-wrapper {
            max-width: 1400px;
            margin: 0 auto;
        }
 
        .intro-text {
            text-align: center;
            margin-bottom: 50px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
 
        .intro-text p {
            margin-bottom: 15px;
            color: #555;
            font-size: 1rem;
        }
 
        /* Segmentos */
        .segments-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }
 
        .segment {
            background-color: #f9f9f9;
            border-radius: 8px;
            padding: 30px;
            border-left: 5px solid #4B736E;
        }
 
        .segment h2 {
            color: #314358;
            font-size: 1.3rem;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
 
        .segment h2 i {
            color: #4B736E;
        }
 
        .courses-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
 
        .course-card {
            background-color: white;
            border-radius: 6px;
            padding: 20px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid #e0e0e0;
        }
 
        .course-card:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transform: translateY(-2px);
        }
 
        .course-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
        }
 
        .course-title {
            color: #314358;
            font-size: 1.05rem;
            font-weight: 600;
            flex: 1;
        }
 
        .request-btn {
            background-color: #4B736E;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            white-space: nowrap;
            margin-left: 10px;
        }
 
        .request-btn:hover {
            background-color: #3a5a56;
            transform: scale(1.05);
        }
 
        .progress-container {
            margin-top: 12px;
        }
 
        .progress-label {
            font-size: 0.85rem;
            color: #666;
            margin-bottom: 5px;
            display: flex;
            justify-content: space-between;
        }
 
        .progress-bar {
            width: 100%;
            height: 8px;
            background-color: #e0e0e0;
            border-radius: 4px;
            overflow: hidden;
        }
 
        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #4B736E 0%, #DFDF6F 100%);
            transition: width 0.3s ease;
        }
 
        /* Modal */
        .modal {
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            animation: fadeIn 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
 
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
 
            to {
                opacity: 1;
            }
        }
 
        .modal.active {
            opacity: 1;
            visibility: visible;
        }
 
        .modal-content {
            background-color: white;
            padding: 40px;
            border-radius: 8px;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            animation: slideIn 0.3s ease;
        }
 
        @keyframes slideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
 
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
 
        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            border-bottom: 2px solid #DFDF6F;
            padding-bottom: 15px;
        }
 
        .modal-header h2 {
            color: #314358;
            font-size: 1.5rem;
        }
 
        .close-btn {
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #666;
            transition: color 0.3s ease;
        }
 
        .close-btn:hover {
            color: #314358;
        }
 
        .form-group {
            margin-bottom: 20px;
        }
 
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #314358;
            font-weight: 600;
            font-size: 0.95rem;
        }
 
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: 'Poppins', Arial, Helvetica, sans-serif;
            font-size: 0.95rem;
            transition: border-color 0.3s ease;
        }
 
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #4B736E;
            box-shadow: 0 0 0 3px rgba(75, 115, 110, 0.1);
        }
 
        .form-group textarea {
            resize: vertical;
            min-height: 80px;
        }
 
        .form-actions {
            display: flex;
            gap: 10px;
            margin-top: 30px;
        }
 
        .submit-btn,
        .cancel-btn {
            flex: 1;
            padding: 12px;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
 
        .submit-btn {
            background-color: #4B736E;
            color: white;
        }
 
        .submit-btn:hover {
            background-color: #3a5a56;
        }
 
        .cancel-btn {
            background-color: #e0e0e0;
            color: #333;
        }
 
        .cancel-btn:hover {
            background-color: #d0d0d0;
        }
 
        .success-message {
            display: none;
            background-color: #d4edda;
            color: #155724;
            padding: 15px;
            border-radius: 4px;
            margin-bottom: 20px;
            border: 1px solid #c3e6cb;
        }
 
        .error-message {
            display: none;
            background-color: #f8d7da;
            color: #721c24;
            padding: 15px;
            border-radius: 4px;
            margin-bottom: 20px;
            border: 1px solid #f5c6cb;
        }
 
        /* Footer */
        /* footer {
            background-color: #314358;
            color: white;
            padding: 50px 20px;
            margin-top: 60px;
            position: relative;
            overflow: hidden;
            margin-bottom: -50px;
        }
 
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
 
        .footer-logo {
            display: flex;
            align-items: center;
        }
 
        .footer-logo img {
            height: 80px;
            width: auto;
        }
 
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
 
        .footer-section h3 {
            color: #DFDF6F;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
 
        .footer-section a {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }
 
        .footer-section a:hover {
            color: #DFDF6F;
        } */
 
        .social-links {
            display: flex;
            gap: 15px;
        }
 
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
        }
 
        .social-links a:hover {
            background-color: #DFDF6F;
            color: #314358;
        }
 
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.8);
        }
 
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 1.8rem;
            }
 
            .segments-container {
                grid-template-columns: 1fr;
            }
 
            .course-header {
                flex-direction: column;
            }
 
            .request-btn {
                margin-left: 0;
                margin-top: 10px;
                width: 100%;
            }
 
            .modal-content {
                padding: 25px;
            }
 
            .footer-content {
                grid-template-columns: 1fr;
            }
        }