@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
/*Calculadora*/
.calculadora {
max-width: 900px;
margin: 0 auto;
background: #fff;
border-radius: 20px;
padding: 40px;
box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.cabecalho {
text-align: center;
margin-bottom: 35px;
}
.cabecalho .tag {
display: inline-block;
font-size: 12px;
font-weight: bold;
letter-spacing: 1.5px;
text-transform: uppercase;
color: #9a7540;
margin-bottom: 12px;
}
.cabecalho h2 {
font-size: 32px;
margin-bottom: 10px;
color: #1d1d1b;
}
.cabecalho p {
color: #666;
font-size: 16px;
line-height: 1.6;
}
.campo {
margin-bottom: 30px;
}
.campo label {
display: block;
font-size: 15px;
font-weight: bold;
margin-bottom: 12px;
color: #333;
}
.modelos {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 15px;
}
.modelo {
position: relative;
}
.modelo input {
position: absolute;
opacity: 0;
}
.modelo label {
display: block;
border: 2px solid #ddd;
border-radius: 12px;
padding: 18px;
cursor: pointer;
text-align: center;
transition: all 0.25s ease;
margin: 0;
font-weight: bold;
}
.modelo input:checked + label {
border-color: #9a7540;
background: #faf7f1;
color: #8a6535;
}
.slider-area {
background: #fafafa;
border-radius: 15px;
padding: 25px;
}
.quantidade {
text-align: center;
font-size: 42px;
font-weight: bold;
color: #9a7540;
margin-bottom: 20px;
}
.quantidade span {
font-size: 17px;
color: #777;
font-weight: normal;
}
input[type="range"] {
width: 100%;
height: 7px;
appearance: none;
-webkit-appearance: none;
background: #ddd;
border-radius: 10px;
outline: none;
}
input[type="range"]::-webkit-slider-thumb {
appearance: none;
-webkit-appearance: none;
width: 24px;
height: 24px;
border-radius: 50%;
background: #9a7540;
cursor: pointer;
border: 4px solid #fff;
box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
input[type="range"]::-moz-range-thumb {
width: 24px;
height: 24px;
border-radius: 50%;
background: #9a7540;
cursor: pointer;
border: 4px solid #fff;
}
.limites {
display: flex;
justify-content: space-between;
font-size: 12px;
color: #888;
margin-top: 10px;
}
.resultados {
margin-top: 35px;
}
.resultados h3 {
text-align: center;
margin-bottom: 20px;
font-size: 21px;
}
.cards {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 15px;
}
.card {
padding: 25px 20px;
border-radius: 14px;
background: #f7f7f5;
text-align: center;
border: 1px solid #eee;
}
.card.destaque {
background: #9a7540;
color: #fff;
border-color: #9a7540;
}
.card .titulo {
display: block;
font-size: 13px;
margin-bottom: 10px;
color: #777;
}
.card.destaque .titulo {
color: rgba(255,255,255,0.85);
}
.card .valor {
font-size: 25px;
font-weight: bold;
}
.roi {
margin-top: 20px;
text-align: center;
padding: 25px;
border-radius: 14px;
background: #f1eee8;
}
.roi small {
display: block;
color: #777;
margin-bottom: 6px;
}
.roi strong {
font-size: 38px;
color: #9a7540;
}
.observacao {
margin-top: 20px;
text-align: center;
font-size: 12px;
color: #888;
line-height: 1.5;
}
@media (max-width: 640px) {
.calculadora {
padding: 25px 18px;
}
.cabecalho h2 {
font-size: 26px;
}
.modelos,
.cards {
grid-template-columns: 1fr;
}
.quantidade {
font-size: 36px;
}
}
/*///Calculadora*/

/*Formulario contato*/
form {
  margin: 0 auto;
  text-align: center;
  width: 400px;
  border-radius: 1em;
  width: 100%;
}
form div + div {
  margin-top: 1em;
  max-width: 100%;
}
input::placeholder {
  color: #ccc; 
}
textarea::placeholder {
  color: #ccc;
}
input, textarea {
  font: 1em sans-serif;
  width: 100%;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  resize: none;
  border: 1px solid #d6dee4;
  margin-top: 15px;
  padding: 10px;
  font-size: 14px!important;
}
input:focus,
textarea:focus {
  border-color: none!important;
  border: 1px solid #ccc!important;
   width: 100%;
    padding: 10px;
    margin-top: 15px;
}
.formulario input{
  padding: 10px;
  width: 100%;
  margin-top: 15px;
}
.formulario select{
  padding: 10px;
  width: 100%;
  margin-top: 15px;
  font-size: 15px!important;
  background: none;
  border: 1px solid #d6dee4;
  color: #999;
  padding: 5px 10px;
  margin-top: 15px;
  outline: none;
  height: 45px;
  appearance: none;
  -webkit-appearance: none;
}
.formulario select + option{
  color: #ccc!important;
}
.formulario textarea{
  padding: 10px;
  width: 100%;
  height: 120px;
  margin-top: 15px;
  resize: none!important;
}
.formulario button{
  padding: 10px;
  width: 40%;
  margin-top: 15px;
  background: #4F6F5E;
  color: #fff;
  border-radius: 25px;
}
.formulario button:hover{
  padding: 10px;
  width: 40%;
  margin-top: 15px;
  background: #0A1D37;
  color: #fff;
}
/* //Formulario contato*/
/*whatsapp flutuante pulse */
  .whatsapp-button {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 22px;
    right: 22px;
    background: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 38px;
    box-shadow: 1px 1px 2px #888;
    z-index: 1000;
   animation: pulse 1.2s infinite;
}
  .whatsapp-button:hover {
    color: #fff;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.9); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
/*//whatsapp flutuante pulse */

/*Brilho hover na imagem */
.cursor-box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    top: -100%;
    left: -100%;
    transition: all 0.5s ease;
}
.cursor-box:hover::before {
    top: 100%;
    left: 100%;
}
.help:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 5px 15px #00bcd450;
}
.cursor-box img {
  border-radius: 10px!important;
}
/*//Brilho hover na imagem */

.menu-lista ul{
margin: 0 0 0 -10px;
padding: 0;
display: inline-block;
display: inline-flex;
}
.menu-lista li{
list-style-type: none;
display: inline;
display: inline-flex;
font-size: 12px;
padding: 7px;
text-align: center;
}
.menu-lista li a{
background: #0A1D37;
color: #fff;
padding: 5px 20px 5px 20px;
border-radius: 40px;
text-decoration: none!important;
}
.menu-lista li a:hover{
  text-decoration: none!important;
  background: #7C9C8C!important;
}
.faixinha{
	background: #0A1D37!important;
	color: #fff!important;
	line-height: 8px;
	padding: 5px 0 0 20px;
	border-radius: 15px;
}
.bgteste{
	background: #ccc;
}
.fontsize9em{
  font-size:0.9rem!important;
  line-height: 1.5rem;
}
.titulo-sustenta{
font-family: Times New Roman, sans-serif!important;
font-weight: 500;
letter-spacing: .3px;
}
.cinza{
  color: rgb(31 36 33 / 0.7)!important;
}
.logo img{
max-width: 155px!important;
height: auto;
margin-top: 15px;
margin-bottom: 15px;
border-bottom: none!important;
}
.margintop15{
	margin-top: 15px;
}
.margintop30{
	margin-top: 30px;
}
.margintop50{
	margin-top: 50px!important;
}
.margintop100{
	margin-top: 100px!important;
}
.margintop-20{
  margin-top: -20px!important;
}
.margintop-30{
  margin-top: -30px!important;
}
.margintop-50{
	margin-top: -50px!important;
}
.margintop-100{
	margin-top: -100px!important;
}
.marginbottom10{
  margin-bottom: 10px!important;
}
.marginbottom20{
  margin-bottom: 20px!important;
}
.marginbottom30{
  margin-bottom: 30px!important;
}
.marginbottom50{
  margin-bottom: 50px!important;
}
.marginbottom100{
  margin-bottom: 100px!important;
}
.marginbottom150{
  margin-bottom: 150px!important;
}
.marginbottom200{
  margin-bottom: 200px!important;
}
.white{
	color: #fff!important;
}
.container{
  max-width: 1140px!important;
  width: 100%!important;
  height: auto!important;
}
.verde{
   color: #d1eee0!important;
}
.oliva{
  color: #76a58e!important;
}
.bg-title{
	background:#d1eee0!important;
	padding: 7px;
	border: 1px solid #aacfbd;
	border-radius: 10px;
}
.fontsize-h3 h3{
  font-family: "Playfair Display", serif!important;
  font-size: 2em;
  font-weight: bold;
  letter-spacing: 1px;
  color: #76a58e;
}
.title-h1{
color: #7C9C8C;
}
.title-h3{
color: #7C9C8C;
}
.title-missao h3{
  font-size: 22px!important;
}
.border-top{
	border-top: 1px solid #ccc;
}
.botao-topo{
	background:#0A1D37!important;
	color: #fff!important;
	padding: 0px 20px 0px 20px!important;
	border-radius: 30px!important;
}
.botao-topo:hover{
	background:#7C9C8C!important;
	color: #fff!important;
	padding: 0px 20px 0px 20px!important;
}
.botao-home{
	background:#0A1D37!important;
	color: #fff!important;
	padding: 0px 20px 0px 20px!important;
	border-radius: 30px!important;
}
.botao-home:hover{
	background:#7C9C8C!important;
	color: #fff!important;
	padding: 0px 20px 0px 20px!important;
}
.marginleft-botao{
	margin-left: 60px!important;
}
.shadow-premium {
  --tw-shadow: 0 20px 40px -15px rgba(10, 29, 55, 0.05);
  --tw-shadow-colored: 0 20px 40px -15px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
@media (min-width: 780px){
		.botao-topo{
		background:#0A1D37!important;
		color: #fff!important;
		padding: 0px 20px 0px 20px!important;
		border-radius: 20px!important;
		display: visible;
	}
	.botao-topo:hover{
		background:#7C9C8C!important;
	}
}
@media (max-width: 780px){
		.botao-topo{
		display: none!important;
	}
}


