/* GERAL */
:root {
    --main-color: #404041;
    --highlight-color: #9f1d21;
    --bg-color: #000;
    --accent-color: #b7a568;
}
* {
    box-sizing: border-box;
}

html, body {
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    font-family: "alternate-gothic-no-2-d", sans-serif;
    font-weight: 400;
    color: var(--main-color);
    overflow-x: hidden;
}

.hidden{
    display: none;
}
.show{
    display: block;
}

::selection, ::-moz-selection {
    background: var(--highlight-color);
    color: #fff;
}

/* MENU PRINCIPAL VISÍVEL */
#menuPrincipal {
    display: flex;
    justify-content: flex-end;
    align-items: center;

    padding: 15px;
    position: fixed;
    top: 0;
    width: 100%;
    background: none;
    z-index: 1000;
    max-width: 100%;
}

.menu-visivel{
    display: flex;
    gap: 1em;
    justify-content: space-around;

    z-index: 1001;
    background-color: #cabc83;
    padding: 8px;
    padding-left: 1em;
    padding-right: 1em;
    border-radius: 10px;
}

.hamburger {
    background-color: #cabc83;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Centraliza as barras */
    cursor: pointer;
    z-index: 10;
    width: 40px; /* Define uma largura fixa */
    height: 40px; /* Define uma altura fixa */
}

.bar {
    width: 30px;
    height: 3px;
    border: 1px #000 solid;
    background-color: #000;
    border-radius: 400px;
    margin: 4px 0; /* Pequeno espaçamento entre as barras */
    transition: 0.4s ease;
}

/* IDIOMA */
#idiomas {
    background-color: #cabc83;
    padding: 0;
    display: flex;
    gap: 1em;
}

#idiomas button {
    background-color: transparent;
    border-radius: 10px;
    padding: 8px;
    border: none;
    font-family: "alternate-gothic-no-2-d", sans-serif;
    font-size: 24pt;
    line-height: 1;
    transition: all .5s;
}

.idiomaAtv, #idiomas button:hover {
    background-color: #b5a366 !important;
    transition: all .5s;
}

/* MENU SUSPENSO */
.nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;

    list-style: none;
    top: -100vh;
    left: 0;
    background: url(../img/menu-bg.png) center center;
    background-size: cover;
    width: 100%;
    padding: 0;
    transition: top 0.5s ease;
    border-bottom: 10px var(--accent-color) solid;
}

.nav-links.active {
    top: 0;
    height: 100vh;
    padding: 20px;
}

#nav-links ul {
    width: 30%;
    border: 1px var(--accent-color) solid;
    border-radius: 28px;
    margin: auto;
    list-style-type: none;
    padding-left: 0;
}

#nav-links ul li:first-child {
    margin-top: -30px;
    text-align: center;
    background-color: transparent;
}

#logoMenu {
    background: transparent;
}

#nav-links ul li:last-child {
    margin-bottom: 30px;
}

#nav-links {
    display: flex;
}

.nav-links li {
    text-align: left;
    padding: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    font-family: "etna", sans-serif;
}

.nav-links.active li {
    opacity: 1;
    transform: translateY(0);
}

.nav-links a {
    background-color: #000;
    display: block;
    color: var(--accent-color);
    text-decoration: none;
    font-size: 18pt;
    font-weight: 700;
    padding: 10px 6%;
    transition: all 0.4s;
}

.logoMenu{
    background: transparent !important;
}

.logoMenu img{
    background: transparent;
}

.nav-links li {
    background-color: var(--accent-color);
}

.nav-links a:hover {
    text-decoration: none;
    font-size: 20pt;
    background: url(../img/menu-bg.png) no-repeat center center;
    background-size: cover;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    transition: all 0.4s;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-10px, 7px);
    transform-origin: center; /* Garante rotação no centro */
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0; /* Esconde completamente */
    transition: opacity 0.2s ease; /* Transição mais rápida para opacidade */
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-4px, -7px);
    transform-origin: center; /* Garante rotação no centro */
}

/* SECTION 1: Abertura / Home / Bella Black */
#bella-black {
    width: 100%;
    height: 100vh;
    background: url(../img/abertura-bg.png) center center;
    background-color: var(--bg-color);
    background-size: cover;
}

