* {
    border: 0px;
    padding: 0px;
    box-sizing: border-box;
    text-decoration: none;
}

body,
html {
    font-family: "Barlow", sans-serif;
    overflow-x: hidden;
    background-color: #e8ecee;
    
}


.s1{
    padding: 1vw 3vw;

     header {
            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);

                }
            }
        }


.flex-s1{
    margin-top: 10vh;
    display: flex;
    align-items: center;
    justify-content: space space-between;

     .content-s1{
        margin-left: 2vw;
           h2{
            color:#8D0801 ;
            font-size: 2vw;
            font-weight: 400;
            margin-bottom: 20px;
        }
        h1{
            font-size: 5vw;
            font-weight: 400;
            margin: 0px;
            height: min-content;
            color: rgba(0, 0, 0, 0.85);
        }
        p{
            font-size: 1.5vw;
            width: 95%;
            font-weight: 400;
            color: rgba(0, 0, 0, 0.85);
        }
     }
        
     img{
        width: 45vw;
        height: 29vw;
        border-radius: 10px;
        box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
     }
}
}


/* ============================================================
   ANIMAÇÃO SIMPLES DE ENTRADA (SEM MEXER NO HTML)
   ============================================================ */
header { 
    animation: fadeSubir 0.8s ease-out forwards; 
}

/* --- Bloco de Texto (Esquerda) --- */
.content-s1 h2 { 
    animation: fadeSubir 0.8s ease-out 0.2s forwards; 
    opacity: 0; 
}

/* Efeito cascata linha por linha nos H1 */
.content-s1 h1:nth-of-type(1) { 
    animation: fadeSubir 0.8s ease-out 0.3s forwards; 
    opacity: 0; 
}
.content-s1 h1:nth-of-type(2) { 
    animation: fadeSubir 0.8s ease-out 0.4s forwards; 
    opacity: 0; 
}
.content-s1 h1:nth-of-type(3) { 
    animation: fadeSubir 0.8s ease-out 0.5s forwards; 
    opacity: 0; 
}

.content-s1 p { 
    animation: fadeSubir 0.8s ease-out 0.6s forwards; 
    opacity: 0; 
}

/* --- Imagem (Direita) --- */
.flex-s1 img { 
    animation: fadeSubir 0.8s ease-out 0.8s 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); 
    }
}