body {
    font-family: 'Montserrat', sans-serif;
}

.title-font {
    font-family: 'Playfair Display', serif;
}

.gradient-bg {
    background: linear-gradient(135deg, #6e8efb, #a777e3);
}

/* Layout helpers */
.section-max-width {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

.section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .section-padding {
        padding-top: 5.5rem;
        padding-bottom: 5.5rem;
    }
}

/* Glassmorphism cards */
.glass-card {
    background: rgba(255, 255, 255, 0.14);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(24px);
}

/* Hero background overlay image */
.hero-with-image {
    position: relative;
    overflow: hidden;
}

.hero-with-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 55%),
        radial-gradient(circle at bottom right, rgba(15, 23, 42, 0.55), transparent 60%),
        url("https://images.pexels.com/photos/6476584/pexels-photo-6476584.jpeg?auto=compress&cs=tinysrgb&w=1600");
    background-size: auto, auto, cover;
    background-position: top left, bottom right, center;
    opacity: 0.28;
    mix-blend-mode: screen;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
}

/* CTA Button styling for "Únete al equipo" */
.nav-cta-button {
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 8px 20px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.nav-cta-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Job card styling */
.job-card {
    background: white;
    border-radius: 18px;
    padding: 26px 24px;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.12);
    transition: all 0.3s ease;
}

.job-card:hover {
    box-shadow: 0 26px 55px rgba(15, 23, 42, 0.18);
    transform: translateY(-6px) scale(1.01);
}

/* Job detail page sections */
.job-section {
    margin-bottom: 40px;
}

.job-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f2937;
}

.job-section ul {
    list-style-type: disc;
    padding-left: 24px;
    margin-top: 12px;
}

.job-section li {
    margin-bottom: 8px;
    color: #4b5563;
    line-height: 1.6;
}

/* Apply button styling */
.apply-button {
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(110, 142, 251, 0.3);
}

.apply-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(110, 142, 251, 0.4);
}




