/* ===== SECCIÓN NUESTRA FILOSOFÍA PREMIUM ===== */
.philosophy-section {
    padding: 100px 8%;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
        url('https://plus.unsplash.com/premium_photo-1675695700399-d017e858209e?fm=jpg&q=60&w=3000&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NXx8dGV4dHVyYSUyMGRlJTIwcGFwZWwlMjBuZWdyb3xlbnwwfHwwfHx8MA%3D%3D') no-repeat center center/cover;
    color: #fff;
    position: relative;
}

/* Contenedor central */
.philosophy-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Título principal */
.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #E67E22;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.2;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.4);
}

/* Subtítulo */
.section-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #eee;
    max-width: 800px;
    margin: 0 auto 70px auto;
    line-height: 1.7;
}

/* Contenedor de tarjetas */
.philosophy-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* Tarjeta */
.philosophy-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex: 1 1 280px;
    padding: 35px 25px;
    border-radius: 24px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.45);
    transition: all 0.4s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Hover dinámico */
.philosophy-card:hover {
    transform: translateY(-12px) rotateZ(-1deg) scale(1.03);
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
    border-color: rgba(255,204,0,0.5);
}

/* Icono de la tarjeta */
.card-icon-container {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
 background: linear-gradient(135deg, rgba(230,126,34,0.7), rgba(230,126,34,0.9));

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.philosophy-card:hover .card-icon-container {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 0 20px rgba(255,204,0,0.6);
}

/* Icono SVG */
.card-icon {
    width: 36px;
    height: 36px;
    fill: #fff;
}

/* Título de la card */
.philosophy-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
}

/* Texto de la card */
.philosophy-card p {
    font-size: 1rem;
    color: #ddd;
    line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.6rem;
    }
    .section-subtitle {
        font-size: 1.1rem;
    }
    .philosophy-cards {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.3rem;
    }
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 50px;
    }
    .philosophy-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.9rem;
    }
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }
    .philosophy-card {
        flex: 1 1 100%;
        padding: 25px 15px;
    }
}
