/* Services Section */
.services {
    padding: 8rem 0;
    background: var(--color-blanco);
    color: var(--color-negro);
}

.services h2 {
    text-align: center;
    font-size: 3.5rem;
    color: var(--color-negro);
    margin-bottom: 4rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.service-card {
    background: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--sombra-suave);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--color-gris-medio);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--sombra-hover);
    border-color: var(--color-negro);
}

.service-image {
    height: 200px;
    background: var(--gradient-elegante);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--color-blanco);
}

.service-content {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.7);
}

.service-content h3 {
    font-size: 1.8rem;
    color: var(--color-blanco);
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--color-gris-medio);
    padding-bottom: 0.8rem;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-content li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-content li::before {
    content: '•';
    color: var(--color-blanco);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-btn {
    display: inline-block;
    background: var(--color-blanco);
    color: var(--color-negro);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--color-blanco);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    text-align: center;
}

.service-btn:hover {
    background: transparent;
    color: var(--color-blanco);
}

/* Filtros de jets */
.jet-filters {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2.5rem 0 2.5rem 0;
    flex-wrap: wrap;
}
.jet-filter-btn {
    background: #fff;
    color: #222;
    border: none;
    border-radius: 24px;
    padding: 0.7rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.2s;
    outline: none;
}
.jet-filter-btn.active {
    background: #19222b;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

/* Card principal de jet */
.jet-card {
    display: flex;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
    overflow: hidden;
    max-width: 1000px;
    min-height: 350px;
    align-items: stretch;
    flex-grow: 1;
    margin: 1rem;
}
.jet-card-image {
    position: relative;
    flex: 1.2;
    min-width: 320px;
    background: #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.jet-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.jet-card-info {
    flex: 1.8;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
}
.jet-card-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #222;
}
.jet-card-info p {
    font-size: 1.08rem;
    color: #222;
    margin-bottom: 2.2rem;
    line-height: 1.6;
}

/* Cards de características */
.jet-card-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}
.jet-feature-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    padding: 1.5rem;
    flex: 1;
    text-align: center;
}
.jet-feature-box i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #222;
}
.jet-feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #222;
}
.jet-feature-value {
    font-size: 1rem;
    color: #222;
}

/* Responsive */
@media (max-width: 900px) {
    .jet-card {
        flex-direction: column;
        margin: 1rem;
    }
    .jet-card-image {
        min-width: 100%;
        height: 250px;
    }
    .jet-card-info {
        padding: 2rem;
    }
    .jet-card-info h3 {
        font-size: 1.8rem;
    }
    .jet-card-info p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .jet-card-features {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    .jet-feature-box {
        padding: 1.2rem;
    }
    .jet-feature-box i {
        font-size: 1.8rem;
    }
    .jet-feature-title {
        font-size: 1rem;
    }
    .jet-feature-value {
        font-size: 0.95rem;
    }
    .model-outer-nav-btn {
        margin: 10px 0;
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    .jet-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .jet-filters {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .jet-filter-btn {
        width: 100%;
        max-width: 320px;
        min-width: 180px;
        margin: 0 auto;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .jet-filters {
        gap: 1rem;
        padding: 0 1rem;
    }
    .jet-filter-btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }
    .jet-card {
        margin: 0.5rem;
    }
    .jet-card-image {
        height: 200px;
    }
    .jet-card-info {
        padding: 1.5rem;
    }
    .jet-card-info h3 {
        font-size: 1.5rem;
    }
    .jet-card-info p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    .jet-feature-box {
        padding: 1rem;
    }
    .jet-feature-box i {
        font-size: 1.5rem;
    }
    .jet-feature-title {
        font-size: 0.95rem;
    }
    .jet-feature-value {
        font-size: 0.9rem;
    }
    .jet-modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    .jet-modal-img {
        height: 200px;
    }
    .jet-specs-table td {
        padding: 0.8rem 0;
    }
    .jet-spec-label {
        font-size: 1rem;
    }
    .jet-spec-value {
        font-size: 1rem;
    }
    .jet-specs-table i.bi {
        font-size: 1.1rem;
    }
    .jet-more-info-btn,
    .jet-modal-cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    .model-outer-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
}

body, .aircraft-section {
    background: #f3f3f3;
}

.aircraft-section {
    padding-top: 110px;
}

/* Modal de especificaciones de jets */
.jet-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 1rem;
}
.jet-modal-content {
    background: #fff;
    border-radius: 18px;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}
.jet-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #222;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
}
.jet-modal-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}
.jet-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}
.jet-specs-table tr {
    border-bottom: 1px solid #eee;
}
.jet-specs-table td {
    padding: 1rem 0;
    vertical-align: middle;
}
.jet-spec-label {
    font-weight: 600;
    color: #222;
    font-size: 1.1rem;
}
.jet-spec-value {
    color: #222;
    font-size: 1.1rem;
    margin-left: 0.5rem;
}
.jet-specs-table i.bi {
    font-size: 1.2rem;
    color: #222;
    margin-right: 0.5rem;
}
.jet-more-info-btn {
    background: #19222b;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    margin-top: auto;
}
.jet-more-info-btn:hover {
    background: #2a3441;
}
.jet-modal-cta {
    background: #19222b;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    margin-top: 1rem;
}
.jet-modal-cta:hover {
    background: #2a3441;
}

.model-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.model-nav-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.model-nav-btn.prev {
    left: 10px;
}

.model-nav-btn.next {
    right: 10px;
}

.current-model-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #444;
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
}

/* Contenedor de la tarjeta con navegación externa */
.jet-card-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem auto;
    max-width: 1100px;
}

/* Botones de navegación externos */
.model-outer-nav-btn {
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 15;
    transition: background-color 0.3s ease, transform 0.2s ease;
    flex-shrink: 0;
    margin: 0 10px;
}

.model-outer-nav-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.05);
}