/* * {
    border: 2px solid red;
} */

* {
    margin: 0;
}


@font-face {
    font-family: 'frutiger';
    src: url(Univers_1954_Adrian_Frutiger/UniversLTStd-Cn.otf);
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'frutiger';
    src: url(Univers_1954_Adrian_Frutiger/UniversLTStd-Black.otf);
    font-weight: 900;
    font-style: normal;
}



h1 {
    color: rgb(250, 66, 173);
    font-size: 60px;

    font-family: 'frutiger';
    font-weight: 900;
    font-style: normal;
}

h2 {
    color: rgb(250, 66, 173);
    font-size: 30px;
    font-weight: bold;
    font-family: 'frutiger';

}

h4 {
    margin-top: 50px;
    color: rgb(250, 66, 173);
    font-size: 30px;
    font-weight: normal;
    font-family: 'frutiger';
}

img {
    width: 300px;
    margin-bottom: 20px;

}

body {
    background-color: #fce4f1;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'frutiger';
    line-height: 1.8;

}


#contentor {
    background-color: #b3905d3c;
    width: 800px;

}


#rodape {
    background-color: white;
    border-top: 5px solid rgb(250, 66, 173);
    padding: 30px;
    margin-top: 80px;
    margin: 20px 20px;

}

#logo {
    width: 100px;
}


#cabecalho {
    background-color: white;
    border-bottom: 5px solid rgb(250, 66, 173);
    padding: 30px;
    margin-bottom: 80px;
    padding: 40px;

    margin: 20px 20px;

}

.conteudo {
    background-color: white;

    padding: 30px;
    margin-bottom: 80px;
    margin: 20px 20px;


}



#frutiger {
    display: block;
    margin: 0 auto;
    width: 90%;
    margin-bottom: 20px;

}

#topBtn {
    position: fixed;
    /* mantém no canto mesmo ao scroll */
    bottom: 30px;
    /* 30px do fundo */
    right: 30px;
    /* 30px da direita */
    width: 50px;
    /* tamanho do botão */
    height: 50px;
    font-size: 22px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff4da6, #ff0080);
    color: white;
    cursor: pointer;
    /* cursor normal de botão */
    box-shadow: 0 5px 20px rgba(255, 0, 128, 0.4);
    display: none;
    /* começa escondido */
    transition: all 0.3s ease;
    z-index: 9999;
    /* sempre por cima do resto */
}

#topBtn:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(255, 0, 128, 0.6);
}

#aplicagrelha {

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;

    gap: 20px;
    align-items: center;
}

#textos {

    grid-column: span 2;

}

#A {
    grid-column: span 1;
    width: 100%;
}