/* css/styles.css - Estilos Principales con Esquema Verde COMPLETO */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Header */
.header {
    background: linear-gradient(135deg, #2e8b57 0%, #228b22 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2e8b57;
    font-weight: bold;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: white;
    transition: all 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
    left: 10%;
}

.admin-btn {
    background: #ff6b6b;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.admin-btn:hover {
    background: #ee5a5a;
    transform: translateY(-2px);
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: calc(100vh - 140px);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(46, 139, 87, 0.9), rgba(34, 139, 34, 0.9)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%232e8b57" width="1200" height="600"/><path fill="%23228b22" d="M0,300L50,280C100,260,200,220,300,200C400,180,500,180,600,190C700,200,800,220,900,210C1000,200,1100,160,1150,140L1200,120V600H1150C1100,600,1000,600,900,600C800,600,700,600,600,600C500,600,400,600,300,600C200,600,100,600,50,600H0V300Z"/></svg>');
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Page Titles */
.page-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2e8b57;
    text-align: center;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
}

/* Cards */
.cards-section {
    margin-bottom: 3rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    text-align: center;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2e8b57;
    font-weight: 600;
}

.card-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-btn {
    display: inline-block;
    background: #2e8b57;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.card-btn:hover {
    background: #228b22;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 139, 87, 0.4);
}

/* Statistics Section */
.stats-section {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
}

.stats-section h2 {
    color: #2e8b57;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2e8b57;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
}

/* News Section */
.news-section {
    margin-bottom: 3rem;
}

.news-section h2 {
    color: #2e8b57;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #2e8b57;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.news-date {
    background: #f0f8f0;
    color: #2e8b57;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.news-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.news-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-link {
    color: #2e8b57;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: #228b22;
}

/* Tables */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.table th,
.table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.table tr:hover {
    background: #f8f9fa;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2e8b57;
    box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Buttons */
.btn {
    background: #2e8b57;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn:hover {
    background: #228b22;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 139, 87, 0.4);
}

.btn-primary {
    background: #2e8b57;
}

.btn-secondary {
    background: #6c757d;
}

.btn-danger {
    background: #ff6b6b;
}

.btn-danger:hover {
    background: #ee5a5a;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.btn-success {
    background: #51cf66;
}

.btn-success:hover {
    background: #40c057;
}

/* Alerts */
.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    display: none;
}

.alert.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #2e8b57;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    background: #34495e;
    text-align: center;
    padding: 1rem;
    color: #bdc3c7;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: #2e8b57;
    margin: 0;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #333;
}

/* Search and Filters */
.search-filter-section {
    margin-bottom: 3rem;
}

.search-box {
    position: relative;
    margin-bottom: 2rem;
}

.search-box input {
    width: 100%;
    padding: 1rem;
    padding-left: 3rem;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    border-color: #2e8b57;
    outline: none;
}

.search-box::before {
    content: '🔍';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #e0e0e0;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #2e8b57;
    color: white;
    border-color: #2e8b57;
}

/* Job Cards, Program Cards, Company Cards */
.jobs-grid,
.programs-grid,
.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.job-card,
.program-card,
.company-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #2e8b57;
}

.job-card:hover,
.program-card:hover,
.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.job-title,
.program-title,
.company-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.job-company,
.program-category,
.company-sector {
    color: #2e8b57;
    font-weight: 500;
    margin-bottom: 1rem;
}

