/* Importa CarlaSansRegular (TrueType) */
@font-face {
    font-family: 'CarlaSans';
    src: url('/fonts/CarlaSansRegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Importa Semplicita Medium (OpenType) */
@font-face {
    font-family: 'Semplicita';
    src: url('/fonts/Semplicita-Medium.otf') format('opentype');
    font-weight: 500; /* Medium é geralmente peso 500 */
    font-style: normal;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    background-color: #132323;
    color: #eee;
    font-family: 'Semplicita';
    font-size: 16px;
    overflow-x: hidden; /* Previne a rolagem horizontal */
}

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}



.bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url(imagens/ÍCONE-OFICIAL-TEXTURIZADO.png);
    background-size: 50px 50px;
    background-repeat: repeat;
    background-position: 0 0;
    filter: brightness(0.7) blur(2px);
}

/* Centraliza o loader */
.loader {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
    position: relative;
}

/* Estilo do logo */
.loader .logo {
    width: 50%;
    text-align: center;
    margin: 10% 0;
}

.loader .logoLoader {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 100px;
}

/* Barra de carregamento dentro do loader */
.barra {
    width: 100%;
    height: 10px;
    background-color: #000000;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

/* Animação da barra de carregamento */
.barra::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0; /* Começa da esquerda */
    width: 100%; /* A largura da barra será 100% */
    height: 100%;
    background-color: #D8AB81; /* Cor da barra de carregamento */
    animation: carregar 1.2s forwards; /* 'forwards' mantém o estilo final após a animação */
}

/* Animação de carregar a barra */
@keyframes carregar {
    0% {
        width: 0%; /* Começa com 0% de largura */
    }
    100% {
        width: 100%; /* Vai até 100% de largura */
    }
}

.content-website{
    display: none;
}

@media (max-width: 768px){
    .loader{
        width: 100%;
        margin: 50% auto;
    }

    .logo .logoLoader{
        margin-bottom: 20px;
    }
}





/* Estilos Gerais do Header */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    margin: auto;
    height: 50px;
    position: relative;
    z-index: 100;
    background-color: transparent;
}


header .logo {
    flex: 1;
    display: flex;
    justify-content: left;
    align-items: center;
    margin-left: 10%;
}

header .logo img {
    width: 150px;
    height: auto;
}

/* Responsividade - Mostrar Hambúrguer Menu */
@media (max-width: 768px) {
    header .logo{
        margin-top: 30px;
    }
}

/* carousel */

.carousel{
    height: 100vh;
    margin-top: -50px;
    overflow: hidden;
    position: relative;
}
.carousel .list .item{
    position: absolute;
    inset: 0 0 0 0;
    overflow: hidden;
}
.carousel .list .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7); /* Ajusta o brilho X % */
}
.carousel .list .item .content{
    position: absolute;
    top: 13%;
    width: 1140px;
    max-width: 80%;
    height: auto;
    left: 50%;
    transform: translateX(-50%);
    padding-right: 450px;
    box-sizing: border-box;
    color: #fff;
    text-shadow: 0 5px 10px #0004;
}
.carousel .list .item .title,
.carousel .list .item .topic{
    font-size: 60px;
    line-height: 1.3em;
}
.carousel .list .item .topic{
    font-size: 100px;
    color: #D8AB81;
}

.carousel .list .item .des{
    padding-right: 10%;
}

.carousel .list .item .buttons{
    display: grid;
    grid-template-columns: repeat(2, 130px);
    grid-template-rows: 40px;
    gap: 5px;
    margin-top: 20px;
}

.carousel .list .item .buttons a button{
    border: none;
    background-color: #D8AB81;
    border-radius: 20px;
    letter-spacing: 3px;
    font-family: 'Semplicita';
    font-weight: 500;
    cursor: pointer;
    padding: 10px 20px; /* Ajuste o padding conforme necessário */
}

.carousel .list .item .buttons a button:nth-child(2){
    background-color: transparent;
    border: 1px solid #fff;
    color: #eee;
}
/* thumbail */
.thumbnail{
    position: absolute;
    bottom: 25px;
    left: 60%;
    width: max-content;
    z-index: 100;
    display: flex;
    gap: 10px;
}
.thumbnail .item{
    width: 150px;
    height: 220px;
    flex-shrink: 0;
    position: relative;
}
.thumbnail .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    filter: brightness(0.7); /* Ajusta o brilho para 50% */
}
.thumbnail .item .content{
    color: #fff;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
}
.thumbnail .item .content .title{
    font-weight: 500;
}
.thumbnail .item .content .description{
    font-weight: 300;
}
/* arrows */
.arrows{
    position: absolute;
    top: 80%;
    right: 52%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}
