@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Molle:ital@1&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --cor0: #A68160;
    --cor1: #8C5637;
    --cor2: #592B11;

    --fonte-padrao: Arial, Verdana ,Helvetica, sans-serif;
    --fonte-titulo: "Lobster", sans-serif;
    --fonte-sub-titulo: "Molle", cursive;
    --fonte-paragrafo: "Montserrat", sans-serif;
}
/*--------------------
         GERAL
----------------------*/
*{
    margin: 0px;
    padding: 0px;
}

html{
    scroll-behavior: smooth;
    background-color: black;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: black;
}

/*--------------------
        MAIN
----------------------*/

main{
    width: 100%;
    min-height: 100vh;
    background-color: white;
}

main h1{
    max-width: 35%;
    font-family: var(--fonte-titulo);
    font-size: 2.6em;
    color: var(--cor1);
    padding-left: 40px;
    text-shadow: 4px 3px 10px rgba(0, 0, 0, 0.192);
    margin-bottom: 80px;
    font-weight: normal;
    background-image: linear-gradient(to right, var(--cor0), rgba(255, 255, 255, 0.836));
}

@media (max-width: 750px){
    main h1{
        font-size: 2.2em;
        max-width: 50%;
    }
}

@media (max-width: 370px){
    main h1{
        font-size: 1.7em;
        max-width: 50%;
    }
}

main h2{
    text-align: center;
    font-family: var(--fonte-sub-titulo);
    font-weight: normal;
}

main p {
    font-family: var(--fonte-paragrafo);
    line-height: 1.7em;
    font-size: 1.1em;
    text-shadow: 1px 4px 10px rgba(0, 0, 0, 0.151);
}

/*--------------------
        HEADER
----------------------*/
header {
    position: fixed;
    z-index: 999;
    width: 100%;
    min-height: 80px;
    background-color: white;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.192);
    display: flex;
    align-items: center;
}

.container-menu {
    width: 100%;
}

.menu-celular {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 20px;
}

.navbar-brand-mobile {
    border-bottom: none !important;
    text-decoration: none;
}

.logo-central, .menu-celular img {
    margin: 0 30px;
    width: 50px !important;
    height: 50px !important;
    object-fit: contain;
}

nav a {
    text-decoration: none;
    font-size: 1.2em;
    padding: 10px;
    color: var(--cor0);
    transition: 0.3s;
    border-bottom: 1px solid transparent;
}

.hamburguer-btn {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: relative;
    z-index: 1100;
    pointer-events: auto !important;
}

.hamburguer-btn span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--cor0);
    border-radius: 2px;
}

#menuLateral {
    --bs-offcanvas-width: 220px;
}

@media (min-width: 849px) {
    .navbar-brand-mobile, .hamburguer-btn {
        display: none;
    }

    .menu-celular {
        justify-content: center;
    }

    .menu-desktop a:hover {
        border-bottom: 1px solid var(--cor0);
    }
}

@media (max-width: 848px) {
    .menu-desktop {
        display: none !important;
        visibility: hidden;
        pointer-events: none;
    }

    .nav-celular a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        text-align: left;
    }
}

/*--------------------
    IMAGEM PRINCIPAL
----------------------*/
#imagem-principal{
    padding-top: 80px;
    text-align: center;
    background: url('../assets/img/principal/imagem27.jpg') center center no-repeat fixed;
    background-size: cover;
    height: 100vh;
    background-color: rgba(5, 5, 5, 0.226);
}

#imagem-principal > h1{
    display: inline-block;
    max-width: 300px;
    color: white;
    background-image: none;
    margin: 30px 0px 0px 0px;
    padding: 0;
    font-weight: normal;
}
#imagem-principal > p{
    color: white;
    position:absolute;
    text-align: center;
    bottom: 0px;
    left: 50%; 
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.137);
    padding: 5px;
    font-weight: 400;
}

@media (max-width:700px){
    #imagem-principal {
        background: url('../assets/img/principal/imagem27media.jpg') center center no-repeat scroll;
        background-size: cover;
    }
}

