* {
    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: 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{
    display: flex;
    justify-content:center;
    align-items: center;
    padding: 0 12vw;
    gap: 4vw;

    .direita{
        h1{
            font-size: 2vw;
            font-weight: 400;
            color: #8D0801;

        }

        img{
            width: 30vw;
        }
    }

    .esquerda{
        display: flex;
        flex-direction: column;
        width: 40%;

            .card{
                h2{
                    font-size: 1.5vw;
                    font-weight: 500;
                }
                p{
                    margin-left: 0.4vw;
                    font-size: 0.9vw;
                    line-height: 1.2vw;
                }
            }
    }
}

span{
    font-weight: 600;
    color: #8D0801;
}


/* ============================================================
   ANIMAÇÃO SIMPLES DE ENTRADA (SEM MEXER NO HTML)
   ============================================================ */
header { 
    animation: fadeSubir 0.8s ease-out forwards; 
}

/* --- Lado Direito --- */
.s1 .direita h1 { 
    animation: fadeSubir 0.8s ease-out 0.2s forwards; 
    opacity: 0; 
}
.s1 .direita img { 
    animation: fadeSubir 0.8s ease-out 0.4s forwards; 
    opacity: 0; 
}

/* --- Lado Esquerdo (Cards em Cascata) --- */
.s1 .esquerda .card:nth-child(1) { 
    animation: fadeSubir 0.8s ease-out 0.6s forwards; 
    opacity: 0; 
}
.s1 .esquerda .card:nth-child(2) { 
    animation: fadeSubir 0.8s ease-out 0.8s forwards; 
    opacity: 0; 
}
.s1 .esquerda .card:nth-child(3) { 
    animation: fadeSubir 0.8s ease-out 1.0s forwards; 
    opacity: 0; 
}

/* O Keyframe que faz a mágica acontecer */
@keyframes fadeSubir {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}