/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #000000;
    --color-dark-gray: #1A1A1A;
    --color-medium-gray: #666666;
    --color-light-gray: #CCCCCC;
    --color-white: #FFFFFF;
    --color-red: #D32F2F;
    --font-montserrat: 'Montserrat', sans-serif;
    --font-roboto: 'Roboto', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif; /* Agora com Poppins */
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-white);
    background-color: var(--color-black);
    padding-top: 100px; /* O padding-top para o cabeçalho fixo */
}


.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--color-white);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Botões */
.btn-primary {
    display: inline-block;
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 12px 30px;
    border-radius: 4px;
    font-family: var(--font-montserrat);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #b71c1c;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--color-white);
    padding: 10px 25px;
    border: 2px solid var(--color-white);
    border-radius: 4px;
    font-family: var(--font-montserrat);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

/* Títulos */
.section-title {
    font-family: 'Poppins', sans-serif; /* Altere para Poppins */
    font-size: 3rem; /* Ajuste para 3rem (equivalente a 48px) */
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    color: white; /* Adicione a cor branca para o preenchimento */
    -webkit-text-stroke: 2px black; /* Adicione o contorno preto para WebKit */
    text-stroke: 2px black; /* Adicione o contorno preto para outros navegadores */
}


}
.section-title,
.hero-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    -webkit-text-stroke: 2px black;
    text-stroke: 2px black;
    /* Mantenha outras propriedades de espaçamento ou alinhamento se necessário */
}


/* Para o corpo do texto, se quiser Poppins também */
body {
    font-family: 'Poppins', sans-serif; /* Altere para Poppins */
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-white);
    background-color: var(--color-black);
    padding-top: 100px; /* Mantenha o padding-top para o cabeçalho fixo */
}


.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--color-red);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-light-gray);
    margin-bottom: 40px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 20px 0;
    transition: all 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: var(--font-montserrat);
    font-size: 1.5rem;
    font-weight: 700;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-family: var(--font-montserrat);
    font-weight: 500;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-red);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.menu-mobile {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-mobile span {
    width: 25px;
    height: 3px;
    background-color: var(--color-white);
    margin: 2px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: auto;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-content h2 {
    font-family: var(--font-montserrat);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Sobre Section */
.sobre {
    padding: 100px 0;
}

.sobre-content {
    display: flex;
    gap: 50px;
}

.sobre-img {
    flex: 1;
}

.sobre-img img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.sobre-text {
    flex: 1;
}

.sobre-text p {
    margin-bottom: 20px;
}

.sobre-text .btn-secondary {
    margin-top: 20px;
}

/* Filosofia Section */
.filosofia {
    padding: 80px 0;
    background-color: var(--color-dark-gray);
}

.filosofia-cards {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.card {
    flex: 1;
    background-color: var(--color-black);
    padding: 30px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card .icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.card h3 {
    font-family: var(--font-montserrat);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    aspect-ratio: 1;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

/* Estúdio Section */
.estudio {
    padding: 100px 0;
    background-color: var(--color-dark-gray);
}

.estudio-content {
    display: flex;
    gap: 50px;
}

.estudio-text {
    flex: 1;
}

.estudio-text p {
    margin-bottom: 20px;
}

.estudio-gallery {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.estudio-img {
    overflow: hidden;
    border-radius: 5px;
}

.estudio-img img {
    width: 100%;
    transition: transform 0.5s ease;
}

.estudio-img:hover img {
    transform: scale(1.05);
}

/* Orçamento Section */
.orcamento {
    padding: 100px 0;
}

.form-orcamento {
    background-color: var(--color-dark-gray);
    padding: 40px;
    border-radius: 5px;
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    font-family: var(--font-montserrat);
    font-weight: 600;
    margin-bottom: 5px;
}

small {
    display: block;
    color: var(--color-light-gray);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--color-black);
    border: 1px solid var(--color-medium-gray);
    border-radius: 4px;
    color: var(--color-white);
    font-family: var(--font-roboto);
    font-size: 1rem;
}

textarea {
    resize: vertical;
}

.radio-group {
    margin-top: 10px;
}

.radio-option {
    margin-bottom: 10px;
}

.radio-group.inline {
    display: flex;
    gap: 30px;
}

input[type="radio"] {
    margin-right: 10px;
}

input[type="file"] {
    margin-top: 10px;
}

.form-submit {
    margin-top: 40px;
    text-align: center;
}

/* Footer */
footer {
    padding: 80px 0 30px;
    background-color: var(--color-dark-gray);
}

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

.footer-logo h2 {
    font-family: var(--font-montserrat);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-logo p {
    color: var(--color-light-gray);
}

.footer-info {
    display: flex;
    gap: 50px;
}

.footer-contact h3,
.footer-social h3 {
    font-family: var(--font-montserrat);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-contact ul li {
    margin-bottom: 10px;
}

.footer-contact ul li a:hover {
    color: var(--color-red);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--color-black);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--color-red);
    transform: translateY(-3px);
}

.social-icons img {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--color-medium-gray);
    text-align: center;
}

.footer-bottom p {
    color: var(--color-light-gray);
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .sobre-content,
    .estudio-content {
        flex-direction: column;
    }
    
    .filosofia-cards {
        flex-direction: column;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }
    
    nav {
        display: none;
    }
    
    .menu-mobile {
        display: flex;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 30px;
    }
}

/* Menu Mobile */
.nav-active {
    display: block;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--color-black);
    padding: 20px;
}

.nav-active ul {
    flex-direction: column;
}

.nav-active ul li {
    margin: 10px 0;
}


/* Seção de Contato */
.contato {
    padding: 100px 0;
    background-color: var(--color-black);
}

/* Botões de redes sociais */
.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 4px;
    font-family: var(--font-montserrat);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.social-btn img {
    width: 24px;
    height: 24px;
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.ver-mais-container {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
}


/* Estilos para o rodapé - link de política de privacidade */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: var(--color-light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
video {
    max-width: 100%;
    height: auto;
}
.video-container {
  position: relative;
  width: 100%;
  /* Para vídeos verticais (9:16), use 177.77% (16/9 * 100) */
  /* Para vídeos horizontais (16:9), use 56.25% (9/16 * 100) */
  padding-bottom: 177.77%; /* Ajuste para a proporção 9:16 (vertical) */
  height: 0;
  overflow: hidden;
  max-width: 405px; /* Limita a largura máxima para não ficar gigante em telas grandes */
  margin: 0 auto; /* Centraliza o vídeo */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