@media (max-width:500px){
    #imagem-principal {
        background: url('../assets/img/principal/imagem27pequena.jpg') center center no-repeat scroll;
        background-size: cover;
    }
}


@media (max-width:600px){
    #imagem-principal > p {
        font-size: 0.9em;
        max-width: 170px;
    }
}



/*--------------------
       SOBRE NÓS
----------------------*/

#sobre{
    padding-top: 60px;
    padding-bottom: 70px;
}
#container-sobre-nos{
    color: black;
    text-align: center;
    font-weight: 500;
    text-indent: 30px;
    text-align: justify;
    max-width: 85%;
    margin: 0 auto;
    padding: 10px;
}

#container-card-sobre-nos{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 80px;
    padding: 15px;
    justify-content: center;
}

.card-sobre-nos{
    flex: 1 1 300px;
    max-width: 400px;
    border: 1px solid var(--cor1);
    background-color: #FDFDFD;
    border-radius: 8px;
    overflow: hidden;
    transition-duration: 0.5s;
    box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.219);
}

.card-sobre-nos:hover{
    transform: scale(1.01);
}

.card-sobre-nos > h2{
    padding: 10px;
    color: #8E735B;
}

.card-sobre-nos h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 1px;
    background: #8E735B;
    margin: 14px auto 0;
    border-radius: 2px;
}

.card-sobre-nos > p{
    padding: 0px 10px;
    text-align: justify;
}

#frase{
    max-width: 700px;
    margin: auto;
    text-align: center;
}

#frase h3{
    font-size: 0.9em;
    color: rgba(0, 0, 0, 0.589);
}

#frase h2{
    padding: 20px;
}

#frase p{
    padding: 0px 20px;
    font-size: 0.9em;
    text-shadow: 1px 4px 10px rgba(0, 0, 0, 0.151);
}

@media (max-width:600px){
    #frase h3{
        font-size: 0.8em;
    }
    #frase h2{
        padding: 20px;
        font-size: 1.4em;
        font-weight: bolder;
    }

    #frase p{
        padding: 0px 20px;
        font-size: 0.8em;
        text-shadow: 1px 4px 10px rgba(0, 0, 0, 0.151);
        
    }
    #container-sobre-nos{
        text-indent: 10px;
    }
    .card-sobre-nos h2{
        font-size: 1.6;
        font-weight: bolder;
    }



}
/*--------------------
        PACOTES
----------------------*/
#pacotes{
    padding-top: 60px;
    padding-bottom: 70px;
}

#container-card-packs{
    background: url('../assets/img/galeria/imagem-fundo-card-packs.jpg') center center no-repeat scroll;
    background-size: cover;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
    padding: 60px 10px;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width:700px){
    #container-card-packs {
        background: url('../assets/img/galeria/imagem-fundo-card-packsmedia.jpg') center center no-repeat scroll;
        background-size: cover;
    }
}

.card-packs{
    flex: 1 1 280px;
    max-width: 310px;
    min-height: 420px;
    border: 1px solid #E1C6BB;
    background-color: #FCFAF8;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.219);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.card-packs.card-packs-destaque {
    transform: scale(1.1); 
    box-shadow: 0 15px 40px rgba(89, 43, 17, 0.15); 
    z-index: 2; 
    border: 1px solid var(--cor0);
    background-color: #FFFFFF;
}

.card-packs:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0,0,0, 0.15);
}

.card-packs.card-packs-destaque:hover{
    transform: scale(1.12) translateY(-10px);
}

.card-packs h2{
    padding: 20px 10px 10px 10px;
    color: var(--cor2);
    text-align: center;
}

.card-packs > ul {
    list-style-type: none;
    padding: 20px 15px;
    margin: 0;
}

.card-packs > ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-family: var(--fonte-paragrafo);
    color: var(--cor1); 
    line-height: 1.4;
    font-size: 1em;
    list-style: none;
}

.card-packs.card-packs-destaque > ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-family: var(--fonte-paragrafo);
    color: var(--cor1); 
    line-height: 1.4;
    font-size: 0.9em;
    list-style: none;
}