#bella-black p {
    margin: 0;
    padding: 0;
    font-size: 18px;
    color: #fff;
    line-height: 1.4;
    font-family: etna, sans-serif;
    font-weight: 300;
    font-style: normal;
    padding-left: 2%;
    padding-right: 12%;
    padding-bottom: 1px;
}

#bella-black img {
}

.home-logo{
    text-align: right;
    min-width: 48%;
    flex:1;
}

.home-logo > img{
    width: 76%;
}

#bella-black > .container {
    margin: auto auto;
    height: 100vh;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
}

.home-centro {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: flex-end;
    gap: 2em;
}


.home-sobre {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: flex-end;
    gap:1em;
    padding-right: 6%;
    flex:1;
}

.home-sobre img{
    width: 100%;
}

.selos {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: flex-start;
    gap:1em;
}

.selos > img{
    width: 10%;
}

.selos > .frigorifico-rio-maria{
    width: 20%;
}

.selos > .green-quality{
    width: 13%;
}

#seloPrimi {
    transition: all 5s ease-in-out;
}

header {
    text-align: center;
}

header img {
    width: 50%;
}

/* SECTION 2: I Loooove*/
#i-love-bella{
    padding: 0;
    width: 100%;
    height: auto;
    display: flex;
    background-color: white;
}

#fullscreen-video {
  position: relative;
  top: 0;
  left: 0;
  object-fit: cover;
  max-width: 100%;
}

/* SECTION CORTES ESPECIAIS */
#special-cuts {
    background: url('../img/menu-bg.png') no-repeat center center #000;
    background-size: 100% 100%;
    width: 100%;
    padding: 30px 6%;
    height: auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-stretch;
    justify-content: space-around;
}

#special-cuts > header{
    width: 100%;
    text-align: center;
    font-family: etna, sans-serif;
    font-weight: 700;
    font-style: normal;

    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap:2em;
}

#special-cuts > header > .selos{
    width: 100%;
    text-align: center;
    font-family: etna, sans-serif;
    font-weight: 700;
    font-style: normal;

    align-self: flex-start;
    display: flex;
    flex-direction: column;
}

#special-cuts > header > .selos > div{
    width: 100%;
    text-align: left;

    display: flex;
    flex-direction: row;
}

#special-cuts > header > .selos > div > img{
    width: 12%;
}

#special-cuts h2 {
    text-align: left;
    font-size: 100px;
    color: #bbb185;
    margin: 0;
    text-shadow:
        0 6px #262628,
        0 7px #a59868;
}

#special-cuts > header > .imgBoi{
    width: 120%;
    vertical-align: bottom;
}

#special-cuts > header > .imgBoi > a > img{
    width: 100%;
    vertical-align: bottom;
}

.menu-cortes{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1em;
    display: flex;
}

.item-corte{
    flex-grow: 1;
    background-color:#181516;
    border: 1px solid #a89861;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    font-family: etna, sans-serif;
    color:#a79760;
    padding:0;margin: 0;
    gap: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.item-corte a{
    font-size: 16px;
    font-weight: 400;
    font-family: etna, sans-serif;
    color:#a79760;
    text-decoration: none;
    padding:0;margin: 0;
}

.subitem-corte{
    padding: 10px;
    display: flex;
    flex-direction: row;
}

.subitem-corte > a{
    position: relative;
    margin: 0;
    padding: 0;
    vertical-align: bottom;
    display: flex;
    background: red;
}

.subitem-corte > a > figure{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding:0 ;margin: 0;
}

.subitem-corte figcaption{
    text-align: center;
    color:#a79760;
    margin: 0;
}

.subitem-corte > a > figure > img{
    width: 50%;
    padding:5px 0;margin: 0;
    transition: transform 0.3s ease;
}

.subitem-corte > a > figure:hover img {
  transform: translateY(-20px) scale(1.2); /* Sobe 20px e aumenta 20% */
  transition: transform 0.3s ease; /* Adiciona uma transição suave */
}

.botao-corte{
    border:none;
    background: none;
}

.imgBtn:hover{
  transform: translateY(-20px) scale(1.2); /* Sobe 20px e aumenta 20% */
  transition: transform 0.3s ease; /* Adiciona uma transição suave */
}

/* CORTES */
#conteudo{
    background: url('../img/cortes/bg.png');
    background-size: cover;
    display: flex;
    flex-direction: column;
    flex-wrap: no-wrap;
}

