/*
Theme Name: Alk
Theme URI: https://alk.com.br
Author: Alk Comunicação
Author URI: https://alk.com.br
Description: ALK Comunicação e Marketing é uma agência premiada, localizada em Montes Claros, MG, especializada em soluções criativas e estratégicas de marketing e comunicação. Nossa missão é transformar ideias em resultados excepcionais, impulsionando marcas e negócios com inovação e expertise
Requires at least: 6.8.1
Tested up to: 6.8.1
Requires PHP: 7.4 ou superior
Version: 1.0
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/


:root{
    --mainColor: #111111;
    --corSecundaria: #eeb902;
    --white: #FFFFFF;
    --sombras: #474647;
    --lighter: #0A0F0D;
    --brighterGreen: #d0fefa;
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Nunito Sans", sans-serif;
    scroll-behavior: smooth;
}

html,body{
    background-color: var(--mainColor);
    scroll-behavior: smooth;
}

header {
  position: relative;
  width: 100%;
}

.sem-video {
  
  padding: 20px 0;
}


.nav-wrapper,
.logo,
.hamburger {
  position: relative;
  z-index: 20;
}

.com-video {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.com-video video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}

.sem-video {  
  padding: 20px 0;
}
.container{
    width: 80%;
    margin: 0 auto;
}

.logo img {
  width: 150px;
  height: auto;
}

.header-home video {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.header-interno {
  height: 150px;
  display: flex;
  align-items: center;
}

nav{
    padding: 25px 0;
}

        .hamburger {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            cursor: pointer;
            z-index: 1001;
        }
        
        .hamburger span {
            display: block;
            width: 100%;
            height: 3px;
            background-color: var(--brighterGreen);
            transition: all 0.3s ease;
        }
        
        .hamburger.active span:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }
        
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger.active span:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }
        
        /* Estilos do menu mobile */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(17, 17, 17, 0.8); /* Preto com 80% de transparência */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .mobile-menu.active {
            opacity: 1;
            visibility: visible;
        }
        
        .mobile-menu nav {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .mobile-menu a {
            color: #fff;
            text-decoration: none;
            font-size: 1.5rem;
            margin: 1rem 0;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .mobile-menu a:hover {
            color: #ccc;
        }
        
        .social-icons {
            margin-top: 2rem;
            display: flex;
            gap: 1.5rem;
        }
        
        .social-icons a {
            color: #fff;
            font-size: 1.8rem;
            transition: transform 0.3s ease, color 0.3s ease;
        }
        
        .social-icons a:hover {
            transform: translateY(-3px);
            color: #ccc;
        }




.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
  padding: 30px 0;
}

section.produtos{
    padding: 100px 0;
    background-color: var(--mainColor);
    width: 100%;
}

section.produtos h3{
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto;
    text-align: center;
}

.produtoswrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 50px 0;
    flex-wrap: wrap;
}

.w-25{
    flex: 1;
    width: 50%;
}

.w-25 h4{
    font-size: 3.3rem;
    color: var(--corSecundaria);
}

.w-25 p{
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 100;
    margin-bottom: 35px;
    line-height: 30px;
    text-align: justify;
}

button.sobre{
    padding: 20px 30px ;
    background: var(--mainColor);
    border: 1px solid var(--corSecundaria);
    color: var(--white);
    border-radius: 30px;
}

section.parallax{
    background-color: var(--corSecundaria);
    padding: 50px 0;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

section.parallax img{
    margin: 0 auto;
    text-align: center;
}

section.portfolio{
    padding: 100px 0;
    background-color: var(--mainColor);
    width: 100%;
}

.portfoliohead{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.portfoliohead h3{
    color: var(--white);
    font-size: 2rem;
    text-align: left;
}

button.portfoliofull{
    padding: 20px 30px ;
    background: var(--mainColor);
    border: 1px solid var(--corSecundaria);
    color: var(--white);
    border-radius: 40px;
    font-size: 1.2rem;
}

.galeria {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start; /* Alterado de center para flex-start */
  width: 100%;
  margin-top: 35px;
}

.card-galeria {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 12px;
  flex: 1 1 calc(33.333% - 20px); /* Ajuste para 3 cards por linha considerando o gap */
  min-width: 300px; /* Largura mínima */
  max-width: calc(33.333% - 20px); /* Mantém no máximo 3 por linha */
}

.card-galeria a {
  display: block;
  width: 100%;
  height: 100%;
  color: white;
  text-decoration: none;
  position: relative;
}

.fundo-imagem {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.card-galeria:hover .fundo-imagem {
  opacity: 0.5;
}

.conteudo {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
  border-radius: 12px;
}

.conteudo h3 {
  font-size: 1.4rem;
  margin: 0;
}

.conteudo p {
  font-size: 1rem;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.4);
  padding-top: 10px;
}




footer{
    background-color: var(--lighter);
    padding-top: 100px;
    padding-bottom: 40px;
    width: 100%;
}

.footer-wrapper{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin: 0 auto;
  text-align: center;
}


.wf-25{
    
flex: 1 calc(25% - 40px);
    
}

.wf-25 img{
    width: 180px;
    height: auto;
}


.wf-25 h2{
    color: var(--white);
    margin-bottom: 15px;
}

.wf-25 ul{
    list-style-type: none;
}

.wf-25 ul li{
    color: var(--white);
    line-height: 35px;
}

.wf-25 ul li a {
  text-decoration: none;
  color: var(--white);
}

.wf-25 p{
    color: var(--white);
    font-size: 1rem;
    line-height: 30px;
}

/* Estilos para a seção de contatos */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza todos os itens */
    text-align: center;
}

.contact-info li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center; /* Centraliza ícone + texto */
}