.arrows button{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #eee4;
    border: none;
    color: #fff;
    cursor: pointer;
    font-family: monospace;
    font-weight: bold;
    transition: .5s;
}
.arrows button:hover{
    background-color: #fff;
    color: #000;
}

/* animation */
.carousel .list .item:nth-child(1){
    z-index: 1;
}

/* animation text in first item */

.carousel .list .item:nth-child(1) .content .author,
.carousel .list .item:nth-child(1) .content .title,
.carousel .list .item:nth-child(1) .content .topic,
.carousel .list .item:nth-child(1) .content .des,
.carousel .list .item:nth-child(1) .content .buttons
{
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s 1s linear 1 forwards;
}
@keyframes showContent{
    to{
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
    }
}
.carousel .list .item:nth-child(1) .content .title{
    animation-delay: 1.2s!important;
}
.carousel .list .item:nth-child(1) .content .topic{
    animation-delay: 1.4s!important;
}
.carousel .list .item:nth-child(1) .content .des{
    animation-delay: 1.6s!important;
}
.carousel .list .item:nth-child(1) .content .buttons{
    animation-delay: 1.8s!important;
}
/* create animation when next click */
.carousel.next .list .item:nth-child(1) img{
    width: 150px;
    height: 220px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    border-radius: 30px;
    animation: showImage .5s linear 1 forwards;
}
@keyframes showImage{
    to{
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

.carousel.next .thumbnail .item:nth-last-child(1){
    overflow: hidden;
    animation: showThumbnail .5s linear 1 forwards;
}
.carousel.prev .list .item img{
    z-index: 100;
}
@keyframes showThumbnail{
    from{
        width: 0;
        opacity: 0;
    }
}
.carousel.next .thumbnail{
    animation: effectNext .5s linear 1 forwards;
}

@keyframes effectNext{
    from{
        transform: translateX(150px);
    }
}

/* running time */

.carousel .time{
    position: absolute;
    z-index: 1000;
    width: 0%;
    height: 3px;
    background-color: #f1683a;
    left: 0;
    top: 0;
}

.carousel.next .time,
.carousel.prev .time{
    animation: runningTime 3s linear 1 forwards;
}
@keyframes runningTime{
    from{ width: 100%}
    to{width: 0}
}


/* prev click */

.carousel.prev .list .item:nth-child(2){
    z-index: 2;
}

.carousel.prev .list .item:nth-child(2) img{
    animation: outFrame 0.5s linear 1 forwards;
    position: absolute;
    bottom: 0;
    left: 0;
}
@keyframes outFrame{
    to{
        width: 150px;
        height: 220px;
        bottom: 50px;
        left: 50%;
        border-radius: 20px;
    }
}

.carousel.prev .thumbnail .item:nth-child(1){
    overflow: hidden;
    opacity: 0;
    animation: showThumbnail .5s linear 1 forwards;
}
.carousel.next .arrows button,
.carousel.prev .arrows button{
    pointer-events: none;
}

.carousel.prev .list .item:nth-child(2) .content .title,
.carousel.prev .list .item:nth-child(2) .content .topic,
.carousel.prev .list .item:nth-child(2) .content .des,
.carousel.prev .list .item:nth-child(2) .content .buttons
{
    animation: contentOut 1.5s linear 1 forwards!important;
}

@keyframes contentOut{
    to{
        transform: translateY(-150px);
        filter: blur(20px);
        opacity: 0;
    }
}

@media screen and ( max-width: 678px){
    .carousel .list .item .content{
        padding-right: 0px;
    }

    .carousel .list .item .content .des{
        padding-right: 0px;
        margin-top: 50px;
        margin-bottom: 50px;
        font-size: 16px;
    }

    .carousel .list .item .content .title{
        font-size: 40px;
    }

    .carousel .list .item .content .topic{
        font-size: 60px;
    }

    .thumbnail{
        display: none;
    }
}



/*GALERIA*/




.wrapper {
    width: 100%;
    height: auto;
    display: none;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #132323 50%, #233C3D 100%); /* Gradiente aplicado */
}

.container-wrapper {
    width: 920px;
    height: auto;
    margin-bottom: 50px;
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
}

.card {
    width: 80px;
    height: 400px;
    border-radius: .75rem;
    background-size: cover;
    cursor: pointer;
    overflow: hidden;
    border-radius: 2rem;
    margin: 0 10px;
    display: flex;
    align-items: flex-end;
    transition: .6s cubic-bezier(.28,-0.03,0,.99);
    box-shadow: 0px 10px 30px -5px rgba(0,0,0,0.8);
}

.card > .row {
    color: white;
    display: flex;
    flex-wrap: nowrap;
    text-shadow: 0 5px 10px #0004;
}

.card > .row > .icon {
    background: #132323;
    color: #D8AB81;
    border-radius: 50%;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px;
}

.card > .row > .description {
    display: flex;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    height: 80px;
    width: 520px;
    opacity: 0;
    transform: translateY(30px);
    transition-delay: .3s;
    transition: all .3s ease;
}

.description p {
    color: #ffffff;
    padding-top: 5px;
}

.description h4 {
    text-transform: uppercase;
}

.container-wrapper input {
    display: none;
}

input:checked + label {
    width: 600px;
}

input:checked + label .description {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.card[for="c1"] {
    background-image: url(imagens/galeria-slide/galeria1.png)
}
.card[for="c2"] {
    background-image: url(imagens/galeria-slide/galeria2.png);
}
.card[for="c3"] {
    background-image: url(imagens/galeria-slide/galeria3.png);
}
.card[for="c4"] {
    background-image: url(imagens/galeria-slide/galeria4.png );
}

@media (max-width: 768px){
    .container-wrapper{
        width: 90%;
    }
}





/*PLANTAS*/




.plantas {
    background: linear-gradient(to bottom, #132323 25%, #233C3D 100%);
    color: #D8AB81;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 50px auto;
}

.plantas h1 {
    font-size: 100px;
    margin-bottom: 50px;
}

/* Estilo de cada planta */
.planta {
    margin-bottom: 50px;
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden; /* Garante que o zoom fique contido no contêiner */
}

.planta h2 {
    font-size: 60px;
    margin: 50px 50px;
    text-align: left;
}

.planta img {
    max-width: 730px;
    height: auto;
    display: block;
    margin: 30px auto;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform 0.5s ease;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgb(255, 255, 255); /* Sombra intensa para dar destaque */
}

/* Overlay para exibir a imagem ampliada */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.overlay img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 20px #fff;
}

.overlay.active {
    display: flex;
}

@media (max-width: 768px){
    .plantas h1 {
        font-size: 60px;
    }

    .plantas h2{
        font-size: 30px;
    }

    .planta img{
        max-width: 80%;
        height: auto;
    }
}



/*CONTATO*/




.contato h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
    font-size: 60px;
    color: #D8AB81 ;
}

.contato h3{
    color: #D8AB81;
    font-size: 30px;
}

.container {
    width: 100%;
    height: auto;
    margin: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 1120px;
    height: 625px;
    padding: 20px;
    background-image: url(imagens/ÍCONE-OFICIAL-TEXTURIZADO.png);
    background-size: cover; 
    background-position: center; 
    border-radius: 15px; 
}


.contact-right {
    flex-basis: 60%;
    padding: 40px 60px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    border-radius: 10px;
    display: flex;
    align-items: center;
}

.contact-right form {
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-right form input {
    width: 200px;
    height: 50px;
    padding-left: 10px;
    outline: none;
    border: none;
    font-size: 20px;
    margin-bottom: 10px;
    background: none;
    border-bottom: 2px solid white;
    color: white;
}

.contact-right form input::placeholder {
    color: white;
}

.contact-right form #segundoNome,
.contact-right form #telefone {
    margin-left: 20px;
}

.contact-right form h4 {
    color: white;
    font-weight: 300;
    font-size: 20px;
    width: 100%;
    margin-top: 20px;
}

.contact-right form textarea {
    background: none;
    border: none;
    border-bottom: 2px solid white;
    color: white;
    font-weight: 200;
    font-size: 20px;
    padding: 10px;
    outline: none;
    min-height: 90px;
    max-height: 90px;
    min-width: 100%;
    max-width: 100%;
}

.contact-right form #button {
    border: none;
    background: white;
    border-radius: 10px;
    margin-top: 20px;
    font-weight: 600;
    font-size: 20px;
    color: black;
    height: 60px;
    width: 200px;
    padding: 0;
    margin-bottom: 30px;
    transition: 0.3;
}

.contact-right form #button:hover {
    background: black;
    color: white;
    transition: 0.5s ease-in-out;
}

