/*
* Estilos para o Site Panorama Paralelo
* 
*/

/* ==============================================
   RESET E ESTILOS BASE
   ============================================== */
body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
}

/* ==============================================
     TIPOGRAFIA
     ============================================== */
body,
h1,
h2,
h3,
h4,
h5,
h6,
a,
button,
input,
textarea,
span .geoform-text {
    font-family: 'Geoform', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 300;
}

p {
    font-family: 'Geoform', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 300;
}

label {
    font-family: 'Geoform', sans-serif;
    font-weight: 400;
}

.font-geo-thin {
    font-weight: 100 !important;
}

.font-geo-light {
    font-weight: 300 !important;
}

.font-geo-regular {
    font-weight: 400 !important;
}

.font-geo-bold {
    font-weight: 700 !important;
}

.font-geo-extrabold {
    font-weight: 800 !important;
}

.font-geo-black {
    font-weight: 900 !important;
}

a{
    color: #000;
}

/* ==============================================
     HEADER PRINCIPAL
     ============================================== */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    padding: 10px 0;
}

.topo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 65px 0 15px 0;
}

.logo {
	display: flex;
	justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin: auto;
}

.site-logo {
    max-height: 130px; 
    width: auto;
    display: block;
}

/* ==============================================
     MENU DE NAVEGAÇÃO
     ============================================== */
.navegacao {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.menu-icon {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 20px;
    z-index: 1000;
}

.menu-icon .bar {
    width: 100%;
    height: 3px;
    background-color: #444;
    transition: all 0.3s ease;
}

.menu-icon.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-icon.active .bar:nth-child(2) {
    transform: rotate(-45deg) translate(5px, -5px);
}

#menu {
    position: fixed;
    top: 0;
    left: -550px;
    width: 350px;
    height: 100vh;
    background-color: black;
    transition: left 0.3s ease;
    z-index: 999;
}

#menu.active {
    left: 0;
}

#menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 100px;
}

#menu ul li {
    padding: 15px;
    text-align: center;
}

#menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 36px;
    text-transform: uppercase;
}

#menu ul li a:hover {
    color: antiquewhite;
}

/* ==============================================
     CARDS DA HOME (VERSÃO FINAL)
     ============================================== */
.conteudo-geral {
    margin-top: 280px!important;
}

.full-width-cards {
    width: 100%;
}

.full-width-card {
    width: 100%;
    height: 130px;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
    transition: height 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.card-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease-out;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    transition: all 0.6s ease;
}

.card-title {
    color: white;
    font-size: 3.4rem;
    text-transform: uppercase;
    text-align: center;
    margin: auto;
    font-weight: 200;
    width: 100%;
    transition: transform 0s; /* Sem transição inicial */
    transform: translateX(0); /* Centralizado inicialmente */
    will-change: transform; /* Otimização de performance */
}

.card-content {
    display: none;
    color: #000;
    padding: 10px 20px;
    width: 100%;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.5s cubic-bezier(0.1, 0.9, 0.2, 1) 0.3s;
}

/* Estado ativo - quando clicado */
.full-width-card.active {
    height: auto;
    min-height: 130px;
}

.full-width-card.active .card-overlay {
    background-color: #fff !important;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 25px 25px;
    height: auto;
}

.full-width-card.active .card-title {
    color: #000 !important;
    transform: translateX(20px); /* Desliza para esquerda apenas no click */
    transition: transform 0.7s cubic-bezier(0.12, 0, 0.39, 0); 
    text-align: left;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.full-width-card.active .card-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Efeito hover sutil */

.full-width-card:hover .card-overlay {
	background-color: rgba(0, 0, 0, 0.9);
}

.card-link:hover .card-image {
    transform: scale(1.03);
}


/* ==============================================
     RODAPÉ
     ============================================== */
/* Estrutura principal do rodapé */

.site-footer{
    margin-top: 1rem!important;
}

.site-footer {
    /*background-color: #1a1a1a;*/
    background-color: #fff;
    color: #000000;
    padding: 3rem 0 1rem;
    font-size: 0.9rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.conteudo-footer{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	flex-direction: column;
}

.footer-heading{
	text-align: center;
	font-weight: 500;
}

/* Redes Sociais */
.icone{
	padding: 5px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333333;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: #ff0000;
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.instagram:hover svg{
    fill: #ff0000;
}

.whatsapp:hover svg{
    fill: #ff0000;
}
.e-mail{
    text-align: center;
}

.e-mail a{
    color: #000;
    text-decoration: none;
    font-size: 1rem;
}

.e-mail:hover a{
    color:#ff0000;;
}

.footer-bottom{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 50px;
}
.footer-copyright{
    align-content: center;
}
.footer-copyright p{
    font-size: 0.8rem;
}

.credito-dev{
    display: flex;
    justify-content: center;
    font-size: 10px;
    font-weight: 500;
}
/* media queries telas pequenas */

@media ( max-width: 1140px ) {
    .card-title {
        font-size: 3rem;
    }
}

@media ( max-width: 768px ) {
	.site-logo {
	    max-height: 100px; 
	}

    .card-title {
        font-size: 2.8rem;
    }

    .full-width-card {
        transition: height 0.3s ease;
        overflow: hidden;
        height: 130px; /* Altura padrão quando fechado */
    }

    .full-width-card.active {
        height: auto;
    }

.card-overlay {
    padding: 20px; /* Ajuste conforme necessário */
}

    .full-width-card.active {
        height: auto;
    }
    
    .full-width-card.active .card-title {
        font-size: 3rem !important;
        transform: translateX(12px);
    }
}

@media (max-width: 480px) {
	.topo{
		flex-wrap: wrap;
		flex-direction: column;
	}

	.navegacao{
		margin-right: 90%;
		margin-top: 0;
	}

	.site-logo {
	    max-height: 90px; 
	}

    .card-title {
        font-size: 1.7rem;
    }
    
    .full-width-card.active .card-title {
        font-size: 2rem !important;
        transform: translateX(10px);
    }
    
    .full-width-card.active .card-overlay {
        padding: 20px 15px 15px;
    }
}