/*
Theme Name: Joci Freitas - Manicure Russa
Theme URI: https://jocifreitas.com
Author: Joci Freitas
Description: Landing page profissional para Joci Freitas — Especialista em Manicure Russa & Esmaltamento em Gel
Version: 1.0
Text Domain: joci-freitas
*/

/* ===================== RESET & BASE ===================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Lato:wght@300;400;700&display=swap');

:root {
  --bg: hsl(30, 25%, 97%);
  --fg: hsl(20, 10%, 15%);
  --card: hsl(30, 30%, 96%);
  --primary: hsl(350, 35%, 72%);
  --primary-fg: hsl(0, 0%, 100%);
  --secondary: hsl(30, 30%, 92%);
  --muted: hsl(20, 8%, 50%);
  --accent: hsl(30, 40%, 88%);
  --border: hsl(30, 20%, 88%);
  --hero-overlay: linear-gradient(135deg, hsla(30, 25%, 97%, 0.85), hsla(350, 35%, 72%, 0.3));
  --section-gradient: linear-gradient(180deg, hsl(30, 25%, 97%) 0%, hsl(30, 30%, 94%) 100%);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
  --radius: 1rem;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

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

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all 0.3s ease;
  padding: 1rem 0;
}
.navbar.scrolled {
  background: hsla(30, 25%, 97%, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}
.navbar__links { display: flex; gap: 2rem; }
.navbar__links a {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: hsla(20, 10%, 15%, 0.7);
  transition: color 0.3s;
}
.navbar__links a:hover { color: var(--primary); }

@media (max-width: 768px) {
  .navbar__links { display: none; }
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  max-width: 700px;
}
.hero__subtitle {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: hsla(20, 10%, 15%, 0.7);
  margin-bottom: 1rem;
}
.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero__desc {
  font-size: 1.1rem;
  font-weight: 500;
  color: hsla(20, 10%, 15%, 0.7);
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-block;
  padding: 1rem 3rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}
.btn--primary {
  background: var(--primary);
  color: var(--primary-fg);
  box-shadow: 0 4px 20px hsla(350, 35%, 72%, 0.3);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px hsla(350, 35%, 72%, 0.4);
}
.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}
.btn--outline:hover { background: var(--primary); color: var(--primary-fg); }

/* ===================== PROFESSIONAL SECTION ===================== */
.professional {
  padding: 6rem 0;
  background: var(--card);
}
.professional__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.professional__photo-wrap { position: relative; display: flex; justify-content: center; }
.professional__photo {
  width: 320px;
  height: 384px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.professional__badge {
  position: absolute;
  bottom: -1rem;
  right: calc(50% - 200px);
  background: var(--primary);
  color: var(--primary-fg);
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.professional__badge strong { font-family: var(--font-display); font-size: 1.15rem; display: block; }
.professional__badge span { font-size: 0.7rem; opacity: 0.9; }
.professional__label {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}
.professional__name {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.professional__text { color: var(--muted); margin-bottom: 1rem; }
.professional__text strong { color: var(--fg); }
.professional__highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.professional__highlight {
  text-align: center;
  background: var(--bg);
  border-radius: 0.75rem;
  padding: 1rem;
}
.professional__highlight-icon {
  width: 24px; height: 24px;
  margin: 0 auto 0.5rem;
  color: var(--primary);
}
.professional__highlight h4 { font-size: 0.85rem; font-weight: 600; }
.professional__highlight p { font-size: 0.7rem; color: var(--muted); margin-top: 0.25rem; }

@media (max-width: 768px) {
  .professional__grid { grid-template-columns: 1fr; text-align: center; }
  .professional__badge { right: calc(50% - 180px); }
}

/* ===================== ABOUT SECTION ===================== */
.about {
  padding: 6rem 0;
  background: var(--section-gradient);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about__img {
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.about__label {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}
.about__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.about__text { color: var(--muted); margin-bottom: 1rem; }

@media (max-width: 768px) {
  .about__grid { grid-template-columns: 1fr; }
}

/* ===================== SERVICES ===================== */
.services { padding: 6rem 0; }
.services__header { text-align: center; margin-bottom: 4rem; }
.services__label {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}
.services__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
}
.services__desc { color: var(--muted); max-width: 500px; margin: 0 auto; }
.services__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.services__card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s;
}
.services__card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.services__card-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: hsla(350, 35%, 72%, 0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--primary);
}
.services__card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.services__card p { font-size: 0.85rem; color: var(--muted); }

.services__price {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.services__price-label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.services__price-value {
  font-family: var(--font-display);
  font-size: 3.75rem;
  font-weight: 700;
}
.services__price-value span { font-size: 1.5rem; color: var(--muted); font-weight: 400; }
.services__price-desc { font-size: 0.85rem; color: var(--muted); margin-top: 0.5rem; }

@media (max-width: 768px) {
  .services__cards { grid-template-columns: 1fr; }
}

/* ===================== GALLERY ===================== */
.gallery { padding: 6rem 0; background: var(--section-gradient); }
.gallery__header { text-align: center; margin-bottom: 4rem; }
.gallery__label {
  font-size: 0.8rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 1rem;
}
.gallery__title { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 600; }
.gallery__desc { color: var(--muted); max-width: 400px; margin: 1rem auto 0; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.gallery__item {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.gallery__item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.7s;
}
.gallery__item:hover img { transform: scale(1.05); }

@media (max-width: 768px) {
  .gallery__grid { grid-template-columns: 1fr; }
}

/* ===================== BOOKING ===================== */
.booking { padding: 3.5rem 0 6rem; }
.booking__header { text-align: center; margin-bottom: 3rem; }
.booking__label {
  font-size: 0.8rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 1rem;
}
.booking__title { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 600; margin-bottom: 1rem; }
.booking__desc { color: var(--muted); max-width: 500px; margin: 0 auto; }

.booking__card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.booking__notice {
  display: flex; align-items: center; justify-content: center;
  gap: 0.75rem; color: var(--muted);
  font-size: 0.85rem; margin-bottom: 2rem;
}
.booking__cta {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  background: hsla(30, 25%, 97%, 0.5);
  margin-bottom: 2rem;
}
.booking__cta p { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.5rem; }
.booking__schedule {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.booking__day {
  background: var(--bg);
  border-radius: 0.5rem;
  padding: 0.75rem;
}
.booking__day-name {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.booking__day-time {
  font-family: var(--font-display);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .booking__schedule { grid-template-columns: repeat(2, 1fr); }
}

/* ===================== FOOTER ===================== */
.footer {
  padding: 3rem 0;
  background: var(--section-gradient);
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.footer__tagline { font-size: 0.85rem; color: var(--muted); margin-bottom: 1rem; }
.footer__social {
  display: flex; justify-content: center; gap: 1rem; margin-bottom: 1rem;
}
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: hsla(350, 35%, 72%, 0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  transition: background 0.3s;
}
.footer__social a:hover { background: hsla(350, 35%, 72%, 0.2); }
.footer__copy { font-size: 0.7rem; color: hsla(20, 8%, 50%, 0.6); }

/* ===================== MOBILE WIDTH FIX ===================== */

@media (max-width:768px){

.booking__desc{
max-width:100%;
padding-left:10px;
padding-right:10px;
}

.booking__card{
max-width:100%;
padding:2rem 1.2rem;
}

.booking__cta{
padding:1.5rem;
}

.booking__schedule{
gap:0.75rem;
}

@media (max-width:768px){

.booking__title{
font-size:2rem;
}

.btn{
width:100%;
}