.contact-left {
    flex-basis: 40%;
    height: 580px;
    padding: 40px;
    background-color: rgba(19, 35, 35, 0.8);
    color: #fff; 
    border-radius: 10px;
    position: relative; /* Necessário para posicionar os pseudo-elementos */
    overflow: hidden;
}

/* Elipse inferior direita */
.contact-left::before {
    content: ''; /* Pseudo-elemento para a elipse */
    position: absolute;
    bottom: -90px; /* Posição vertical */
    right: -90px; /* Posição horizontal */
    width: 250px; /* Largura da elipse */
    height: 250px; /* Altura da elipse */
    background-color: rgba(35, 60, 61, 0.8); /* Cor com transparência */
    border-radius: 50%; /* Faz a elipse ser redonda */
    z-index: 0; /* Fica atrás do conteúdo */
}

/* Elipse superior esquerda */
.contact-left::after {
    content: ''; /* Pseudo-elemento para a elipse */
    position: absolute;
    bottom: 40px; /* Posição vertical */
    right: 40px; /* Posição horizontal */
    width: 170px; /* Largura da elipse */
    height: 170px; /* Altura da elipse */
    background-color: rgba(216, 171, 129, 0.8); /* Cor com transparência */
    border-radius: 50%; /* Faz a elipse ser redonda */
    z-index: 0; /* Fica atrás do conteúdo */
}

