/* Icons CSS - SVG icons implementados directamente */

/* Clase base para todos los iconos */
.icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
    vertical-align: middle;
}

.icon-large {
    width: 40px;
    height: 40px;
}

.icon-medium {
    width: 30px;
    height: 30px;
}

.icon-small {
    width: 18px;
    height: 18px;
}

/* Contenedor de icono circular */
.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-light);
    margin: 0 auto 20px;
}

.icon-circle-small {
    width: 50px;
    height: 50px;
}

/* Contenedor para íconos de servicios */
.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    margin-bottom: 20px;
}
