@charset "utf-8";
/* 1. DECLARAÇÃO DAS FONTES GOTHAM LOCAIS */
@font-face {
    font-family: 'Gotham-Medium';
    src: url('../fonts/Gotham-Medium.ttf') format('truetype');
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gotham-Light';
    src: url('../fonts/Gotham-Light.ttf') format('truetype');
    font-style: normal;
    font-display: swap;
}
/* 2. HERO SECTION */
.hero-produtora {
    width: 100%;
    max-width: 1360px;
    padding-top: 60px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.hero-wrapper {
    width: 100%;
    height: 685px;
    background-image: url('../img/placa-produtora.png');
    background-size: cover;
    background-position: center right;
    display: flex;
    /* ALTERE DE center PARA flex-start */
    align-items: flex-start;
    /* ADICIONE UM PADDING TOP PARA NÃO COLAR NO TOPO DO CONTAINER */
    padding-top: 110px;
}
.hero-content {
    padding: 100px 00px 0 130px;
    max-width: 800px;
    z-index: 2;
}
.hero-content h1 {
    font-family: 'Gotham-Medium', sans-serif;
    font-size: 2.0rem;
    font-weight: 100; /* Gotham Medium */
    line-height: 1.1;
    margin-bottom: 10px;
}
.hero-content h2 {
    font-family: 'Gotham-Light', sans-serif;
    font-size: 2.2rem;
    font-weight: 100; /* Gotham Light */
    margin-bottom: 0px;
    line-height: 1.1;
}
.hero-content h2 {
    font-family: 'Gotham-Light', sans-serif;
    font-size: 1.2rem;
    font-weight: 100; /* Gotham Light */
    margin-bottom: 30px;
    line-height: 1.1;
	/*font-style: italic;  Adicione esta linha */
}
.hero-content p {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #dfdfdf;
}
.titulo-fundadores{
	text-align: center; 
	margin-top: 10px;
	margin-bottom: 30px;
	
}
.titulo-fundadores h2{
	  font-family: 'Oswald', sans-serif;
    font-weight: 300; /* Gotham Medium para os nomes */
    font-size: 1.8rem;
    text-transform: uppercase;
	

	
}
/* 3. BOTÃO CTA (ESTILO BOUTIQUE) */
.btn-boutique {
    font-family: 'Gotham-Medium', sans-serif;
    display: inline-block;
    padding: 5px 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
	 font-weight: 100;
}
.btn-boutique:hover {
    background: #fff;
    color: #000;
}
/* 4. TEXTO INSTITUCIONAL */
.institucional-texto {
    padding: 80px 20px;
    text-align: center;
}
.container-texto {
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 100;
    line-height: 1.3;
	text-align: justify;
}
/* 5. EQUIPE / SÓCIOS */
.equipe-produtora {
    display: flex;
    justify-content: center;
    gap: 160px;
    padding-bottom: 100px;
}
.socio-card {
    text-align: center;
    max-width: 320px;
}
.socio-card h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 300; /* Gotham Medium para os nomes */
    font-size: 1.4rem;
    text-transform: uppercase;
    margin-top: 15px;
}
.socio-card span {
    font-family: 'Oswald', sans-serif;
    color: #999;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* BOTÃO BIOGRAFIA DOS SÓCIOS */
.btn-bio {
    font-family: 'Gotham-Medium', sans-serif;
    display: inline-block;
    margin: 20px auto 0 auto; /* O 'auto' nas laterais ajuda a centralizar se o container for flex */
    padding: 6px 24px;
    border: 1px solid #fff;
    border-radius: 50px; /* Formato de pílula (pill) */
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-bio:hover {
    background: #fff;
    color: #000;
}
/* 6. RESPONSIVIDADE */
@media (max-width: 768px) {
    .hero-produtora {
        padding-top: 10px;
    }
    .hero-wrapper {
        height: auto;
        min-height: 450px;
        background-position: center;
        flex-direction: column;
        background-image: url('../img/placa-produtora-mobile.png');
        padding-top: 20px;
        padding-bottom: 20px;
		 font-weight: 100;
    }
    .hero-content {
        padding: 40px 20px;
        text-align: center;
        max-width: 100%;
        background: rgba(0, 0, 0, 0.0);
    }
    .hero-content h1 {
        font-size: 1.6rem;
        letter-spacing: 0px;
    }
    .equipe-produtora {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
    .hero-content h1 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    .hero-content h2 {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    .hero-content p {
        font-weight: 300;
    }
    .hero-lente {
        padding: 20px 20px;
        background: rgba(0, 0, 0, 0.6);
    }
    .btn-boutique {
        font-family: 'Oswald', sans-serif;
        font-size: 1.1rem;
    }
    .socio-card img {
        max-width: 70%;
    }
}