
        :root {
            --primary: #4F46E5;
            --primary-dark: #4338CA;
            --primary-light: #E0E7FF;
            --secondary: #26eec3;
            --secondary-dark: #1dc9a8;
            --dark: #1F2937;
            --light: #F9FAFB;
            --gray: #6B7280;
            --light-gray: #E5E7EB;
            --success: #10B981;
            --warning: #F59E0B;
            --danger: #EF4444;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: #f5f5f7;
            color: var(--dark);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            background: linear-gradient(134deg, #032049, #5660e3);
            color: white;
            padding: 15px 0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 24px;
            font-weight: 700;
        }
        
        .logo-icon {
           width: 58px;
           height: 39px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        nav a:hover {
            opacity: 0.8;
            transform: translateY(-2px);
        }
        
        .hero {
            padding: 80px 0 50px;
            text-align: center;
            background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('https://images.unsplash.com/photo-1521791136064-7986c2920216?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2069&q=80') no-repeat center center/cover;
        }
        
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #000615, #263aee);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .search-container {
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
            max-width: 900px;
            margin: 0 auto 40px;
            border: 1px solid var(--light-gray);
        }
        
        .search-box {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .search-input {
            flex: 1;
            padding: 16px 20px;
            border: 2px solid var(--light-gray);
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s;
        }
        
        .search-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px var(--primary-light);
        }
        
        .search-btn {
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            color: white;
            border: none;
            border-radius: 10px;
            padding: 0 30px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .search-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(79, 70, 229, 0.4);
        }
        
          .search-btn .spinner {
            display: none;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s ease-in-out infinite;
        }
        
        .search-btn.loading .spinner {
            display: inline-block;
        }
        
        .search-btn.loading #search-text {
            display: none;
        }
        
        .filters-container {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .filter-select {
            padding: 10px 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 14px;
            outline: none;
            background-color: white;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .filter-select:focus {
            border-color: #4a6bff;
        }
        
        .filter-select option {
            padding: 10px;
        }
        
        .filter-tag {
            display: inline-flex;
            align-items: center;
            padding: 8px 15px;
            background-color: #f0f2ff;
            border-radius: 20px;
            font-size: 14px;
            color: #4a6bff;
            cursor: pointer;
            transition: all 0.3s;
            margin-right: 8px;
            margin-bottom: 8px;
        }
        
        .filter-tag i {
            margin-right: 8px;
        }
        
        .filter-tag:hover {
            background-color: #e0e4ff;
        }
        
        .filter-tag.active {
            background-color: #4a6bff;
            color: white;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        
    .map-container {
    height: 500px; /* Reduzido de 600px */
    width: 90%; /* Adicionado para centralização */
    margin: 0 auto 60px; /* Centraliza horizontalmente */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid var(--light-gray);
}

@media (max-width: 768px) {
    .map-container {
        width: 100% !important;
        margin-left: 0;
        margin-right: 0;
        border-radius: 0;
    }
}
        
        #map {
            width: 100%;
            height: 100%;
        }
        
        .map-overlay {
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 1000;
            background: white;
            padding: 10px 15px;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 10px;
            border: 1px solid var(--light-gray);
        }
        
        .map-overlay select {
            border: 1px solid var(--light-gray);
            border-radius: 6px;
            padding: 6px 12px;
            font-size: 14px;
            transition: all 0.2s;
        }
        
        .map-overlay select:focus {
            outline: none;
            border-color: var(--primary);
        }
        
        .job-listings {
            margin-bottom: 80px;
        }
        
        .section-title {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            border-radius: 2px;
        }
        
        .jobs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .job-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid var(--light-gray);
            display: flex;
            flex-direction: column;
        }
        
        .job-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }
        
        .job-card-header {
            padding: 20px;
            border-bottom: 1px solid var(--light-gray);
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .company-logo {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--primary-light), white);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-weight: 700;
            font-size: 20px;
            flex-shrink: 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .job-info {
            flex-grow: 1;
        }
        
        .job-info h3 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--dark);
        }
        
        .job-info p {
            color: var(--gray);
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .job-card-body {
            padding: 20px;
            flex-grow: 1;
        }
        
        .job-type {
            display: inline-flex;
            align-items: center;
            background-color: #D1FAE5;
            color: var(--success);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 15px;
            gap: 5px;
        }
        
        .job-description {
            color: var(--gray);
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .job-meta {
            display: flex;
            justify-content: space-between;
            color: var(--gray);
            font-size: 14px;
            margin-top: auto;
        }
        
        .job-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .job-card-footer {
            padding: 15px 20px;
            background-color: #F9FAFB;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid var(--light-gray);
        }
        
        .job-category {
            background-color: var(--primary-light);
            color: var(--primary-dark);
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }
        
        .apply-btn {
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            color: white;
            border: none;
            border-radius: 6px;
            padding: 8px 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .apply-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(79, 70, 229, 0.4);
        }
        
        .stats-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 60px;
        }
        
        .stat-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            flex: 1;
            min-width: 200px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--light-gray);
            transition: all 0.3s;
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .stat-label {
            color: var(--gray);
            font-size: 1rem;
        }
        
        .testimonials {
            margin-bottom: 80px;
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--light-gray);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: var(--dark);
            position: relative;
        }
        
        .testimonial-text::before {
            content: '"';
            font-size: 3rem;
            color: var(--primary-light);
            position: absolute;
            top: -15px;
            left: -10px;
            line-height: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-weight: 700;
        }
        
        .author-info h4 {
            font-size: 1rem;
            margin-bottom: 5px;
        }
        
        .author-info p {
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        footer {
            background: linear-gradient(135deg, var(--dark), #111827);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            font-weight: 600;
            position: relative;
            display: inline-block;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            border-radius: 2px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column li {
            margin-bottom: 12px;
        }
        
        .footer-column a {
            color: #D1D5DB;
            text-decoration: none;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .footer-column a:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.1);
            color: white;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #9CA3AF;
            font-size: 14px;
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 15px;
            }
            
            nav ul {
                gap: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .hero {
                padding: 60px 0 30px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .search-box {
                flex-direction: column;
            }
            
            .search-btn {
                padding: 16px 20px;
                justify-content: center;
            }
            
            .stats-container {
                flex-direction: column;
            }
            
            .map-overlay {
                top: 10px;
                left: 10px;
            }
        }
        
        /* Marker styling */
        .map-marker {
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50% 50% 50% 0;
            transform: rotate(-45deg);
            position: relative;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        
        .map-marker::after {
            content: '';
            width: 18px;
            height: 18px;
            background-color: white;
            border-radius: 50%;
            position: absolute;
            top: 6px;
            left: 6px;
            transform: rotate(45deg);
        }
        
        .leaflet-popup-content-wrapper {
            border-radius: 12px !important;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15) !important;
            border: 1px solid var(--light-gray) !important;
            padding: 0 !important;
            overflow: hidden;
        }
        
        .leaflet-popup-content {
            margin: 0 !important;
            width: 100% !important;
        }
        
        .popup-content {
            padding: 15px;
        }
        
        .popup-title {
            font-weight: 700;
            margin-bottom: 5px;
            color: var(--dark);
            font-size: 1.1rem;
        }
        
        .popup-company {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .popup-type {
            display: inline-flex;
            align-items: center;
            background-color: #D1FAE5;
            color: var(--success);
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 10px;
            gap: 5px;
        }
        
        .popup-description {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 15px;
            line-height: 1.5;
        }
        
        .popup-footer {
            background-color: #F9FAFB;
            padding: 10px 15px;
            border-top: 1px solid var(--light-gray);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .popup-salary {
            font-size: 0.9rem;
            color: var(--dark);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .popup-apply {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            color: white;
            padding: 5px 15px;
            border-radius: 6px;
            font-size: 0.9rem;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            gap: 5px;
        }
        
        .popup-apply:hover {
            transform: translateY(-2px);
            box-shadow: 0 3px 10px rgba(79, 70, 229, 0.3);
        }
        
        /* Leaflet zoom controls */
        .leaflet-control-zoom {
            border: none !important;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
            border-radius: 10px !important;
            overflow: hidden;
        }
        
        .leaflet-control-zoom a {
            border-bottom: 1px solid #eee !important;
            border-radius: 0 !important;
            width: 40px !important;
            height: 40px !important;
            line-height: 40px !important;
        }
        
        .leaflet-control-zoom a:first-child {
            border-top-left-radius: 10px !important;
            border-top-right-radius: 10px !important;
        }
        
        .leaflet-control-zoom a:last-child {
            border-bottom-left-radius: 10px !important;
            border-bottom-right-radius: 10px !important;
            border-bottom: none !important;
        }
        
        /* Loading spinner */
        .spinner {
            display: none;
            width: 24px;
            height: 24px;
            border: 3px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s ease-in-out infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* Animation classes */
        .fade-in {
            animation: fadeIn 0.5s ease-in-out;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        


/* Adicione estas regras ao seu arquivo style.css */

/* Reduzir e centralizar o mapa */


/* Estilo para os ícones redondos das empresas */
.company-marker {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    border: 2px solid var(--primary);
    overflow: hidden;
}

.company-marker img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-marker-initials {
    font-weight: bold;
    color: var(--primary);
    font-size: 14px;
}

/* Estilo para clusters de marcadores */
.marker-cluster {
    background-color: rgba(79, 70, 229, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.cluster-container > div {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    border: 1px solid var(--primary);
    overflow: hidden;
}

.cluster-container > div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cluster-container .company-marker-initials {
    font-size: 10px;
}

.cluster-extra-count {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}


.cluster-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 5px;
    width: 60px;
    height: 60px;
    position: relative;
}
.marker-cluster div {
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Botão Carregar Mais */
.load-more-container {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 30px;
}

.load-more-btn {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary-light);
    border-radius: 30px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.load-more-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(79, 70, 229, 0.15);
}

.load-more-btn .spinner {
    display: none;
}

.load-more-btn.loading .spinner {
    display: block;
}

.load-more-btn.loading span {
    display: none;
}

/* Efeito de hover mais suave para os cards */
.job-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Ajustes para o overlay do mapa */
.map-overlay {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
}

/* Adicione ao final do seu arquivo CSS */
/* Estilos específicos para a página de empresas */
.company-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
    display: flex;
    flex-direction: column;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.company-logo-large {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: var(--light);
    border-bottom: 1px solid var(--light-gray);
}

.company-logo-large img {
    max-height: 80px;
    max-width: 80%;
    object-fit: contain;
}

.company-info {
    padding: 20px;
    flex-grow: 1;
}

.company-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.company-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--gray);
}

.company-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.company-description {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.company-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.company-category {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.view-jobs-btn {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: white;
    text-align: center;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
}

.view-jobs-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 60px 0;
    margin-bottom: 80px;
    border-radius: 16px;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn.primary {
    background: white;
    color: var(--primary);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.testimonial-author .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================= */
/* Estilos específicos para a página de Recursos */
/* ============================================= */

.resources-hero {
    padding: 80px 0 50px;
    text-align: center;
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    margin-bottom: 60px;
    border-radius: 16px;
    overflow: hidden;
}

.resources-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark);
    line-height: 1.2;
}

.resources-hero p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 30px;
}

.resources-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 10px;
}

.resources-tab {
    background: none;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
    border-radius: 8px 8px 0 0;
}

.resources-tab.active {
    color: var(--primary);
}

.resources-tab.active::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

.resources-tab:hover:not(.active) {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.resources-content {
    margin-bottom: 60px;
}

.resources-content.hidden {
    display: none;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.resource-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--light-gray);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.resource-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 20px;
}

.resource-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.resource-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    gap: 5px;
}

.resource-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.resource-link i {
    transition: all 0.2s;
}

.resource-link:hover i {
    transform: translateX(3px);
}

.resources-featured {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--light-gray);
    margin-bottom: 60px;
}

.resources-featured .section-title {
    padding: 30px 30px 0;
    margin-bottom: 20px;
    text-align: left;
    left: 0;
    transform: none;
}

.featured-content {
    display: flex;
    padding: 0 30px 30px;
    gap: 40px;
    align-items: center;
}

.featured-text {
    flex: 1;
}

.featured-text h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.featured-text p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.featured-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.resources-newsletter {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 60px 0;
    border-radius: 16px;
    margin-bottom: 80px;
}

.newsletter-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.newsletter-text {
    flex: 1;
}

.newsletter-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.newsletter-text p {
    opacity: 0.9;
    font-size: 1.1rem;
}

.newsletter-form {
    flex: 1;
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    min-width: 200px;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.btn-primary {
    background: white;
    color: var(--primary);
    border: none;
    border-radius: 8px;
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

/* Responsividade */
@media (max-width: 992px) {
    .featured-content {
        flex-direction: column;
    }
    
    .featured-image {
        order: -1;
        width: 100%;
    }
    
    .newsletter-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .newsletter-form {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .resources-hero h1 {
        font-size: 2.2rem;
    }
    
    .resources-hero p {
        font-size: 1rem;
    }
    
    .resources-tabs {
        flex-wrap: wrap;
    }
    
    .resources-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-featured .section-title {
        padding: 20px 20px 0;
    }
    
    .featured-content {
        padding: 0 20px 20px;
    }
    
    .resources-newsletter {
        padding: 40px 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .resources-hero {
        padding: 60px 20px;
    }
    
    .resources-hero h1 {
        font-size: 1.8rem;
    }
    
    .resource-card {
        padding: 20px;
    }
    
    .resource-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

.info-before p{
    color: #002c87;
}
/* Contact Page Styles */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.contact-form-container, .contact-info-container {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}


.form-input, .form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-input:focus, .form-textarea:focus {
    border-color: var(--primary);
    outline: none;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button[type="submit"] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#submit-spinner {
    display: none;
}

.form-status {
    margin-top: 20px;
}

.success-message, .error-message {
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.success-message {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.error-message {
    background-color: #ffebee;
    color: #c62828;
}

.contact-info-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-info-card h3 {
    margin-bottom: 25px;
    color: var(--dark);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info-item i {
    font-size: 20px;
    color: var(--primary);
    margin-top: 3px;
}

.contact-info-item h4 {
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-info-item a, .contact-info-item p {
    color: var(--gray);
    transition: color 0.3s;
}

.contact-info-item a:hover {
    color: var(--primary);
}

.contact-social {
    margin-top: 30px;
}

.contact-social h4 {
    margin-bottom: 15px;
    color: var(--dark);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: all 0.3s;
}

.social-link:hover {
    background-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

/* FAQ Section */
.faq-section {
    margin: 60px 0;
}

.faq-container {
    margin-top: 30px;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    text-align: left;
    background: #fff;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    padding: 0 20px;
    background: #fff;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--gray);
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-form-container, .contact-info-container {
        width: 100%;
    }
}

/* About Page Styles */
.about-section {
    margin: 60px 0;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark);
    position: relative;
    padding-bottom: 10px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

.about-text p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.about-text li {
    margin-bottom: 10px;
    color: var(--gray);
}

.about-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Team Section */
.team-section {
    margin: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--light-gray);
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--primary-light);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-position {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-bio {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        order: -1;
        width: 100%;
        max-width: 600px;
        margin: 0 auto 30px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .about-text h2 {
        font-size: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

/* Legal Pages Styles */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--light-gray);
    margin-bottom: 60px;
}

.legal-section {
    margin-bottom: 30px;
}

.legal-section h2 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

.legal-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

.legal-section h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin: 15px 0 10px;
}

.legal-section p, .legal-section li {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 10px;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.legal-section li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 20px;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
}

/* Tips Page Styles */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.tip-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--light-gray);
    transition: all 0.3s;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.tip-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 20px;
}

.tip-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.tip-card ul, .tip-card ol {
    margin: 15px 0;
    padding-left: 20px;
}

.tip-card li {
    color: var(--gray);
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .resources-tabs {
        flex-wrap: wrap;
    }
    
    .resources-tab {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .tip-card {
        padding: 20px;
    }
}


/* Estilos para a página de Recursos para RH */
.hero-section {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--primary-light);
    margin-bottom: 40px;
}

.hero-section h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.hero-section p {
    font-size: 1.2rem;
    color: var(--dark);
    max-width: 700px;
    margin: 0 auto;
}

.coming-soon-section {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 60px;
}

.coming-soon-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.coming-soon-content i {
    color: var(--primary);
    margin-bottom: 20px;
}

.coming-soon-content h2 {
    color: var(--primary);
    margin-bottom: 20px;
}

.coming-soon-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.coming-soon-content ul {
    text-align: left;
    max-width: 500px;
    margin: 30px auto;
    list-style: none;
}

.coming-soon-content ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.coming-soon-content ul li i {
    color: var(--success);
    margin-right: 10px;
    font-size: 1.2rem;
}

.benefits-section {
    padding: 40px 20px;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: var(--dark);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.6;
}



/* Promo Ad Compacto */
.promo-ad {
    background: linear-gradient(135deg, #4F46E5, #26eec3);
    color: white;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-height: 220px; /* Altura máxima reduzida */
    overflow: hidden;
}

.promo-content {
    display: flex;
    height: 100%;
}

.promo-text {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-badge {
    background-color: #FFD700;
    color: #111827;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
}

.promo-ad h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.promo-description {
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.promo-cta {
    margin-top: 10px;
}

.promo-btn {
    background: white;
    color: #4F46E5;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.promo-image {
    width: 35%;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.promo-img {
    max-height: 180px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    object-fit: contain;
}

/* Responsivo */
@media (max-width: 768px) {
    .promo-ad {
        max-height: none;
    }
    
    .promo-content {
        flex-direction: column-reverse;
    }
    
    .promo-image {
        width: 100%;
        padding: 20px 20px 0;
    }
    
    .promo-text {
        padding: 20px;
    }
    
    .promo-img {
        max-height: 150px;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: auto;
    opacity: 0;
    transition: opacity 0.3s;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.3s;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: #888;
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover {
    color: #333;
}

.payment-step {
    display: none;
}

.payment-step.active {
    display: block;
}

.payment-button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.payment-button:hover {
    background-color: var(--primary-dark);
}

.payment-button.secondary {
    background-color: #f0f0f0;
    color: #333;
    margin-top: 10px;
}

.payment-button.secondary:hover {
    background-color: #e0e0e0;
}

.spinner.big {
    width: 50px;
    height: 50px;
    border-width: 4px;
    margin: 0 auto 20px;
}

.success-icon {
    color: #4CAF50;
    font-size: 50px;
    margin-bottom: 20px;
}

.error-icon {
    color: #F44336;
    font-size: 50px;
    margin-bottom: 20px;
}

.payment-methods {
    margin-top: 20px;
    text-align: center;
}

.payment-logo {
    height: 40px;
    margin: 0 10px;
}

#download-status {
    margin-top: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 6px;
}

#manual-download-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.form-group-mpesa {
    margin-bottom: 20px;
}

.form-group-mpesa label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group-mpesa input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}

.form-group-mpesa small {
    color: #666;
    font-size: 12px;
    display: block;
    margin-top: 5px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Estilos para compartilhamento */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.share-buttons span {
    font-size: 14px;
    color: #666;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: transform 0.2s;
}

.share-btn:hover {
    transform: scale(1.1);
}

.share-btn.facebook {
    background-color: #3b5998;
}

.share-btn.whatsapp {
    background-color: #25D366;
}

.share-btn.linkedin {
    background-color: #0077B5;
}

.share-btn.twitter {
    background-color: #1DA1F2;
}

/* Estilos para os botões de ação nos cards */
.job-actions {
    display: flex;
    gap: 8px;
}

.share-job-btn {
    background: #f5f5f5;
    border: none;
    border-radius: 6px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #555;
    transition: all 0.2s;
}

.share-job-btn:hover {
    background: #e0e0e0;
    color: #333;
}

/* Modal de compartilhamento */
.share-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.share-modal-content {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.share-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.share-modal-header h3 {
    margin: 0;
    color: #333;
}

.close-share-modal {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.share-job-preview {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.share-job-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.share-job-info h4 {
    margin: 0 0 5px 0;
    color: #333;
}

.share-job-info p {
    margin: 5px 0;
    color: #666;
    font-size: 14px;
}

/* Estilo para o popup de compartilhamento no mapa */
.popup-header {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.popup-company-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}

.popup-description {
    margin: 10px 0;
    font-size: 14px;
    color: #555;
}