.pilares {
    padding-top: 30px;
    display: block;
    max-width: 970px;

    .pilares-title {
        margin-bottom: 25px;

        h2 {
            font-size: 1.5em;
            font-weight: 600;
            color: #003bd1;
        }
    }

    .pilares-content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;

        .pilar {
            width: 45%;
            border-top: 4px solid #003bd1;

            .pilar-title {
                display: flex;
                justify-content: center;

                h3 {
                    color: #666;
                    font-size: 17px;
                    font-weight: 600;
                    text-align: center;
                    text-transform: uppercase;
                    padding-top: 15px;
                    margin-bottom: 50px;
                }
            }

            .pilar-content {
                padding-bottom: 40px;
                height: 235px;

                a {
                    display: flex;
                }
                
                .content-img {
                    padding-right: 15px;

                    img {
                        width: 100px;
                        height: 102px;
                    }
                }

                .content-text {
                    color: #666666;

                    h4 {                                               
                        font-size: 18px;
                        font-weight: 400;
                        padding-bottom: 15px;
                    }

                    p {
                        font-size: 12px;
                        font-weight: 500;
                        line-height: 17px;
                    }
                }
            }            
        }

        .pilar:nth-child(2) {
            border-top: 4px solid #666;
        }
    }

    .pilares-buttons {
        display: flex;
        flex-direction: row;
        gap: 30px;

        .pilar-btn {
            text-align: center;
            padding: 5px 10px;
            transition: 0.3s ease-in-out;
            cursor: pointer;
            width: 33%;

            a {
                color: white;
                font-weight: 600;
            }  
        }

        .pilar-btn:hover {
            background-color: #393230;
            border-color: #393230;
            box-shadow: 0 1px 3px rgba(0,0,0,.48), 0 1px 2px rgba(0,0,0,.25);
        }

        .color-dark {
            background-color: #003bd1;
        }

        .color-normal {
            background-color: #0e65e6;
        }

        .color-light {
            background-color: #909090;
        }
    }

    @media (max-width: 768px) {
        .pilares-content {
            flex-direction: column;
            justify-content: center;

            .pilar {
                width: 100%;

                .pilar-content {
                    height: auto;
                }
            }
        }

        .pilares-buttons {
            flex-direction: column;
            margin-bottom: 5em;

            .pilar-btn {
                width: 100%;
            }
        }
    }
}