/* ==========================================
   SERVICES SECTION - TABLET
   ========================================== */
@media (max-width: 1100px) {
    .services-section {
        margin-top: -80px;
        padding: 120px 20px 80px;
    }
    
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .card {
        height: 350px;
    }
    
    .services-title::before,
    .services-title::after {
        width: 300px;
        height: 300px;
        top: -40px;
    }
    
    .services-title::before {
        left: -280px;
    }
    
    .services-title::after {
        right: -280px;
    }
    
    .orange-card .logo-overlay {
        width: 80px;
        height: 150px;
    }
}

/* ==========================================
   SERVICES SECTION - MOBILE
   Layout: Grid 2 columnas según ejemplo
   ========================================== */
@media (max-width: 600px) {
    
    /* SECCIÓN */
    .services-section {
        padding: 80px 20px 60px;
        margin-top: -60px;
    }
    
    /* TÍTULO */
    .services-title {
        margin-bottom: 30px;
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    /* ==========================================
       ISOTIPOS LATERALES - Más visibles
       ========================================== */
	
	.services-title {
    max-width: 1300px;
    margin: 0 auto 60px;
    color: white;
    text-align: center;
     /*font-size: clamp(2rem, 5vw, 3.5rem); */
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1px;
    font-family: 'Domi', sans-serif;
    position: relative;
    z-index: 2;
}
	
    .services-title::before {
        width: 250px;
        height: 250px;
        top: 50px;
        left: 160px;
        opacity: 0.1;
        filter: blur(13px);
    }
    
    .services-title::after {
        width: 250px;
        height: 250px;
        top: 430px;
        right: 50px;
        opacity: 0.1;
        filter: blur(13px);
    }
    
    /* ==========================================
       GRID MOBILE - 2 COLUMNAS
       ========================================== */
    .cards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        max-width: 400px;
    }
    
    /* ==========================================
       BASE CARDS
       ========================================== */
        .card {
        height: 160px;
        padding: 15px;
        border-radius: 30px;
    }
    
    .card-number {
        font-size: 35px;
        font-weight: 400;
    }
    
        .card-content h3 {
        font-size: 18px;
        font-weight: 500;
        text-transform: uppercase;
    }
    
    .card-content p {
        font-size: 13px;
        line-height: 1.3;
        opacity: 0.9;
    }
    
    /* ==========================================
       OCULTAR TEXTOS - Solo en cards 1, 3 y 4
       ========================================== */
    .card:nth-child(1) .card-content p,
    .card:nth-child(3) .card-content p,
    .card:nth-child(4) .card-content p {
        display: none;
    }
    
    /* ==========================================
       CARD 1 - CUADRADO IZQUIERDA (WHITE)
       ========================================== */
    .card:nth-child(1) {
        grid-column: 1;
        height: 160px;
    }
    
    /* ==========================================
       CARD 2 - RECTÁNGULO (ORANGE)
       ========================================== */
    .orange-card {
        grid-column: span 2;
        height: 180px;
    }
    
    /* Isotipo en tarjeta naranja - Más visible */
    .orange-card .logo-overlay {
        width: 70px;
        height: 100px;
        transform: translate(110%, -100%);
        opacity: 0.2;
    }
    
    /* ==========================================
       CARD 3 - CUADRADO (WHITE)
       ========================================== */
    .card:nth-child(3) {
        grid-column: 1;
        height: 160px;
    }
    
    /* ==========================================
       CARD 4 - CUADRADO (GLASS)
       ========================================== */
    .glass-card {
        grid-column: 2;
        height: 160px;
    }
    
}