/* ===============================
   TEMA E ESTILOS GERAIS
   (cores, fontes e reset)
   =============================== */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Raleway:wght@300;400;500;600&display=swap");

:root {
  --background: hsl(0 0% 14.5%);
  --foreground: hsl(40 20% 90%);
  --card: hsl(0, 2%, 20%);
  --muted: hsl(0 0% 19%);
  --muted-foreground: hsl(0 0% 55%);
  --primary: hsl(211 82% 31%);
  --primary-foreground: hsl(0 0% 100%);
  --secondary: hsl(0 0% 19%);
  --border: hsl(0 0% 22%);
  --gold: hsl(211 82% 31%);
  --gold-light: hsl(211 65% 45%);
  --gold-dark: hsl(211 90% 22%);
  --radius-sm: 50px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Raleway", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ===============================
   UTILITÁRIOS DE LAYOUT
   =============================== */

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

.section--dark {
  background-color: var(--background);
}

.section--muted {
  background-color: var(--secondary);
}

.section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.section__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.section__title {
  font-size: clamp(2.25rem, 5vw, 3rem);
  margin-top: 0.75rem;
}

.section__divider {
  width: 4rem;
  height: 1px;
  margin: 1.5rem auto 0;
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold),
    var(--gold-dark)
  );
}

.grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.text-muted {
  color: var(--muted-foreground);
}

.text-center {
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 1rem 2.2rem;
  border-radius: var(--radius-lg);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--primary-foreground);
  box-shadow: 0 4px 15px rgba(211, 82%, 31%, 0.3);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(211, 82%, 31%, 0.5);
}

.btn--outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold);
  background-color: transparent;
}

.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--primary-foreground);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(211, 82%, 31%, 0.3);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.btn--primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn--outline-gold {
  border: 1px solid var(--gold);
  color: var(--gold);
  background-color: transparent;
}

.btn--whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, #25D366, #20BD5A);
  padding: 1.1rem 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn--whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #20BD5A, #1DA251);
}

.btn-whatsapp-icon {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}

/* ===============================
   NAVBAR FIXA
   =============================== */

