/* Reset básico */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background: #f5f5f5; /* só pra não ficar “tudo branco” */
  color: #222;
}

/* SECTION */
section {
    margin-top: 80px;
    margin-bottom: 80px;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px; /* distância até o conteúdo */
}

section {
    margin-top: 60px;
}

/* Container centralizado */
.container {
  max-width: 1000px;   /* limite horizontal */
  width: 100%;         /* ocupa toda largura até o limite */
  margin: 0 auto;      /* centraliza */
  padding: 20px;       /* respiro interno */
}

/* Header alinhado */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo ajustável */
.logo {
  height: 60px;  /* ajusta se quiser menor ou maior */
  border-radius: 6px;
}

/* BOTÕES */
.btn-primary {
    display: inline-block;
    background: #1d70f7;
    color: #fff;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: 0.2s;
}

.btn-primary:hover {
    background: #155ac7;
}


.btn-whats {
    background: #25d366;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

/* BOTÃO AGENDAMENTO FLUTUANTE */
.btn-agendamento-flutuante {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    
    display: inline-block;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;

    background: #1d70f7; /* Azul CTA */
    color: #ffffff;
    
    border: none;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);

    transition: 0.2s ease-in-out;
}

.btn-agendamento-flutuante:hover {
    background: #155ac7; /* Azul um pouco mais escuro */
    box-shadow: 0 6px 14px rgba(0,0,0,0.22);
}


/* HERO */
.hero {
    width: 1200px;
    max-width: 90%;
    margin: 60px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.hero-content h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 14px;
    color: #111;
}
.hero-content p {
    font-size: 18px;
    line-height: 1.55;
    max-width: 480px;
    color: #444;
    margin-bottom: 24px;
}
.hero-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 8px;
}

/* SERVIÇOS */
.servicos {
    margin-top: 80px;
}

.servicos-titulo {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 35px;
}

/* GRID */
.servicos-categorias {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

/* CARD */
.servico-card {
    background: #fff;
    padding: 25px;
    width: 260px;
    min-height: 240px;
    border-radius: 10px;
    text-align: left;
    border: 1px solid #dcdcdc;
    box-shadow: 0 3px 10px rgba(0,0,0,0.07);
    transition: 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.servico-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

/* ÍCONE */
.servico-icone {
    color: #444;
    margin-bottom: 12px;
}

/* TÍTULO */
.servico-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* LISTA */
.servico-card ul {
    list-style: none;
    padding-left: 0;
}

.servico-card li {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

/* GALERIA */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.galeria-grid img {
    width: 100%;
    aspect-ratio: 4/5; /* formato parecido com instagram vertical */
    object-fit: cover;
    border-radius: 8px;
}

/* PRODUTOS */
.produtos {
    margin-top: 60px;
    margin-bottom: 60px; /* novo */
}

/* Título */
.produtos h2 {
    margin-bottom: 20px;
}

/* CARD INDIVIDUAL */
.produto-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    text-align: center;
    margin: 0 12px;
}

.produto-card img {
    width: 200px;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.produto-card p {
    margin: 8px 0 0 0;
    font-size: 14px;
    color: #222;
}

/* CTA WHATSAPP */
.produtos-cta {
    margin-top: 40px; /* aumentado */
    text-align: center;
}

.btn-whats-prod {
    background: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
}

/* WRAPPER GERAL */
.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
    margin-top: 10px;
}

/* FAIXA ROLÁVEL */
.carousel {
    display: flex;
    gap: 24px;
    scroll-behavior: smooth;
    overflow-x: auto;
    padding: 10px 0 0 0;
}

/* OCULTA SCROLLBAR */
.carousel::-webkit-scrollbar {
    display: none;
}
.carousel {
    scrollbar-width: none;
}

/* BOTÕES DE NAVEGAÇÃO */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.25);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-btn:hover {
    background: rgba(0,0,0,0.9);
}

/* FOOTER */
.footer {
    background: #f8f9fb;
    padding: 60px 0 35px 0;
    margin-top: 90px;
    color: #222;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

/* CONTAINER CENTRALIZADO */
.footer-container {
    width: 900px;
    max-width: 92%;
    margin: auto;
}

/* TEXTO PRINCIPAL */
.footer-info {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 22px;
}

/* BOTÃO MAPS */
.btn-maps {
    display: inline-block;
    margin-top: 5px;
    margin-bottom: 25px;
    background: #1d70f7;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
}
.btn-maps:hover {
    background: #155ac7;
}

/* ÍCONES */
.footer-icons {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-bottom: 25px;
}
.footer-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #eaf0ff;
    transition: 0.2s;
}
.footer-icons a:hover {
    background: #d9e4ff;
}

/* BOTÃO ACESSO BARBEIRO */
.btn-barbeiro {
    display: inline-block;
    margin-bottom: 25px;
    margin-top: 5px;
    font-size: 13px;
    padding: 7px 14px;
    border-radius: 5px;
    background: #eaeaea;
    color: #333;
    text-decoration: none;
    border: 1px solid #d0d0d0;
    transition: 0.2s;
}
.btn-barbeiro:hover {
    background: #d5d5d5;
}

/* LINHA FINAL */
.footer-bottom {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.9;
}

/* CRÉDITO */
.footer-bottom .credit {
    font-size: 12px;
    opacity: 0.55;
    margin-top: 4px;
    font-style: italic;
}


/* RESPONSIVIDADE */
@media (max-width: 900px) {
    .servicos-categorias {
        gap: 25px;
    }
}
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-content p {
        max-width: 100%;
    }

    .hero-image img {
        max-width: 80%;
        margin: 0 auto;
    }
}
@media (max-width: 600px) {
    .carousel img {
        width: 180px;
        height: 230px;
    }

    .carousel-btn.prev {
        left: -10px;
    }

    .carousel-btn.next {
        right: -10px;
    }

    .galeria-grid img {
        aspect-ratio: 1/1; /* quadrado bonito no mobile */
    }
    .servico-card {
        width: 100%;
    }
    .produtos {
        margin-bottom: 40px;
    }
    
    .produtos-cta {
        margin-top: 30px;
    }
}