.card-packs > ul li::before {
    content: '\2714';
    position: absolute;
    left: 0;
    color: var(--cor0);
    font-weight: bold;
    font-size: 1.1em;
}

@media (max-width: 768px){
    .card-packs.card-packs-destaque{
        margin: 10px 0;
        transform: scale(1.10) translateY(0px);
    }
    .card-packs.card-packs-destaque:hover{
        transform: scale(1.1) translateY(0px);
    }
    .card-packs:hover{
        transform: scale(1.0) translateY(0px);
    }

    #container-card-packs{
        gap: 30px;
        display: grid;
        flex-direction: column;
        align-items: center;
    }
}

/*--------------------
        EVENTOS
----------------------*/
#container-events{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 0px 60px;
}

.container-card-events{
    display: flex;
    flex-direction: column;
    flex: 1 1 300px;
    max-width: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.container-card-events > h2{
    padding-top: 20px;   
}

@media (max-width: 550px) {
    .container-card-events h2{
        font-weight: bolder;
    }
    #container-events{
        padding: 15px;
    }
}

.container-card-events > p{
    padding: 20px 0px 40px 0px;
    font-size: 1.01em;
}

.container-card-events > button {
    display: block;
    max-width: 250px;
    align-self: center;
    padding: 12px 25px;
    font-size: 0.95em;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-top: auto;
    cursor: pointer;
    background-color: transparent;
    color: var(--cor0);
    border: 1px solid var(--cor0);
}

@media (max-width: 750px){
    .container-card-events > button{
        font-size: 0.76em;
    }
}

#card-events1{
    background: url('../assets/img/eventos/imagem10.jpg') center center scroll;
    background-size: cover;
    max-width: 100%;
    height: 200px;
}

#card-events2{
    background: url('../assets/img/eventos/imagem32.jpg') center center no-repeat scroll;
    background-size: cover;
    max-width: 100%;
    height: 200px;
}

#card-events3{
    background: url('../assets/img/eventos/imagem23.jpg') center center no-repeat scroll;
    background-size: cover;
    max-width: 100%;
    height: 200px;
}

/*--------------------
        GALERIA
----------------------*/
#galeria{
    padding: 80px 0px;
}


#container-card-gallery{
    display: block;
    flex-direction: column;
    max-width: 100%;
    justify-self: center;
    gap: 10px;
    margin-bottom: 20px;
}

.card-gallery{
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 5px;
}

.card-gallery img{
    min-width: 300px;
    height: 280px;
    object-fit: cover;
    border-radius: 3px;
}

@media (max-width: 935px) {
    #container-card-gallery{
        display: inline-block;
        columns: 2;
        gap: 0px;
    }
    .card-gallery {
        flex-wrap: wrap;
        padding: 5px;
    }
    .card-gallery img{
        min-width: 100px;
        height: 300px;
    }
}

@media (max-width: 550px) {
    #container-card-gallery{
        display: inline-block;
        columns: 1;
    }
    .card-gallery{
        max-width: 100%;
        padding: 5px 0px;
    }
    .card-gallery img{
        width: 100%;
        height: 300px;
        border-radius: 0px;
    }
}

/*--------------------
        BLOG
----------------------*/
#container-card-blog{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: stretch;
    padding: 0px 0px 5px 0px;
    margin-bottom: 20px;
}

.carousel.slide{
    width: 50%;
    flex: 1 1 50%;
}

.carousel-inner img{
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
}

#ads .carousel-indicators [data-bs-target] {
    width: 9px !important;
    height: 9px !important;
    border-radius: 50% !important;
    margin: 0 6px;
}

#ads .carousel-control-prev,
#ads .carousel-control-next {
    opacity: 0 !important;
    visibility: hidden; 
    transition: all 0.4s ease !important;
}

#ads:hover .carousel-control-prev,
#ads:hover .carousel-control-next {
    opacity: 1 !important;
    visibility: visible;
}

