/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
body {
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #000; /* Fundo preto */
    color: #fff; /* Texto branco para contraste */
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #000; /* Fundo preto */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 10; /* Camada acima do vídeo */
    position: fixed; /* Fixa o header no topo */
    width: 100%; /* Garante que o header ocupe toda a largura */
    top: 0; /* Gruda no topo */
    color: #fff; /* Define o texto padrão como branco */
}

.logo img {
    height: 80px;
    width: auto;
}
  
.nav {
    position: relative;
}
  
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}
  
.nav-links li a {
    text-decoration: none;
    color: #fff; /* Links brancos */
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #007bff; /* Azul claro para hover */
}
  
.hamburger {
    display: none; /* Oculto por padrão */
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 15; /* Certifica que o botão está acima do vídeo */
    color: #fff; /* Ícone do menu hambúrguer branco */
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%; /* Posiciona abaixo do cabeçalho */
        right: 0;
        background-color: #000; /* Fundo preto */
        flex-direction: column;
        width: 200px;
        display: none; /* Escondido por padrão */
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        padding: 1rem;
        z-index: 15; /* Certifica que o menu está acima do conteúdo */
    }
  
    .nav-links.active {
        display: flex; /* Exibido ao ativar */
    }

    /* Mostra o menu sanduíche em telas menores */
    .hamburger {
        display: block; 
        color: #fff; /* Ícone branco */
    }

    .nav-links li a {
        color: #fff; /* Links brancos */
    }

    .nav-links li a:hover {
        color: #007bff; /* Azul claro para hover */
    }
}

/* Estilo para o vídeo */
.video-parallax {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.background-video {
    position: absolute; /* O vídeo será a camada de fundo */
    top: 0;
    left: 0;
    width: 100%; /* O vídeo ocupa toda a largura */
    height: 100%; /* O vídeo ocupa toda a altura */
    object-fit: cover; /* Faz o vídeo cobrir toda a seção sem distorção */
    z-index: 1; /* Certifica que o vídeo está abaixo do menu */
}

/* Estilo para a sobreposição de conteúdo */
.overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    padding: 1rem;
    max-width: 90%; /* Para garantir boa aparência em dispositivos menores */
}

.overlay-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.overlay-content h1 .highlight {
    color: #000; /* Cor dourada para destaque */
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1.5px;
}

.overlay-content .subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.overlay-content .subtitle .emphasis {
    color: #000; /* Destaque dourado */
    font-weight: 500;
    text-decoration: underline;
}

/* Estilo para o botão de agendamento */
.schedule-button {
    display: inline-block;
    margin: 3rem auto 0; /* Ajusta o espaçamento acima para separar do conteúdo */
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    background: #333;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.schedule-button:hover {
    background: #555;
}

/* Ajuste para os títulos com sublinhado estilizado */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #fff;
    position: relative; /* Necessário para o ::after */
}

.section-title::after {
    content: "";
    display: block;
    width: 80px; /* Comprimento do sublinhado */
    height: 3px; /* Espessura do sublinhado */
    background-color: #fff; /* Cor do sublinhado */
    margin: 0.5rem auto 0; /* Espaçamento entre o texto e o sublinhado */
    border-radius: 2px; /* Deixa o sublinhado com bordas arredondadas */
}