.navbar {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background-color: rgba(15, 15, 15, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar__inner {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__links {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.navbar__link {
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

.navbar__link:hover {
  color: var(--gold-light);
}

.navbar__brand-logo {
  height: 2.5rem;
  width: auto;
}

.navbar__toggle {
  background: none;
  border: none;
  color: var(--foreground);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.navbar__toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.navbar__toggle-icon {
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1.5rem;
}

.navbar__mobile {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  background-color: var(--background);
  border-top: 1px solid var(--border);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 100;
}

.navbar__mobile.active {
  display: flex;
}

.navbar__mobile-link {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.navbar__mobile-link:hover {
  color: var(--gold-light);
}

@media (min-width: 768px) {
  .navbar__links {
    display: flex;
  }

  .navbar__toggle {
    display: none;
  }
}

/* ===============================
   HERO COM LOGO 
   =============================== */

.hero-logo{
    width:300px;
    max-width:80%;
    height:auto;
    display:block;
    margin:0 auto 20px auto;
}

/* ===============================
   HERO COM IMAGEM DE FUNDO
   =============================== */

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to top,
      rgba(10, 10, 10, 0.1),
      rgba(10, 10, 10, 0.2),
      transparent),
    rgba(10, 10, 10, 0.3);
}

.hero__content-wrapper {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1.5rem;
}

.hero__badge {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(211, 82%, 31%, 0.5);
  background: rgba(211, 82%, 31%, 0.15);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__title {
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero__title span:first-child {
  color: var(--gold);
}

.hero__subtitle {
  max-width: 32rem;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
  }
}

/* ===============================
   SEÇÃO SOBRE
   =============================== */

.about__content {
  display: grid;
  gap: 2.5rem;
}

.about__text p + p {
  margin-top: 1.2rem;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.about__stat-number {
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--gold);
  font-weight: 700;
}

.about__stat-label {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .about__content {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    align-items: center;
  }
}

/* ===============================
   SEÇÃO SERVIÇOS
   =============================== */

.services__icon {
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.services__title {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.services__description {
  font-size: 0.95rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.services__price {
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 700;
}

/* ===============================
   SEÇÃO CONTATO
   =============================== */

.contact__item-icon-wrapper {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 15px rgba(211, 82%, 31%, 0.3);
}

.contact__item-icon-svg {
  width: 1.8rem;
  height: 1.8rem;
  color: white;
}

.contact__item-title {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.contact__item-line {
  font-size: 0.9rem;
  color: var(--muted-foreground);
}

.contact__cta {
  margin-top: 4rem;
  text-align: center;
}

/* ===============================
   RODAPÉ
   =============================== */

.footer {
  padding: 2rem 0;
  background-color: var(--background);
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.footer__brand {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}

.footer__text {
  font-size: 0.85rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
  }
}


/* ===============================
   Botão de mais serviços
   =============================== */

.services__button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #2a2a2a, #333);
  color: #aaa;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  border: 1px solid #444;
  transition: all 0.3s ease;
}

.services__button:hover {
  background: linear-gradient(135deg, #333, #3a3a3a);
  color: var(--foreground);
  border-color: var(--gold);
  transform: translateY(-2px);
}




.servicos{
max-width:1200px;
margin:120px auto;
padding:0 20px;
}

.titulo-servicos{
color:hsl(211 82% 31%);
font-size:28px;
margin-bottom:5px;
}

.sub-servicos{
color:#999;
margin-bottom:30px;
}

.lista-servicos{
display:flex;
flex-direction:column;
gap:15px;
}

.servico{
  background: linear-gradient(135deg, #1a1a1a, #252525);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,0.05);
}

.servico-esq{
  display:flex;
  align-items:center;
  gap:20px;
}

.servico-info {
  display: flex;
  flex-direction: column;
}

.servico-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0;
}

.servico-desc {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  margin: 4px 0 0 0;
}

.servico-dir {
  display: flex;
  align-items: center;
}

.preco{
  color: var(--gold);
  font-weight:bold;
  font-size: 1.2rem;
}

.preco-destaque {
  font-size: 1.4rem;
}

.servico-destaque {
  background: linear-gradient(135deg, rgba(211, 82%, 31, 0.15), rgba(211, 82%, 31, 0.25));
  border: 1px solid rgba(211, 82%, 31, 0.4);
}

.icone {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 12px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 52px;
  box-shadow: 0 4px 12px rgba(211, 82%, 31%, 0.3);
}

.icone::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icone-corte::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M9.64 7.64c.23-.5.36-1.05.36-1.64 0-2.21-1.79-4-4-4S2 3.79 2 6s1.79 4 4 4c.59 0 1.14-.13 1.64-.36L10 12l-2.36 2.36C7.14 14.13 6.59 14 6 14c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4c0-.59-.13-1.14-.36-1.64L12 14l7 7h3v-1L9.64 7.64z'/%3E%3C/svg%3E");
}

.icone-barba::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5-9h10v2H7z'/%3E%3C/svg%3E");
}

.icone-luzes::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M7 2v11h3v9l7-12h-4l4-8z'/%3E%3C/svg%3E");
}

.icone-sobrancelha::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-2 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z'/%3E%3C/svg%3E");
}

.icone-combo::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z'/%3E%3C/svg%3E");
}

.tempo{
  color:#888;
}

.preco{
color:#27ae60;
font-weight:bold;
}

.tempo{
color:#888;
}

.seta{
  color:#888;
  font-size:22px;
}

/* ===============================
   ANIMAÇÕES JS
   =============================== */

/* Animação de entrada */
.animate-in {
  animation: slideIn 0.6s ease forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animação do hero */
.hero-animate {
  animation: heroFadeIn 1s ease forwards;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animação de hover nos serviços */
.servico {
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.servico:hover {
  box-shadow: 0 5px 20px rgba(39, 174, 96, 0.2);
}

/* Animação específica para o botão de adicionar foto */
#area-admin .btn {
  transition: all 0.3s ease;
}

#area-admin .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
}

/* Animação de hover nos cards */
.portfolio-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.portfolio-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Animação da navbar */
.navbar {
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

/* Animação dos botões */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

.btn:active::after {
  width: 200px;
  height: 200px;
}

/* Animação de foco nos inputs */
input:focus, button:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Animação de scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* Loading animation */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.loading {
  animation: pulse 1.5s infinite;
}