#conteudo header{
    flex-grow: 1;
    padding-top: 30px;
    width:100%;
    display: flex;
    flex-direction: column;
}

#conteudo header nav{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: .5em;
}

#conteudo header nav div{}

#conteudo header nav div button{
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 1em;

    height: 100%;
    color:#b9a76b;
    font-weight: 700;
    font-size: 16pt;
    font-family: "etna", sans-serif;
    transition: .5s all;
}

#conteudo header nav div button img{
    background: transparent;
}

#conteudo header nav div button:hover, .btnCortesAtv{
    color: #000 !important;
    background: url(../img/cortes/menu-a.png);
    transition: .5s all;
}
#corte > header > nav{
    margin:0;
    padding:0;
    flex-grow:1;
}

#corte > header > nav > ul{
    display: flex;
    justify-content:center;
    list-style-type: none;
    margin:0;
    padding:0;
}


.pagina-cortes{
    display:flex;
    justify-content: space-between;
}

.pagina-cortes img{
    max-width: 100%;
}
.esquerdaCortes, .direitaCortes{
    width:20%;
    display:flex;
    flex-direction:column;
    justify-content: space-between;
}

#imagensCortes{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;

    max-width: 50%;
    box-sizing: border-box;
    padding: 30px;
}

.galeriaDestaqueCortes{

    box-sizing: border-box;
    text-align:center;padding: 2em 6em;
    max-width: 100%;
}

.galeriaCortes{
    display: flex;
    justify-content: space-around;
    padding: 3em 0;

    border-top: 1px #b9a76b solid;
    box-sizing: border-box;
}

.galeriaCortes img{
    max-width: 30%;
}

.txtCortes{
    font-family: 'Etna', Arial, sans-serif;
    color:#fff;
    font-size:20pt;
}


/* SECTION SOBRE NOS */
#about-us {
    display: flex;
    height: 100vh;
    background: url(../img/abertura-bg.png) center center;
    background-color: var(--bg-color);
    background-size: cover;
}

.espaco {
    width: 50%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.conteudo{
    font-family: "alternate-gothic-no-2-d", sans-serif;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 22px;
}

.conteudo img{
    width: 60%;
    margin: auto;
}

#conteudo-brit, #conteudo-primi {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    cursor: pointer;
}

#conteudo-brit {
    background: url(../img/racas-britanicas.jpg) no-repeat;
    background-position: left bottom;
    background-size: 190% auto;
    transition: background-position 1s ease-in-out;
    transition: background-size .2s ease-in-out;
}

#conteudo-brit:hover #seloBrit0 {
    transform: scale(1.2);
    transition: all 0.3s ease;
}

#conteudo-brit:hover{
    background-size: 185% auto;
}

#britanico3, #britanico4, #britanico5{
    padding-right: 15%;
    line-height: 1.4;
}

#primi2, #primi3, #primi4, #primi5{
    padding-right: 15%;
    line-height: 1.4;
}

#conteudo-primi {
    background: url(../img/bovino-primi.jpg) no-repeat;
    background-position: right center;
    background-size: 210%;
    transition: background-position 1.5s ease-in-out;
    transition: background-size .2s ease-in-out;
}

#conteudo-primi:hover #seloPrimi0 {
    transform: scale(1.2);
    transition: all 0.3s ease;
}

#conteudo-primi:hover{
    background-size: 200% auto;
}

.conteudoAberto {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 20px 5%;
    box-sizing: border-box;
    top: 0;
    left: 0;
}

#aberto-primi {
    background-color: var(--main-color);
    font-size: 25px;
    padding-top: 40px;
    padding-left: 4%;
    padding-right: 13%;
    font-family: etna, sans-serif;
    font-size: 16px;
    color: var(--accent-color);
}

#aberto-primi {
    background-color: var(--accent-color);
    color: var(--main-color);
    font-size: 25px;
    font-family: etna, sans-serif;
    font-size: 16px;
}

#aberto-primi a{
    width: 100%;
    display: flex;
    gap: 1em;
    font-family: "alternate-gothic-no-2-d", sans-serif;
    text-transform: uppercase;
    font-size: 20px;
    color: var(--main-color);
    text-decoration: none;
}

