/* ============================================
    PAGE: NOSOTROS / SERVICIOS
    ============================================ */

.about-section {
    padding: 150px 5% 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 212, 212, 0.2);
}

.service-card-content {
    padding: 25px;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.about-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--neon-shadow);
    border: 1px solid var(--primary);
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item h4 {
    font-size: 2.5rem;
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
}

/* Cart Overlay Styles */
.cart-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(0,0,0,0.8); backdrop-filter: blur(5px); z-index: 2000; display: none; justify-content: center; align-items: center; opacity: 0; transition: opacity 0.3s ease; }
.cart-overlay.active { display: flex; opacity: 1; }
.cart-modal { width: 90%; max-width: 600px; background: var(--bg-surface); border-radius: 20px; padding: 30px; border: 1px solid var(--primary); box-shadow: 0 0 30px rgba(0, 255, 255, 0.2); position: relative; max-height: 90vh; overflow-y: auto; }
.cart-close { position: absolute; top: 20px; right: 20px; background: transparent; border: none; color: var(--text-muted); font-size: 1.5rem; cursor: pointer; transition: var(--transition); }
.cart-close:hover { color: var(--secondary); transform: scale(1.2); }
.cart-items { margin: 20px 0; border-bottom: 1px solid var(--glass-border); padding-bottom: 20px; }
.cart-total { font-size: 1.5rem; font-weight: 800; color: var(--primary); text-align: right; margin-bottom: 20px; }
.checkout-form input, .checkout-form textarea { width: 100%; padding: 12px; margin-bottom: 15px; background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); border-radius: 8px; color: white; font-family: inherit; }
.checkout-form input:focus { outline: none; border-color: var(--primary); }

/* Servicios modernos grid */
.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.service-card-premium {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card-premium:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 255, 255, 0.1);
}

.service-card-image {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-premium:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card-price {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-dark);
    padding: 8px 15px;
    border-radius: 50px;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-weight: 800;
    font-size: 1.2rem;
    z-index: 5;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.service-details-list {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.service-details-list li {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-details-list li i {
    color: var(--primary);
    font-size: 0.7rem;
}

.service-btn-premium {
    width: 100%;
    margin-top: auto;
    border-radius: 12px;
    padding: 15px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background: linear-gradient(45deg, var(--primary), var(--secondary)) !important;
    border: none !important;
    font-weight: 800;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-btn-premium i {
    transition: transform 0.3s ease;
}

.service-btn-premium:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.service-btn-premium:hover i {
    transform: translateX(5px);
}

.service-btn-premium::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(rgba(255,255,255,0.2), transparent, transparent);
    transform: rotate(45deg);
    transition: 0.5s;
}

.service-btn-premium:hover::after {
    left: 100%;
    top: 100%;
}