.contact-left h3 {
    font-size: 22px;
    margin-bottom: 100px;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
}

.contact-info li i {
    margin-right: 10px;
    font-size: 22px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons i {
    cursor: pointer;
}

.input-row {
    display: flex;
    justify-content: space-between; 
    width: 100%;
    margin-bottom: 20px;
}

.input-row input {
    width: calc(50% - 10px); 
}

.contact-right form h4,
.contact-right form textarea {
    width: 100%;
}

@media (max-width: 768px) {
    .contato h2{
        margin: 50px 50px;
        justify-content: center;
        font-size: 30px;
    }
    .contact-box {
        flex-direction: column; /* Empilha os itens */
    }

    .contact-left {
        display: none;
    }
    .contact-right {
        width: 100%; /* Ocupa toda a largura */
        padding: 20px; /* Ajustar padding para caber corretamente */
        box-sizing: border-box; /* Inclui padding na largura total */
    }

    .contact-right .input-row{
        width: 100%;
        flex-direction: column;
    }

    .contact-right .input-row #segundoNome,
    .contact-right .input-row #telefone{
        margin: 0;
    }

    .contact-right form input{
        margin-bottom: 30px;
        width: 100%;
    }
}









footer {
    background-color: #1d1b27; /* Fundo escuro elegante */
    color: #fff; /* Texto branco */
    font-family: 'Arial', sans-serif;
    padding: 40px 20px;
}

.container-footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left, .footer-right {
    flex: 1;
    margin: 10px;
    min-width: 250px;
}

/* Conteúdo à esquerda */
.footer-left .content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #D8AB81; /* Destaque em laranja */
}

.footer-left .content p {
    line-height: 1.6;
    font-size: 16px;
    color: #ccc; /* Cinza suave */
}

.footer-left .social-icons-footer {
    margin-top: 20px;
}

.footer-left .social-icons-footer li {
    list-style-type: none;
    display: flex;
    gap: 20px;
}

.footer-left .social-icons-footer i {
    font-size: 20px;
    color: #D8AB81;
    transition: color 0.3s ease;
    cursor: pointer;
}

.footer-left .social-icons-footer i:hover {
    color: #fff;
}

/* Conteúdo à direita */

.footer-right .content{
    display: none;
}

.footer-right .content h4 {
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    border-bottom: 2px solid #D8AB81;
    display: inline-block;
    padding-bottom: 5px;
    color: #D8AB81;
}

.footer-right .content ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-right .content ul li {
    margin: 10px 0;
    font-size: 14px;
    cursor: pointer;
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-right .content ul li:hover {
    color: #ff9800;
}

.footer-right .content ul li::before {
    content: '>';
    margin-right: 8px;
    color: #D8AB81;
}

/* Rodapé inferior */
.rodape-footer {
    border-top: 1px solid #333;
    margin-top: 20px;
    padding-top: 20px;
    text-align: center;
}

.rodape-footer .logo img {
    max-width: 150px;
    margin-bottom: 10px;
}

.rodape-footer p {
    font-size: 14px;
    color: #ccc;
}

.rodape-footer span {
    color: #ff9800;
}