.job-salary,
.program-duration,
.company-contact {
    background: #f0f8f0;
    color: #2e8b57;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.job-description,
.program-description,
.company-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.job-requirements {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Contact Specific Styles */
.contact-methods {
    margin-bottom: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-card h3 {
    color: #2e8b57;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
}

/* Contact Form */
.contact-form-section {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.form-container h2 {
    color: #2e8b57;
    margin-bottom: 2rem;
    text-align: center;
}

/* Departments */
.departments {
    margin-bottom: 3rem;
}

.departments h2 {
    color: #2e8b57;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.department-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid #2e8b57;
}

.department-card:hover {
    transform: translateY(-5px);
}

.department-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.department-card h3 {
    color: #2e8b57;
    margin-bottom: 1rem;
}

.department-contact {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.department-contact p {
    color: #666;
    margin-bottom: 0.5rem;
}

/* Programs Specific Styles */
.program-categories {
    margin-bottom: 3rem;
}

.featured-programs,
.all-programs {
    margin-bottom: 3rem;
}

.featured-programs h2,
.all-programs h2 {
    color: #2e8b57;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.programs-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Admission Process */
.admission-process {
    margin-bottom: 3rem;
}

.admission-process h2 {
    color: #2e8b57;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #2e8b57;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-content h3 {
    color: #333;
    margin-bottom: 1rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Why Choose Us & Benefits */
.why-choose-us {
    margin-bottom: 3rem;
}

.why-choose-us h2 {
    color: #2e8b57;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-card h3 {
    color: #2e8b57;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
}

.testimonials h2 {
    color: #2e8b57;
    margin-bottom: 2rem;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    display: none;
    padding: 2rem;
}

.testimonial.active {
    display: block;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author strong {
    color: #333;
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #2e8b57;
    font-size: 0.9rem;
}

.testimonial-controls {
    margin-top: 2rem;
}

.prev-btn,
.next-btn {
    background: #2e8b57;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.prev-btn:hover,
.next-btn:hover {
    background: #228b22;
    transform: scale(1.1);
}

/* Companies Specific Styles */
.partnership-benefits {
    margin-bottom: 3rem;
}

.partnership-benefits h2 {
    color: #2e8b57;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.company-sectors {
    margin-bottom: 3rem;
}

.company-sectors h2 {
    color: #2e8b57;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.featured-companies,
.all-companies {
    margin-bottom: 3rem;
}

.featured-companies h2,
.all-companies h2 {
    color: #2e8b57;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.companies-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Success Stories */
.success-stories {
    margin-bottom: 3rem;
}

.success-stories h2 {
    color: #2e8b57;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.story-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid #2e8b57;
}

.story-card:hover {
    transform: translateY(-5px);
}

.story-company {
    color: #2e8b57;
    font-weight: bold;
    margin-bottom: 1rem;
}

.story-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.story-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.story-author {
    color: #2e8b57;
    font-weight: 500;
    font-style: normal;
}

/* Partnership Statistics */
.partnership-stats {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
}

.partnership-stats h2 {
    color: #2e8b57;
    margin-bottom: 2rem;
    font-size: 2rem;
}

/* How to Partner */
.how-to-partner {
    margin-bottom: 3rem;
}

.how-to-partner h2 {
    color: #2e8b57;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.partnership-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Services for Companies */
.company-services {
    margin-bottom: 3rem;
}

.company-services h2 {
    color: #2e8b57;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid #2e8b57;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    color: #2e8b57;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    padding-left: 0;
}

.service-card ul li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.service-card ul li::before {
    content: '✓';
    color: #2e8b57;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Empleos Specific Styles */
.featured-jobs,
.all-jobs {
    margin-bottom: 3rem;
}

.featured-jobs h2,
.all-jobs h2 {
    color: #2e8b57;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.jobs-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.job-stats {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
}

.job-stats h2 {
    color: #2e8b57;
    margin-bottom: 2rem;
    font-size: 2rem;
}

/* Application Tips */
.application-tips {
    margin-bottom: 3rem;
}

.application-tips h2 {
    color: #2e8b57;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tip-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
}

.tip-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.tip-card h3 {
    color: #2e8b57;
    margin-bottom: 1rem;
}

.tip-card p {
    color: #666;
    line-height: 1.6;
}

/* CTA Sections */
.application-cta,
.contact-cta {
    background: linear-gradient(135deg, #2e8b57 0%, #228b22 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 3rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: white;
    color: #2e8b57;
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2e8b57;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 3rem;
}

.faq-section h2 {
    color: #2e8b57;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.faq-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #2e8b57;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 0 2rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Map Section */
.map-section {
    margin-bottom: 3rem;
}

.map-section h2 {
    color: #2e8b57;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.map-container {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.map-placeholder {
    padding: 2rem;
    border: 2px dashed #e0e0e0;
    border-radius: 10px;
    color: #666;
}

.map-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.location-info {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.location-info h3 {
    color: #2e8b57;
    margin-bottom: 1rem;
    text-align: center;
}

.transport-options {
    display: grid;
    gap: 1rem;
}

.transport-item {
    padding: 1rem;
    border-left: 4px solid #2e8b57;
    background: #f8f9fa;
    border-radius: 5px;
}

.transport-item strong {
    color: #2e8b57;
    display: block;
    margin-bottom: 0.5rem;
}

.transport-item p {
    color: #666;
    margin: 0;
}

/* Social Media */
.social-media {
    text-align: center;
    margin-bottom: 3rem;
}

.social-media h2 {
    color: #2e8b57;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 25px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.social-icon {
    font-size: 1.5rem;
}

/* Checkbox Styles */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    margin-top: 2px;
}

.checkbox-label a {
    color: #2e8b57;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #2e8b57;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Fade In Animation */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        display: none;
        width: 100%;
        text-align: center;
    }
    
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .main-content {
        padding: 1rem;
    }
    
    .cards-grid,
    .jobs-grid,
    .programs-grid,
    .companies-grid,
    .departments-grid,
    .benefits-grid,
    .tips-grid,
    .services-grid,
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .process-steps,
    .partnership-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .card,
    .job-card,
    .program-card,
    .company-card,
    .department-card,
    .benefit-card,
    .tip-card,
    .service-card,
    .story-card {
        padding: 1.5rem;
    }
    
    .contact-form-section,
    .map-container,
    .location-info {
        padding: 2rem 1rem;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .social-link {
        padding: 0.75rem 1rem;
    }
}

/* ESTILOS ADICIONALES PARA EMPLEOS - Agregar al final de styles.css */

/* Estilos mejorados para tarjetas de empleo */
.job-card {
    position: relative;
    overflow: hidden;
}

.job-card.featured {
    border: 2px solid #2e8b57;
    background: linear-gradient(135deg, #f0f8f0 0%, #ffffff 100%);
}

.job-card.featured::before {
    content: '⭐ Destacado';
    position: absolute;
    top: 10px;
    right: -30px;
    background: #2e8b57;
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    transform: rotate(45deg);
    font-weight: 500;
}

/* Header de empleo mejorado */
.job-header {
    margin-bottom: 15px;
}

.job-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.job-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-block;
}

.job-badge.nuevo {
    background: #e8f5e8;
    color: #2e8b57;
    border: 1px solid #2e8b57;
}

.job-badge.urgente {
    background: #ffe8e8;
    color: #d32f2f;
    border: 1px solid #ffcdd2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.verified-badge {
    background: #4caf50;
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 500;
    margin-left: 8px;
}

.verified-badge.large {
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 15px;
}

/* Detalles del empleo mejorados */
.job-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 8px;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.job-details > div {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #555;
    padding: 5px;
    background: #f8f9fa;
    border-radius: 6px;
}

.job-salary {
    font-weight: 600;
    color: #2e8b57 !important;
}

/* Meta información */
.job-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #666;
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 8px;
}

/* Footer de empleo mejorado */
.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.job-actions {
    display: flex;
    gap: 8px;
}

.job-actions .btn {
    padding: 6px 12px;
    font-size: 0.85rem;
    border-radius: 6px;
}

/* Modal de detalle del empleo */
.job-detail {
    padding: 0;
}

.job-detail-header {
    background: linear-gradient(135deg, #f0f8f0 0%, #ffffff 100%);
    padding: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.job-detail-header h2 {
    color: #2e8b57;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.job-detail-company h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.job-detail-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.job-detail-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: white;
    border-radius: 8px;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Contenido del modal */
.job-detail-content {
    padding: 25px;
}

.job-detail-content .section {
    margin-bottom: 25px;
}

.job-detail-content .section h4 {
    color: #2e8b57;
    margin-bottom: 12px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-detail-content .section p,
.job-detail-content .section ul {
    color: #666;
    line-height: 1.6;
}

.job-detail-content .section ul {
    padding-left: 20px;
}

.job-detail-content .section ul li {
    margin-bottom: 8px;
}

/* Contenedores de habilidades y programas */
.skills-container,
.programs-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.skill-tag,
.program-tag {
    background: #e8f5e8;
    color: #2e8b57;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #c8e6c9;
}

.no-data {
    color: #999;
    font-style: italic;
    font-size: 0.9rem;
}

/* Acciones del modal */
.job-detail-actions {
    padding: 20px 25px;
    border-top: 1px solid #e0e0e0;
    background: #f8f9fa;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.job-detail-actions .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    min-width: 120px;
}

.btn-outline {
    background: transparent;
    color: #2e8b57;
    border: 2px solid #2e8b57;
}

.btn-outline:hover {
    background: #2e8b57;
    color: white;
}

/* Estadísticas del modal */
.job-detail-stats {
    padding: 15px 25px;
    background: #f0f8f0;
    text-align: center;
    color: #666;
    font-size: 0.85rem;
}

/* Lista de empleos (vista lista) */
.jobs-list .job-card {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.job-list-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.job-list-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.job-list-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.job-list-title-section {
    flex: 1;
}

.job-list-title {
    color: #2e8b57;
    font-size: 1.2rem;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.job-list-salary {
    color: #2e8b57;
    font-weight: 600;
    font-size: 1rem;
}

.job-list-company {
    margin-bottom: 12px;
    color: #666;
    font-size: 0.95rem;
}

.job-list-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #666;
}

.job-list-detail {
    display: flex;
    align-items: center;
    gap: 5px;
}

.job-list-description {
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.job-list-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.job-list-tags {
    display: flex;
    gap: 8px;
}

.job-tag {
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 500;
}

.job-tag.category {
    background: #e3f2fd;
    color: #1976d2;
}

.job-tag.modalidad {
    background: #f3e5f5;
    color: #7b1fa2;
}

.job-list-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 0.8rem;
    color: #999;
}

.job-views {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Contador de empleos */
.jobs-count {
    text-align: center;
    margin-bottom: 20px;
    color: #666;
    font-size: 0.95rem;
}

/* Paginación */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.pagination .btn {
    padding: 8px 12px;
    font-size: 0.9rem;
    min-width: 40px;
    text-align: center;
}

.pagination-dots {
    padding: 8px 4px;
    color: #999;
}

/* Notificaciones */
.notifications-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 350px;
}

.notification {
    background: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #2e8b57;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.notification-success {
    border-left-color: #4caf50;
}

.notification-error {
    border-left-color: #f44336;
}

.notification-info {
    border-left-color: #2196f3;
}

.notification-message {
    flex: 1;
    color: #333;
    font-size: 0.9rem;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #999;
    margin-left: 10px;
}

.notification-close:hover {
    color: #333;
}

/* Indicador de carga */
.loading-indicator {
    text-align: center;
    padding: 20px;
    color: #666;
}

.loading-indicator span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.loading-indicator span::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #2e8b57;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Sin resultados */
.no-results {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.no-results h3 {
    color: #999;
    margin-bottom: 10px;
}

/* Botón de refrescar */
.refresh-btn {
    margin-left: auto;
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* Responsive para empleos */
@media (max-width: 768px) {
    .job-detail-meta {
        grid-template-columns: 1fr;
    }
    
    .job-list-header {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .job-list-details {
        flex-direction: column;
        gap: 8px;
    }
    
    .job-list-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .job-list-meta {
        justify-content: center;
    }
    
    .job-details {
        grid-template-columns: 1fr;
    }
    
    .job-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .job-actions {
        justify-content: center;
    }
    
    .job-detail-actions {
        flex-direction: column;
    }
    
    .notifications-container {
        left: 10px;
        right: 10px;
        max-width: none;
    }
    
    .job-card.featured::before {
        font-size: 0.7rem;
        padding: 3px 30px;
        right: -25px;
    }
}

@media (max-width: 480px) {
    .job-card {
        padding: 15px;
    }
    
    .job-list-item {
        padding: 15px;
    }
    
    .job-detail-header,
    .job-detail-content,
    .job-detail-actions {
        padding: 20px 15px;
    }
    
    .skills-container,
    .programs-container {
        gap: 6px;
    }
    
    .skill-tag,
    .program-tag {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
}