/* Responsividade */
@media (max-width: 768px) {
    .overlay-content {
        top: 60%; /* Move o texto para um pouco mais abaixo */
        transform: translate(-50%, -60%); /* Ajusta a centralização vertical com o novo `top` */
    }

    .overlay-content h1 {
        font-size: 2.5rem;
    }

    .overlay-content .subtitle {
        font-size: 1.2rem;
    }

    .schedule-button {
        width: 80%;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    /* Estilo para a seção de avaliações */
    .reviews-section {
        padding: 4rem 1rem;
        background-color: #f9f9f9;
        text-align: center; /* Centraliza todo o conteúdo da seção */
    }

    .reviews-section .section-title {
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 2rem;
        color: #333;
        text-align: center; /* Garante que o título esteja centralizado */
    }

    
}

/* Classes de controle de visibilidade */
.desktop-only {
    display: block;
  }
  
  .mobile-only {
    display: none;
  }
  
  @media (max-width: 768px) {
    .desktop-only {
      display: none !important;
    }
  
    .mobile-only {
      display: block;
    }
  
    .mobile-banner {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }
  
    .mobile-banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
      
  }

  @media (max-width: 768px) {
    .button-wrapper {
      position: absolute;
      top: 45%;
      left: 60%;
      transform: translate(-50%, -50%) scale(0.85);
      z-index: 2;
      width: auto;
    }
  
    .schedule-button {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 45px;             /* Altura fixa para centralização */
      padding: 0 1.6rem;        /* Espaçamento horizontal */
      font-size: 1rem;
      font-weight: 600;
      border-radius: 40px;
      text-align: center;
      background-color: #333;
      color: #fff;
      border: none;
      text-decoration: none;
    }
  }
  
  

/* Estilo para a seção de serviços */
.services-section {
    padding: 4rem 1rem;
    background-color: #000; /* Alterado para preto */
    text-align: center;
}

.services-section .section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #fff; /* Alterado para branco para melhor contraste */
}

/* Instruções para a seção de serviços */
.services-instruction {
    font-size: 1rem;
    color: #ddd; /* Alterado para um cinza claro para contraste com o fundo preto */
    margin-bottom: 2rem;
}

/* Configuração de grid para os cards */
.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

/* Estilo dos cards */
.service-card {
    background-color: #fff;
    border-radius: 20px; /* Bordas arredondadas */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Sombra mais chamativa */
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #ddd; /* Borda sutil para destacar o card */
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2); /* Sombra mais intensa ao passar o mouse */
    border-color: #333; /* Borda preta ao passar o mouse */
}

/* Títulos dos serviços */
.service-card h3 {
    font-size: 1.8rem;
    color: #333; /* Preto nos títulos */
    margin-bottom: 1rem;
}

/* Preços */
.service-card .price {
    font-size: 1.5rem;
    color: #555; /* Cinza escuro para os preços */
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Descrição */
.service-card .description {
    font-size: 1rem;
    color: #666; /* Cinza médio para descrição */
    line-height: 1.5;
}

/* Responsividade */
@media (max-width: 768px) {
    .services-section .section-title {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.6rem;
    }

    .service-card .price {
        font-size: 1.3rem;
    }

    .service-card .description {
        font-size: 0.9rem;
    }
}


/* Estilo para a seção de portfólio */
.portfolio-section {
    padding: 4rem 1rem;
    background-color: #000; /* Alterado para preto */
    text-align: center;
}

.portfolio-section .section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #fff; /* Alterado para branco para melhor contraste */
    position: relative; /* Necessário para sublinhado estilizado */
}

.portfolio-section .section-title::after {
    content: "";
    display: block;
    width: 80px; /* Comprimento do sublinhado */
    height: 3px; /* Espessura do sublinhado */
    background-color: #fff; /* Cor do sublinhado */
    margin: 0.5rem auto 0; /* Espaçamento entre o texto e o sublinhado */
    border-radius: 2px; /* Deixa o sublinhado com bordas arredondadas */
}

.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Ajuste específico para telas maiores */
@media (min-width: 1024px) {
    .portfolio-gallery {
        grid-template-columns: repeat(4, 1fr); /* Mostra 4 imagens por linha no desktop */
        gap: 2rem; /* Maior espaçamento entre as imagens */
    }
}

.portfolio-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1); /* Ajustado para um brilho mais sutil no fundo preto */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

/* Efeito hover para destacar a imagem */
.portfolio-image:hover {
    transform: scale(1.1); /* Zoom ao passar o mouse */
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2); /* Sombra mais clara ao passar o mouse */
    filter: brightness(1.2); /* Deixa a imagem mais brilhante */
}

/* Responsividade */
@media (max-width: 768px) {
    .portfolio-section .section-title {
        font-size: 2rem;
    }

    .portfolio-gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
}


