:root {
    --primary-blue: #0066B3;
    --primary-cyan: #00A7E1;
    --dark-blue: #004A82;
    --light-cyan: #E6F7FC;
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-cyan) 100%);
    --gradient-light: linear-gradient(135deg, var(--light-cyan) 0%, #ffffff 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.navbar-brand img {
    height: 45px;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 38px;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-link {
    color: var(--dark-blue) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-cyan);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-navbar {
    background: var(--gradient-primary);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    color: #fff !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-navbar:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 167, 225, 0.4);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: var(--gradient-primary);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: 5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--light-cyan);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 300;
}

.btn-hero {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-hero-primary {
    background: #fff;
    color: var(--primary-blue);
    margin-right: 1rem;
}

.btn-hero-primary:hover {
    background: var(--light-cyan);
    color: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-hero-secondary:hover {
    background: #fff;
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    max-width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Section */
.about-section {
    background: var(--gradient-light);
}

.about-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 102, 179, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 102, 179, 0.15);
}

.about-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #fff;
}

.about-card h4 {
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.about-card p {
    color: #666;
    line-height: 1.7;
}

/* Services Section */
.services-section {
    background: #fff;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 179, 0.15);
    border-color: var(--primary-cyan);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--light-cyan);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    color: #fff;
    transform: rotateY(180deg);
}

.service-card h4 {
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.7;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.service-list li {
    padding: 0.5rem 0;
    color: #555;
    display: flex;
    align-items: center;
}

.service-list li i {
    color: var(--primary-cyan);
    margin-right: 0.75rem;
}

/* How it Works Section */
.how-section {
    background: var(--gradient-primary);
    position: relative;
}

.how-section .section-title,
.how-section .section-subtitle {
    color: #fff;
}

.step-card {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.step-card h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-card p {
    color: rgba(255, 255, 255, 0.85);
}

.step-connector {
    position: absolute;
    top: 60px;
    right: -50%;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
}

/* Benefits Section */
.benefits-section {
    background: #fff;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--light-cyan);
    border-radius: 15px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 102, 179, 0.15);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-right: 1rem;
}

.benefit-content h5 {
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.3rem;
}

.benefit-content p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
    background: var(--gradient-light);
    padding: 80px 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    background: #fff;
}

.testimonial-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    margin: 1rem;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 5rem;
    color: var(--light-cyan);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 1rem;
}

.author-info h5 {
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.2rem;
}

.author-info span {
    color: #888;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    background: var(--gradient-light);
}

.contact-info-card {
    background: var(--gradient-primary);
    padding: 3rem;
    border-radius: 20px;
    color: #fff;
    height: 100%;
}