.contact-info i {
    margin-right: 10px;
    color: #fff;
    width: 20px;
    text-align: center;
}

.contact-info span {
    color: #ccc;
    font-size: 1rem;
}  

/* Redes sociais */
.social-icons {
    margin-top: 20px;
    display: flex;
    justify-content: center; /* Centraliza os ícones */
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

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


.copy{
    background-color: var(--lighter);
    padding: 15px 0;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}


/* formulário */

/* Estilo geral do formulário */
.wpcf7 form {
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Arial', sans-serif;
  color: #FFFFFF;
}

/* Labels */
.wpcf7 form label {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  color: #e0e0e0;
  margin-top: 24px;
}

/* Campos de input e textarea */
.wpcf7 form input[type="text"],
.wpcf7 form input[type="email"],
.wpcf7 form input[type="url"],
.wpcf7 form input[type="tel"],
.wpcf7 form input[type="number"],
.wpcf7 form input[type="date"],
.wpcf7 form textarea,
.wpcf7 form select {
  width: 100%;
  padding: 12px 15px;
  font-size: 15px;
  background-color: #1e1e1e;
  border: 1px solid #555;
  border-radius: 6px;
  color: #fff;
  margin-top: 6px;
  box-sizing: border-box;
}

/* Estilo para checkboxes e radios */
.wpcf7 form .wpcf7-checkbox,
.wpcf7 form .wpcf7-radio {
  margin-top: 10px;
  margin-bottom: 10px;
}

.wpcf7-checkbox label,
.wpcf7-radio label {
  margin-right: 20px;
  display: inline-block;
  font-size: 14px;
  color: #ccc;
}

.wpcf7 select,
.wpcf7-form-control.wpcf7-select {
  display: block;
  max-width: 100%;
  width: 100% !important;
  padding: 12px 15px;
  font-size: 15px;
  background-color: #1e1e1e;
  border: 1px solid #555;
  border-radius: 6px;
  color: #fff;
  box-sizing: border-box;
  margin-top: 6px;

  /* Remove aparência padrão e seta nativa */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  /* Adiciona seta customizada */
  background-image: url("data:image/svg+xml,%3Csvg fill='%23ccc' viewBox='0 0 24 24' width='18' height='18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px 18px;
}

/* Foco */
.wpcf7 select:focus {
  border-color: var(--corSecundaria);
  outline: none;
}


/* Corrige o ícone de seta para não sobrescrever a cor */
.wpcf7 select:focus {
  border-color: var(--sombras);
  outline: none;
}


/* Botão de envio */
.wpcf7 form input[type="submit"] {
  background-color: var(--corSecundaria);
  color: var(--lighter);
  border: none;
  padding: 12px 25px;
  margin-top: 2
}




/*media queries*/

@media screen and (max-width: 1536px) {
  .com-video {
    height: auto;
    aspect-ratio: 16/9;
  }

  .com-video video {
    height: 100%;
    width: 100%;
  }
}

@media screen and (max-width: 1281px) {

    .w-25{
    flex: 0 0 100%; 
    width: 90%;
    margin: 0 auto;
    text-align: center!important;
}

}

@media screen and (max-width: 1190px) {



.card-galeria {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 12px;
  flex: 1 1 calc(33.333% - 20px); /* Ajuste para 3 cards por linha considerando o gap */
  min-width: none;
  max-width: initial;
}
}

@media screen and (max-width:960px){
    .wf-25{
    
   flex: 0 0 85%;
}
}

@media screen and (max-width: 768px) {

section.parallax img{
    width: 85%;
    height: auto;

}
}