.founder-section {
    padding: 5rem 1rem 4rem 1rem;
    background: linear-gradient(135deg, #090909 60%, #181818 100%);
    text-align: center;
}

.founder-section .section-title {
    font-size: 2.7rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0 2px 16px #0006;
    position: relative;
}

.founder-section .section-title::after {
    content: "";
    display: block;
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #fff 60%, #fff 100%);
    margin: 0.5rem auto 0;
    border-radius: 3px;
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.barbeiro-card {
    background: rgba(30, 30, 30, 0.95);
    border-radius: 24px;
    box-shadow: 0 10px 32px rgba(0,0,0,0.32), 0 1.5px 0 #fff;
    padding: 2.2rem 1.2rem 1.4rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 310px;
    width: 100%;
    max-width: 270px;
    min-width: 200px;
    justify-content: space-between;
    transition: transform 0.22s, box-shadow 0.22s;
    position: relative;
    overflow: hidden;
}

.barbeiro-card:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 20px 40px rgba(255,255,255,0.19), 0 2.5px 0 #fff;
}

.founder-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 18px rgba(255,255,255,0.14);
    border: 3px solid #fff;
    background: #222;
    margin-bottom: 0.8rem;
}

.barbeiro-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.barbeiro-nome {
    margin-top: 0.1rem;
    color: #fff;
    font-size: 1.16rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 4px #000a;
    max-width: 90%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.barbeiro-funcao {
    margin-top: 0.2rem;
    color: #bbb;
    font-size: 1.01rem;
    letter-spacing: 0.2px;
    font-weight: 400;
    max-width: 90%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsividade */
@media (max-width: 900px) {
    .equipe-grid {
        gap: 1.5rem;
    }
    .barbeiro-card {
        padding: 1.5rem 0.8rem 1.1rem 0.8rem;
        height: 250px;
        max-width: 220px;
    }
    .founder-image {
        width: 90px;
        height: 90px;
    }
}
@media (max-width: 600px) {
    .founder-section {
        padding-top: 2.5rem;
    }
    .equipe-grid {
        gap: 1.1rem;
    }
    .barbeiro-card {
        height: 180px;
        max-width: 140px;
    }
    .founder-image {
        width: 75px;
        height: 75px;
    }
    .barbeiro-nome, .barbeiro-funcao {
        font-size: 0.94rem;
    }
}

.estrutura-section {
    padding: 4rem 1rem;
    background-color: #111;
    text-align: center;
}

.estrutura-section .section-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    color: #fff;
    position: relative;
}

.estrutura-section .section-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background-color: #fff;
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.estrutura-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
    background: rgba(255,255,255,0.01);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(255,255,255,0.09);
    padding: 2rem 1.2rem;
}

.estrutura-text {
    flex: 1 1 320px;
    text-align: left;
    font-size: 1.18rem;
    color: #eee;
    line-height: 1.7;
    letter-spacing: 0.01em;
    max-width: 540px;
}

.estrutura-text .destaque {
    color: #FFD600;
    font-weight: bold;
}

.estrutura-image-wrapper {
    flex: 1 1 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.estrutura-image {
    width: 320px;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(255,255,255,0.15);
    object-fit: cover;
}

@media (max-width: 900px) {
    .estrutura-content {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 0.5rem;
    }
    .estrutura-text {
        text-align: center;
        font-size: 1.05rem;
    }
    .estrutura-image {
        width: 220px;
        margin-top: 1rem;
    }
}


/* Estilo para a seção de sugestões */
.suggestions-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0); /* Fundo suave e chamativo */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.suggestions-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.suggestions-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.suggestions-section .section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
    z-index: 2;
    position: relative;
}

.suggestions-description {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    z-index: 2;
    position: relative;
}

.suggestions-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 2;
    position: relative;
    animation: fadeInUp 0.8s ease-in-out;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #333;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    outline: none;
}

.submit-button {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(135deg, #333, #555);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.submit-button:hover {
    background: linear-gradient(135deg, #555, #777);
    transform: scale(1.05);
}

/* Animação de fade-in */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .suggestions-section .section-title {
        font-size: 2rem;
    }

    .suggestions-description {
        font-size: 1rem;
    }

    .suggestions-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.9rem;
    }

    .submit-button {
        font-size: 1rem;
    }
}

/* Estilo para o rodapé */
.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.9rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
}

.footer-content strong {
    color: #ffff; /* Destaque em amarelo suave */
}

.footer-content p {
    margin: 0.5rem 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer {
        font-size: 0.8rem;
    }
}