#primi1{
    font-family: "alternate-gothic-no-2-d", sans-serif;
    text-transform: uppercase;
    font-size: 30px;
    padding-right: 55%;
}

#aberto-brit {
    background-color: var(--main-color);
    color: var(--accent-color);
    font-size: 25px;
    font-family: etna, sans-serif;
    font-size: 16px;
}

#aberto-brit strong{
    font-family: "alternate-gothic-no-2-d", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 26px;
}

#aberto-brit h3{
    font-size: 50px;
    font-weight: 400;
    font-family: "alternate-gothic-no-2-d", sans-serif;
    color: #fff;
    text-transform: uppercase;
    padding: 0;margin: 0;
}

.fechar {
    cursor: pointer;
    font-family: etna, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 32px;
    width: 100%;
    text-align: right;
}

/* SECTION SUSTENTABILIDADE */
#sustainability {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  font-family: etna, sans-serif;
}

.carousel {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 200%;
  height: 100%;
  padding-bottom: 70px;
  background: url('../img/sustentabilidade-bg1.png') no-repeat left top/50% 100%, url('../img/sustentabilidade-bg2.png') no-repeat right top/5%;
}

.carousel-item {
    width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-sizing: border-box;
  padding: 20px;
}

#producaoSustentavel, #alimentacao{
    padding-left: 3%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10em;
}

#producaoSustentavel > div, #alimentacao > div{
    width: 50%;
    padding: 20px 0;
}

#producaoSustentavel h3 {
    font-size: 64pt;
    line-height: 1;
    margin: 0;padding: 0;
    color: #cdbc7b;
    margin: 0;
    text-shadow:
        0 6px #354e2d,
        0 7px #cdbc7b;
}
#producaoSustentavel h3 img{
    width: 10%;
}

#producaoSustentavel p{
    font-size: 16pt;
    font-weight: 400;
    color: #fff;

}
#alimentacao h3 {
    font-size: 60pt;
    color: #507a41;
    margin: 0;padding: 0;
}

#alimentacao p{
    font-size: 16pt;
    font-weight: 400;
    color: #252525;
}

.image-block img {
  max-width: 70%;
}

.carousel-indicators {
  position: absolute;
  bottom: 0px;
  left: 50%;
  display: flex;
  gap: 1em;
  padding-bottom: 30px;
}

.indicator {
  border: 6px #ccc solid;
  width: 27px;
  height: 27px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(0, 0, 0, 1);
}

.indicator.active {
  background-color: #6c9658;
}
*/

/* SECTION  buyers */
#buyers {
    height: 100vh;
    background: url('../img/compradores-bg.png') no-repeat center center;
    background-size: cover;
    color: #fff;
    font-size: 30pt;
    font-weight: 500;
    font-family: "etna", sans-serif;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border:20px green solid;
}

#buyers .conteudoc {
    border: 2px #cdbc7b solid;
    border-left: none;
    border-right: none;
    width: 984px;
    min-height: 500px;
    margin: auto;
    vertical-align: middle;
    animation: expandVertically 2s forwards;
}

/* Keyframes para a animação */
@keyframes expandVertically {
    0% {
        height: 0;
        transform: scaleY(0);
    }
    100% {
        height: auto;
        transform: scaleY(1);
    }
}

#buyers h2 {
    line-height: .1;
    font-size: 60px;
    maergin:0;
    padding: 0;
    padding-top: 30px;
}

#buyers h3 {
    font-size: 54px;
    line-height: .8;
    color: #cdbc7b;
    text-transform: uppercase;
    font-family: "alternate-gothic-no-2-d", sans-serif;
    font-weight: 400;
    maergin:0;
    padding: 0;
}

#buyers a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #cdbc7b;
    border: 2px #b7a568 solid;
    border-radius: 40px;
    width: 480px;
    height: 80px;
    color: #231f20;
    text-decoration: none;
    margin: auto;
    font-size: 50px;
    font-weight: 700;
}

#buyers a:hover {
    background-color:#b7a568;
}

/* FRIGORIFICO */
#frigorifico-rio-maria{
    height: 80vh;
    background: url(../img/f-imagem.png) no-repeat;
    background-size: auto 100%;
}

