.gastro-tech-section {
    position: relative;
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-image: url('/img/background-gastro-tech.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
.content-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 20px;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.badge {
    color: #4D57FF;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.content-box h2 {
    font-size: 2.5rem;
    margin: 15px 0;
    color: #1A1A1A;
}

.content-box p {
    color: #4A4A4A;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-group {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #4D57FF;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.btn-secondary {
    background: transparent;
    color: #1A1A1A;
    border: 1px solid #1A1A1A;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}
/* Ajuste opcional para darle más aire a la sección */
.servicios-grid-section {
    padding: 60px 0;
    background-color: #0B0C10; /* Fondo oscuro consistente */
}

/* Mejora visual para la tarjeta principal en móvil */
@media (max-width: 768px) {
    .card-main { margin-bottom: 20px; }
}
.qr-modes-section { padding: 100px 0; background: #0B0C10; color: #fff; }

.header-section { text-align: center; margin-bottom: 60px; }
.section-title { font-size: 2.5rem; margin-bottom: 15px; }
.section-subtitle { color: #A0A5B5; font-size: 1.1rem; }

.qr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.qr-card {
    background: #16171A;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid #2A2A2A;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.qr-card:hover {
    border-color: #4D57FF;
    box-shadow: 0 0 30px rgba(77, 87, 255, 0.2);
    transform: translateY(-10px);
}

.badge-status, .badge-status-orange, .badge-status-yellow {
    font-size: 0.7rem; padding: 5px 12px; border-radius: 50px; text-transform: uppercase;
    position: absolute; top: 20px; right: 20px;
}
.badge-status { background: rgba(77, 255, 150, 0.1); color: #4DFF96; }
.badge-status-orange { background: rgba(255, 150, 77, 0.1); color: #FF964D; }
.badge-status-yellow { background: rgba(255, 220, 77, 0.1); color: #FFDC4D; }

.icon { font-size: 2.5rem; margin-bottom: 20px; }
.qr-card h3 { margin-bottom: 15px; }
.qr-card p { color: #A0A5B5; line-height: 1.6; }
.gastro-niche-section { padding: 100px 0; background: #0B0C10; color: #fff; }

.gastro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gastro-card {
    background: #16171A;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #2A2A2A;
    transition: 0.4s;
}

.gastro-card:hover {
    border-color: #4D57FF;
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(77, 87, 255, 0.2);
}

.img-wrapper img {
    width: 100%; height: 200px; object-fit: cover;
    filter: brightness(0.8); transition: 0.4s;
}

.gastro-card:hover .img-wrapper img { filter: brightness(1); }

.content { padding: 25px; }
.content h3 { margin-bottom: 10px; color: #fff; }
.content p { color: #A0A5B5; font-size: 0.95rem; line-height: 1.5; }