@media (max-width: 902px) {
    .carousel.slide, #container-escrita-blog{
        width: 100%;
        flex: 1 1 100%;
        max-width: 100%;
    }

    #container-escrita-blog{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .carousel-inner img {
        height: 350px;
    }
     
    .card-blog{
        padding: 20px;
    }
}

@media (max-width: 480px) {
    #container-escrita-blog {
        grid-template-columns: 1fr;
    }
}

#container-escrita-blog{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    flex: 1 1 49%;
}

.card-blog{
    padding: 20px;
    display: flex;
    border: 1px solid rgba(95, 95, 95, 0.151);
    flex-direction: column;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    min-width: 0;
}

.card-blog > h2{
    font-size: 1.6em;
}

.card-blog > p{
    font-size: 0.8em;
}

/*--------------------
      SOBRE MIM
----------------------*/
#sobre-mim {
    background-color: #fefefe;
    padding: 60px 0px;
}

.container-sobre {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.perfil-foto{
    padding-top: 20px;
    text-align: center;
}

.perfil-foto img {
    width: 300px;
    height: 300px;
    margin: 40px 0px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--cor0);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.perfil-texto h2 {
    margin: 0 auto;
    max-width: 300px;
    font-size: 2.4em;
    color: var(--cor0);
    margin-bottom: 15px;
    margin-top: 80px;
}

.frase-efeito {
    font-style: italic;
    font-size: 1.2em;
    color: #555;
    margin: 25px 0px;
    padding: 20px 20px 60px 20px;
    text-align: center;
}

.perfil-texto p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
    font-size: 1.05em;
    margin-bottom: 80px;
}

@media (max-width: 480px) {
    .perfil-texto h2 {
        font-size: 2.4em;
        font-weight: bolder;
    }
    .perfil-foto img {
        width: 200px;
        height: 200px;
    }
    .frase-efeito p{
        font-size: 0.3em;
    }
}

/*--------------------
      EXPERIÊNCIA
----------------------*/
#experiencia{
    text-align: center;
    padding: 60px 20px;
    background: url('../assets/img/galeria/imagem28.jpg') center center no-repeat scroll;
    background-size: cover;
    margin-bottom: 20px;
    min-height: 600px;
}

#experiencia h1{
    max-width: 600px;
    justify-self: center;
    margin-bottom: 40px;
    font-size: 2.0em;
    color: white;
    background-image: none;
    margin-top: 100px;
}

#container-card-experiencia{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.card-experiencia{
    text-align: center;
    min-width: 200px;
    padding: 10px;
    margin-bottom: 50px;
    border-radius: 2px;
    background-color: rgba(0, 0, 0, 0.521);
    font-size: 1.2em;
    color: white;
    letter-spacing: 1px;
    margin-top: 10px;
}

.container-card-depoimentos {
  margin-bottom: 10%;
}

/*--------------------
     DEPOIMENTOS
----------------------*/
#depoimentos {
  padding: 60px 0;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  overflow: hidden;
}

#depoimentos h2 {
  font-size: 2.1em;
  color: #3b2a22;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: -0.5px;
  padding: 0 20px;
}

#depoimentos h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #C9906C;
  margin: 14px auto 0;
  border-radius: 2px;
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 8px;
}

.carousel-track-outer {
  overflow: hidden;
  flex: 1;
}

.carousel-track {
  display: flex;
  gap: 20px;
}

