.seguro-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    align-self: stretch;
    width: 100%;
}

.seguro-content {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;

    border-radius: 16px;
    background: #FFF;
    box-shadow: 0 1px 4px 0 rgba(12, 12, 13, 0.10), 0 1px 4px 0 rgba(12, 12, 13, 0.05);
}

.seguro-whatis-box {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.title-icon {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: flex-start;
}

.title-icon img{
    width: 42px;
    height: 48px;
}

.title-icon h2 {
    color: #333;
    font-size: 28px;
    font-weight: 600;
    line-height: 32px;
}

.seguro-whatis-box span {
    color: #333;
    font-size: 16px;
    font-weight: 400;
}

.seguro-container-problema {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: flex-start;
    gap: 48px;
}

.seguro-content-problemas {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}

.seguro-title-underline {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
}

.underline {
    height: 4px;
    align-self: stretch;

    border-radius: 8px;
    background: var(--botao-primario);
}

.seguro-title-underline h3 {
    color: #333;
    font-size: 20px;
    font-weight: 600;
}

.seguro-list-problemas {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-self: stretch;
}

.seguro-box-problemas {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-self: stretch;
}

.seguro-card-problema {
    display: flex;
    padding: 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 100%;
    

    border-radius: 8px;
    border: 1px solid #CCC;
}

.seguro-card-problema p {
    text-align: center;
}

.seguro-process-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

.rectangle {
    width: 4px;
    align-self: stretch;

    border-radius: 8px;
    background: var(--botao-primario);
}

.icon-title h2 {
    color: #333;
    font-size: 28px;
    font-weight: 600;
    line-height: 32px;
}

.seguro-process-box span {
    color: #333;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.seguro-aviso-box {
    display: flex;
    padding: 24px;
    align-items: center;
    gap: 16px;
    width: 100%;

    border-radius: 16px;
    border: 1px solid #CCC;
}

.seguro-aviso-box svg{
    min-width: 48px;
}

.seguro-aviso-box span {
    color: #333;
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.seguro-aviso-box span > span {
    font-weight: 700;
}

.seguro-drones-section {
    background-color: #F6F6F6;
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

/*  **********************************************
*********** TABLET/MOBILE MEDIA QUERY   **********
**********************************************  */


@media (max-width: 1200px) {

    .seguro-drones-section {
        margin-top: 48px;
    }

}


@media (max-width: 840px) {
    .seguro-container-problema {
        flex-direction: column;
    }
}

@media (max-width: 648px) {

}