/* Reset base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0c0c0c;
    color: #fff;
    line-height: 1.6;
}

/* Utilitários */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s ease;
}


img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}
.btn-primary {
    display: inline-block;
    background: #b09b8c;
    color: #000;
    padding: 14px 28px;
    font-weight: bold;
    border-radius: 6px;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #d6c5ba;
}

/* Header */
header.topo {
    background: #000;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    height: 50px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu {
    list-style: none;
    display: flex;
    gap: 25px;
}

.menu li a {
    color: #fff;
    font-weight: bold;
    transition: color 0.3s;
}

.menu li a:hover {
    color: #b09b8c;
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
}

/* Hero com imagem responsiva */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(img/hero.jpg) no-repeat center center;
    background-size: cover;
    z-index: -1;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 60px 20px;
    text-align: center;
}

.hero h1 {
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    color: #ccc;
}

/* Seções */
section {
    padding: 80px 0;
}

h2 {
    font-family: 'Anton', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
}

/* Nossa marca */
.nossa-marca {
    background: #111;
}

.split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.split img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
}

.texto {
    flex: 1;
    color: #ccc;
}

/* Faixa tricolor */
.faixa-tricolor {
    background: linear-gradient(135deg, #ff0000, #000, #007bff);
    text-align: center;
    color: #fff;
}

.servicos-app {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.servicos-app .item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 6px;
    text-align: center;
}

.servicos-app img {
    width: 50px;
    margin-bottom: 10px;
}

.botoes-loja img {
    width: 40px;
    margin: 10px;
}

/* Unidades */
.unidades {
    background: #0c0c0c;
}

.unidade {
    background: #1a1a1a;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid red;
}

/* Contato */
.contato {
    background: #111;
}

.servicos-modernos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.servico-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    width: 300px;
    height: 200px;
    transition: transform 0.4s ease;
}

.servico-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.servico-card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.servico-card:hover img {
    transform: scale(1.1);
}

.servico-card:hover .overlay {
    opacity: 1;
}

.cards-unidades {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.card-unidade {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    width: 360px;
    transition: transform 0.3s ease;
}

.card-unidade img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-unidade .info {
    padding: 20px;
    color: #fff;
}

.card-unidade h3 {
    color: #b09b8c;
    margin-bottom: 10px;
}

.card-unidade .btn-mapa {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background: red;
    color: white;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s;
}

.card-unidade .btn-mapa:hover {
    background: #c10000;
}

.card-unidade:hover {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .card-unidade {
        width: 100%;
    }
}


@media (max-width: 768px) {
    .servico-card {
        width: 100%;
        height: 180px;
    }

    .servico-card .overlay h3 {
        font-size: 1.2rem;
    }
}


form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: auto;
}

form input,
form textarea {
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}

form button {
    background: red;
    color: white;
    font-weight: bold;
    padding: 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

/* ================================
   CTA FINAL BARBEARIA
================================ */

.cta-final {
  padding: 100px 20px;
  background: linear-gradient(135deg, #111111, #1c1c1c);
  color: #ffffff;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.cta-final .container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-final h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.cta-final p {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 35px;
}

.cta-final .btn {
  display: inline-block;
  padding: 14px 32px;
  background: #c8a96a; /* dourado retrô */
  color: #111;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.cta-final .btn:hover {
  background: #e6c27a;
  transform: translateY(-3px);
}



/* Footer */
footer {
    background: #000;
    text-align: center;
    padding: 25px 0;
}

.footer {
    background: #000;
    color: #ccc;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-logo {
    width: 100px;
    margin-bottom: 15px;
}

.social a {
    display: inline-block;
    margin-right: 10px;
}

.social img {
    width: 24px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.social img:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #222;
    padding-top: 20px;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: #b09b8c;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-button img {
    width: 32px;
    height: 32px;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}


.agenda-form {
    max-width: 700px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.grid-2,
.grid-3 {
    display: grid;
    gap: 15px;
}

.grid-2 {
    grid-template-columns: 1fr 1fr;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

input,
select {
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
}

.ok-msg {
    text-align: center;
    color: #0f0;
    margin-top: 20px;
    font-weight: bold;
    font-size: 1rem;
}

@media (max-width: 768px) {

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

  .cta-final {
    padding: 70px 20px;
  }

  .cta-final h2 {
    font-size: 1.5rem;
  }

  .cta-final p {
    font-size: 1rem;
  }

  .cta-final .btn {
    width: 100%;
    padding: 14px;
  }
}

/* Mobile */
@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        align-items: center;
    }

    .footer-col {
        width: 100%;
        max-width: 320px;
    }

    .footer-logo {
        margin: 0 auto 10px;
    }

    .social {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 10px;
    }

    .footer-bottom {
        font-size: 0.8rem;
        line-height: 1.4;
        padding: 20px 10px 0;
        border-top: 1px solid #222;
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        background: #000;
        position: absolute;
        top: 70px;
        right: 0;
        left: 0;
        width: 100%;
        padding: 20px;
        z-index: 999;
    }

    .menu.ativo {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hero {
        height: auto;
        padding: 80px 0;
    }

    .hero::before {
        background-size: contain;
        background-position: center top;
        transform: scale(1.1);
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .split {
        flex-direction: column;
    }

    .servicos-app {
        flex-direction: column;
    }
}