.card-depoimento {
  flex: 0 0 calc((100% - 40px) / 3);
  background-color: var(--cor0);
  border-radius: 18px;
  padding: 32px 28px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 540px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.card-depoimento:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.card-depoimento::before {
  content: '\201C';
  font-size: 5em;
  color: #ffffff;
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
  font-family: serif;
}

.card-depoimento p {
  display: -webkit-box;
  -webkit-line-clamp: 20;
  -webkit-box-orient: vertical;
  line-clamp: 20;
  overflow: hidden;
  font-size: 0.9em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin-top: 40px;
  font-weight: 300;
  z-index: 1;
}

.card-depoimento h4 {
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  font-size: 0.8em;
  color: #ffffff;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.carousel-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #C9906C;
  background: #faf6f3;
  color: #C9906C;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, color 0.25s, transform 0.2s;
  box-shadow: 0 2px 10px rgba(59, 42, 34, 0.1);
}

.carousel-btn:hover:not(:disabled) {
  transform: scale(1.08);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d4b5a8;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}

.dot.active {
  background: #C9906C;
  transform: scale(1.3);
}

@media (max-width: 1100px) {
  #depoimentos {
    padding: 40px 0;
  }

  #depoimentos h2 {
    font-size: 2em;
    margin-bottom: 36px;
  }

  .carousel-track-outer {
    --visible: 2;
  }

  .card-depoimento {
    flex: 0 0 calc((100% - 20px) / 2);
    min-height: 480px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.1em;
  }
}


@media (max-width: 750px) {
  #depoimentos {
    padding: 28px 0;
  }

  #depoimentos h2 {
    font-size: 1.5em;
    margin-bottom: 24px;
  }

  .carousel-wrapper {
    gap: 6px;
  }

  .carousel-track-outer {
    --visible: 1;
  }

  .card-depoimento {
    flex: 0 0 100%;
    min-height: 420px;
    padding: 26px 20px 20px;
  }

  .carousel-btn {
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
  }
}

/*--------------------
        FOOTER
----------------------*/
.footer-principal {
    background-color: #ffffff;
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: #555;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.footer-brand {
    text-align: left;
    max-width: 300px;
}

.logo-footer {
    height: 70px;
    margin-bottom: 15px;
}

.footer-frase {
    font-style: italic;
    font-size: 1.1em;
}

.footer-contact-info {
    text-align: right;
}

.footer-contact-info h3 {
    color: var(--cor0);
    font-size: 1.2em;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-contact-info p {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-contact-info i {
    color: var(--cor0);
    width: 20px;
    text-align: center;
}

.footer-contact-info a {
    text-decoration: none;
    color: inherit;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85em;
}

.termos-links {
    margin-top: 5px;
}

.termos-links a {
    text-decoration: none;
    color: inherit;
}

.termos-links span {
    margin: 0 8px;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .footer-brand, .footer-contact-info {
        text-align: center;
    }
}

/*--------------------
        MODAL
----------------------*/
.btn-abrir-modal {
    display: block;
    max-width: 250px;
    margin: 30px auto 0;
    padding: 12px 25px;
    font-size: 0.95em;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    background-color: transparent;
    color: var(--cor0);
    border: 1px solid var(--cor0);
    cursor: pointer;
}

@media (max-width: 750px){
    .btn-abrir-modal{
        font-size: 0.76em;
    }
}


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    z-index: 1000;
    
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.ativo {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background-color: #ffffff;
    width: 90%;
    max-width: 420px;
    padding: 35px;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
    
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.ativo .modal-box {
    transform: translateY(0);
}

.modal-box h3 {
    color: var(--cor0);
    font-size: 1.5em;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.modal-box input, 
.modal-box textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 12px;
    border: 1.5px solid #f0f0f0;
    border-radius: 12px;
    background-color: #fafafa;
    font-family: inherit;
    font-size: 0.95em;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.modal-box input:focus, 
.modal-box textarea:focus {
    border-color: var(--cor0);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(225, 198, 187, 0.15);
}

.modal-box textarea {
    height: 100px;
    resize: none;
    margin-bottom: 20px;
}

.modal-box button[type="submit"] {
    width: 100%;
    padding: 16px;
    background-color: var(--cor0);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1em;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-box button[type="submit"]:hover {
    filter: brightness(1.05);
    box-shadow: 0 8px 20px rgba(225, 198, 187, 0.4);
    transform: translateY(-1px);
}

.modal-fechar {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f5f5f5;
    border: none;
    width: 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 50%;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-fechar:hover {
    background-color: #eee;
    color: var(--cor0);
    transform: rotate(90deg);
}

@media (max-width: 480px) {
    .modal-box {
        padding: 30px 20px;
    }
    .modal-box h3 {
        font-size: 1.3em;
    }
}