.contact-info-card h3 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-info-card p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item i {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.contact-item span {
    font-size: 1rem;
}

.social-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #fff;
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.contact-form-card {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-card h3 {
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
}

.form-control {
    padding: 0.9rem 1.2rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 3px rgba(0, 167, 225, 0.1);
}

.form-label {
    font-weight: 500;
    color: #555;
    margin-bottom: 0.5rem;
}

.btn-submit {
    background: var(--gradient-primary);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: #fff;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 102, 179, 0.3);
    color: #fff;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.btn-cta {
    background: #fff;
    color: var(--primary-blue);
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: var(--light-cyan);
    color: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: #fff;
    padding: 60px 0 30px;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-brand img {
    height: 50px;
    filter: brightness(0) invert(1);
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-cyan);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 102, 179, 0.3);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 179, 0.4);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-section {
        padding-top: 100px;
        text-align: center;
    }

    .hero-image {
        margin-top: 3rem;
    }

    .step-connector {
        display: none;
    }

    .nav-link {
        color: var(--dark-blue) !important;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn-hero {
        display: block;
        margin: 0.5rem 0;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* Custom Animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* ===============================================
   OFFERS SECTION - Bolsa de Trabajo
   =============================================== */
.offers-section {
    background: var(--gradient-light);
    padding: 100px 0;
}

/* Filtros de búsqueda */
.offers-filter-card {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 102, 179, 0.1);
}

.offers-filter-card .form-label {
    font-weight: 600;
    color: var(--dark-blue);
    font-size: 0.9rem;
}

.offers-filter-card .form-control {
    padding: 0.8rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.offers-filter-card .form-control:focus {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 3px rgba(0, 167, 225, 0.1);
}

.btn-filter {
    background: var(--gradient-primary);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-filter:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 102, 179, 0.3);
    color: #fff;
}

/* Job Cards */
.job-card {
    background: #fff;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 102, 179, 0.15);
    border-color: var(--primary-cyan);
}

.job-card-header {
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.company-logo {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.job-info {
    flex: 1;
}

.job-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.company-name {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.job-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-new {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.badge-urgent {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.badge-featured {
    background: rgba(255, 193, 7, 0.15);
    color: #d4a106;
}

.badge-remote {
    background: rgba(0, 167, 225, 0.1);
    color: var(--primary-cyan);
}

.job-card-body {
    padding: 1.5rem;
    flex: 1;
}

.job-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.job-tag {
    background: var(--light-cyan);
    color: var(--dark-blue);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.job-tag i {
    color: var(--primary-cyan);
}

.job-card-footer {
    padding: 1rem 1.5rem;
    background: #fafbfc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
}

.job-date {
    font-size: 0.85rem;
    color: #888;
}

.btn-apply {
    background: var(--gradient-primary);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 102, 179, 0.4);
    color: #fff;
}

/* Ver más ofertas */
.btn-see-more {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-see-more:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 102, 179, 0.3);
}

/* ===============================================
   MODAL DE POSTULACIÓN
   =============================================== */
#applyModal .modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

#applyModal .modal-header {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    padding: 1.5rem 2rem;
}

#applyModal .modal-header .modal-title {
    font-weight: 700;
    font-size: 1.25rem;
}

#applyModal .modal-header .modal-title i {
    color: #fff;
}

#applyModal .modal-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

#applyModal .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

#applyModal .btn-close:hover {
    opacity: 1;
}

#applyModal .modal-body {
    padding: 2rem;
    max-height: 60vh;
    overflow-y: auto;
}

#applyModal .modal-footer {
    border-top: 1px solid #eee;
    padding: 1rem 2rem;
}

.form-section-title {
    color: var(--dark-blue);
    font-weight: 600;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--light-cyan);
    display: flex;
    align-items: center;
}

.form-section-title i {
    color: var(--primary-cyan);
}

#applyModal .form-control {
    padding: 0.8rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
}

#applyModal .form-control:focus {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 3px rgba(0, 167, 225, 0.1);
}

#applyModal .form-label {
    font-weight: 500;
    color: #555;
    margin-bottom: 0.4rem;
}

.file-upload-wrapper {
    position: relative;
}

.file-upload-wrapper input[type="file"] {
    padding: 0.8rem;
}

.btn-apply-submit {
    background: var(--gradient-primary);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-apply-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 179, 0.4);
    color: #fff;
}

.btn-outline-secondary {
    border: 2px solid #6c757d;
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
}

/* Scrollbar del modal */
#applyModal .modal-body::-webkit-scrollbar {
    width: 6px;
}

#applyModal .modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

#applyModal .modal-body::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
}

/* Animación fadeIn para filtros */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive para ofertas */
@media (max-width: 991px) {
    .job-card-header {
        flex-wrap: wrap;
    }
    
    .job-badge {
        position: static;
        margin-top: 0.5rem;
    }
    
    .job-card-footer {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-apply {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .offers-filter-card {
        padding: 1.5rem;
    }
    
    .company-logo {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .job-title {
        font-size: 1rem;
    }
    
    #applyModal .modal-body {
        padding: 1.5rem;
    }
}