#frigorifico-acesse{
    cursor: pointer;
    transition: all 1s ease;
}

#frigorifico-acesse:hover{
    background-color: var(--accent-color);
    color:#fff;
    transition: all 1s ease;
}

.fconteudo{
    background-color: #fff;
    width: 60%;
    height: 80vh;
    margin: auto;
    margin-right: 0;
    color: var(--main-color);

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.flogos{
    display: flex;
    gap: 2em;
}

.flogos img{
    max-width: 80%;
}

.ftxt{
    text-align: center;
    padding: 30px 0;
}

.ftxt h3{
    font-family: "alternate-gothic-no-2-d", sans-serif;
    font-size: 30px;
    margin: 0;
}

.ftxt p{
    font-family: etna, sans-serif;
    font-size: 18px;
    max-width: 420px;
}

.fconteudo button{
    background: none;
    border: 1px #000 solid;
    padding: 10px 30px;
    border-radius: 30px;
    font-family: etna, sans-serif;
    font-size: 26px;
    font-weight: 900;
}

/* ULTIMOS POSTS */
.carousel-containerInsta {
    position: relative;
    width: 100%;
    padding: 20px 30%;
    max-height: 100vh;
    margin: auto;
    overflow: hidden;
}

.carousel-slideInsta {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slideInsta > div {
    min-width: 350px;
    box-sizing: border-box;
    padding: 30px;
    border: 1px solid #ccc;
    background: #fff;
    margin: 5px;
    text-align: center;
    border-radius: 15px;
    max-height: 70vh;
    transition: all .5s;
    cursor: pointer;
}


.carousel-slideInsta > div:hover {
    padding: 30px 10px;
    background: var(--highlight-color);
    color: #fff;
    font-size: 0;
    transition: all .5s;
}

.container-imgInsta, .container-videoInsta {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.carousel-bulletsInsta {
    text-align: center;
    margin-top: 10px;
}

.carousel-bulletsInsta span {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 5px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.carousel-bulletsInsta span.active {
    background: #333;
}

.follow-button {
    text-align: center;
    margin-top: 20px;
}

.follow-button a {
    display: inline-block;
    padding: 10px 20px;
    background: #3897f0;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}


/* contact */
#contact {
    height: auto;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url('../img/contact-bg.svg') center top no-repeat;
    background-color: #231f20;
    background-size: cover;
    color: #a69865;
    font-family: "etna", sans-serif;
}

#contact h2 {
    font-size: 30pt;
}

#contact form {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 40px;
}

.two-columns{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 2em;
}

.half-width{
    flex:1;
    display: flex;
    flex-direction: column;
}

.full-width{
    width: 100%;
}

label{
    padding:20px 0 6px 0;
}
#contact form input,
#contact form textarea {
    width: 100%;
    background-color: var(--main-color);
    color: var(--accent-color);
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    border-radius: 30px;
    font-size: 16pt;
}

#contact form textarea{
    border-radius: 15px;
    margin-top: 10px;
    height: 100px;
}

#contact label sup{
    color: var(--highlight-color);
}

.half-width-btn{
    flex:0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
#contact form button {
    padding: 10px 40px;
    background-color: var(--accent-color);
    color: #000;
    font-family: etna;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    font-size: 26pt;
    cursor: pointer;
}

#contact .local {
    width: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
}

#contact iframe {
    border: none;
    width: 100%;
    filter: grayscale(100%);
    transition: filter 0.5s ease; /* Adiciona transição suave ao filtro */
}

#contact iframe:hover {
    filter: grayscale(0%);
}

#contacts{
    text-align: left;
}

#contacts a{
    font-size: 16px;
    color: var(--accent-color);
    text-decoration: none;
}
#contact .icons {
    width: 90%;
    display: flex;
    justify-content: flex-end;
    align-items: end;
    gap: 1em;
    padding-bottom: 30px;
}

#contact > .icons > div{
    width: 80px;
}

#contact > .icons > div > a {
    width: 100%;
}
#contact > .icons > div > a > img{
    width: 80%;
}

#contact .icons a {
    color: #a69865;
    font-size: 16pt;
}

#contact form button:hover {
    background-color: #8b7653;
}

.success-box {
    margin-top: 20px;
    padding: 15px;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}

.error-box {
    margin-top: 20px;
    padding: 15px;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}