* {
    border: 0px;
    padding: 0px;
    box-sizing: border-box;
    text-decoration: none;
}

body,
html {
    font-family: "Barlow", sans-serif;
    overflow-x: hidden;
    background-color: #e8ecee;
}

      header {
        padding: 1vw 2vw;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: auto;
            width: 95%;
            margin: auto;

            .logo-header {
                background-color: rgba(255, 255, 255, 0);
                box-shadow: 0px 0px 5px 2px rgba(83, 83, 83, 0);
                width: 120px;
                height: auto;
                border-radius: 30px;

            }

            .abas {
                border-radius: 15px;
                background-color: rgba(85, 85, 85, 0.55);
                backdrop-filter: saturate(180%) blur(20px);
                box-shadow: 0px 0px 6px 2px rgba(255, 255, 255, 0.1);
                padding: 18px 2vw;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 3vw;

                a {
                    color: white;
                    transition: ease-in-out .2s;
                    font-weight: 400;
                }

                a:hover {
                    color: #d90404;
                    transform: translateY(-1px);
                }
            }

            .btn-contato-vermelho {
                color: rgba(255, 255, 255, 0.9);
                background-color: #D90429;
                border: none;
                outline: none;
                padding: 3px 10px 3px 18px;
                font-size: 16px;
                border-radius: 20px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 10px;
                font-weight: 500;
                font-size: 18px;
                transition: ease-in-out .2s;
                box-shadow: -4px 5px 16px 0px rgba(0, 0, 0, 0.4);


                img {
                    height: 50px;
                    width: 50px;
                    box-shadow: none;
                    transition: ease-in-out .2s;
                }


            }

            .btn-contato-vermelho:hover {
                transform: translateY(-2px) translateX(2px) scale(1.05);
                box-shadow: -4px 5px 16px 0px rgba(0, 0, 0, 0.5);

                img:hover {
                    transform: scale(1.08);

                }
            }
        }

.s1 {
    margin-top: 5vh;
    padding: 0 8vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5vw;

        .esquerda{

            h1{
                font-size: 2vw;
                font-weight: 500;
                color: #8D0801;
            }

            img{
                width: 44vw;
                height: 25vw;
                border-radius: 5px;
            }
        }


        .direita{
            h2{
                font-size: 3vw;
                font-weight: 400;
                margin: 0;
            }

            .sublinhado{
                text-decoration: underline;
                text-decoration-color: #8D0801;
                margin-bottom: 4vh;
            }

            p{
                margin-left: 1vw;
                width: 75%;
                font-size: 1.1vw;
                text-indent: 6px;
                line-height: 34px;
                font-weight: 300;
            }
        }
}


/* ============================================================
   ANIMAÇÃO SIMPLES DE ENTRADA (SEM MEXER NO HTML)
   ============================================================ */
header { 
    animation: fadeSubir 0.8s ease-out forwards; 
}
.s1 .esquerda { 
    animation: fadeSubir 0.8s ease-out 0.2s forwards; 
    opacity: 0; 
}
/* Pega o primeiro h2 (Tipos de Cargas) */
.s1 .direita h2:not(.sublinhado) { 
    animation: fadeSubir 0.8s ease-out 0.4s forwards; 
    opacity: 0; 
}
/* Pega o h2 sublinhado (Atendidas) */
.s1 .direita .sublinhado { 
    animation: fadeSubir 0.8s ease-out 0.5s forwards; 
    opacity: 0; 
}
/* Pega o texto final */
.s1 .direita p { 
    animation: fadeSubir 0.8s ease-out 0.6s forwards; 
    opacity: 0; 
}

@keyframes fadeSubir {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}