/* ============================================
   Laura Pinto — Nail Designer
   Design System & Complete Styles
   ============================================ */

/* ========== CSS CUSTOM PROPERTIES ========== */
:root {
  /* Brand Colors */
  --navy-principal: #07214B;
  --navy-medio: #1A3356;
  --azul-sombra: #455777;
  --slate-blue: #7991AC;
  --azul-nevoa: #ACB8C9;
  --branco-azulado: #D6DCE4;
  --white: #F8FAFC;
  --pure-white: #FFFFFF;

  /* Semantic */
  --text-primary: var(--navy-principal);
  --text-secondary: var(--azul-sombra);
  --text-muted: var(--slate-blue);
  --bg-primary: var(--white);
  --bg-secondary: var(--branco-azulado);
  --bg-card: var(--pure-white);
  --border-color: var(--azul-nevoa);
  --accent: var(--navy-principal);

  /* WhatsApp */
  --whatsapp-green: #25D366;
  --whatsapp-dark: #128C7E;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Sizing */
  --container-max: 1200px;
  --header-height: 80px;
  --section-padding: 100px;
  --border-radius: 16px;
  --border-radius-sm: 8px;
  --border-radius-lg: 24px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(7, 33, 75, 0.06);
  --shadow-md: 0 4px 20px rgba(7, 33, 75, 0.08);
  --shadow-lg: 0 8px 40px rgba(7, 33, 75, 0.12);
  --shadow-xl: 0 16px 60px rgba(7, 33, 75, 0.16);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

/* ========== UTILITIES ========== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-padding) 0;
}

/* ========== ANIMATION CLASSES ========== */
[data-animate] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-up"] {
  transform: translateY(40px);
}

[data-animate="fade-down"] {
  transform: translateY(-40px);
}

[data-animate="fade-right"] {
  transform: translateX(-40px);
}

[data-animate="fade-left"] {
  transform: translateX(40px);
}

[data-animate].animated {
  opacity: 1;
  transform: translate(0, 0);
}

/* ========== SECTION HEADERS ========== */
.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--slate-blue);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--navy-principal);
  margin-bottom: 16px;
}

.section__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.section__divider::before,
.section__divider::after {
  content: '';
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--azul-nevoa), transparent);
}

.section__divider-diamond {
  color: var(--slate-blue);
  font-size: 0.75rem;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn--primary {
  background: var(--pure-white);
  color: var(--navy-principal);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.35);
}

.btn--whatsapp-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 48px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-dark));
  color: var(--pure-white);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.35);
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn--whatsapp-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.btn--whatsapp-large:hover::before {
  left: 100%;
}

.btn--whatsapp-large:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.45);
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: all var(--transition-normal);
  background: transparent;
}

.header--scrolled {
  background: rgba(7, 33, 75, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(7, 33, 75, 0.2);
  height: 70px;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* Logo do cabeçalho: só no mobile (desktop tem as opções centralizadas, sem logo).
   No mobile aparece ao rolar (no topo o hero já tem a logo grande). */
.header__logo {
  display: none;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.header--scrolled .header__logo {
  opacity: 1;
  visibility: visible;
}

.header__logo-img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: height var(--transition-normal);
}

.header--scrolled .header__logo-img {
  height: 40px;
}

/* Logo dentro do menu (só no mobile) */
.header__nav-logo {
  display: none;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__nav-link {
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  transition: all var(--transition-fast);
  position: relative;
}

.header__nav-link:hover,
.header__nav-link.active {
  color: var(--pure-white);
  background: rgba(255, 255, 255, 0.1);
}

.header__nav-link--cta {
  background: rgba(255, 255, 255, 0.15);
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.header__nav-link--cta:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Burger */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.header__burger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--pure-white);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.header__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.header__burger.active span:nth-child(2) {
  opacity: 0;
}

.header__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #040e1f 0%, #071831 45%, #0b2247 100%);
  overflow: hidden;
  text-align: center;
  padding: 110px 24px 92px;
}

/* Nuvens/nebulosa deslizando continuamente para UM lado (sem "pulo" no loop).
   Camada 2x de largura com a imagem repetida (repeat-x); ao transladar exatamente
   uma imagem (-50% da camada) o padrão coincide → loop perfeito e suave (GPU).
   JPEG pré-renderizado funciona em todo dispositivo, inclusive iOS. */
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: calc(100% + 3600px);
  z-index: 0;
  /* Imagem espelhada (seamless): repete sem emenda. Desliza uma tile inteira
     (3600px) = padrão idêntico → loop contínuo, sem corte, e suave (GPU). */
  background: url("assets/hero-bg.jpg") repeat-x;
  background-size: 3600px 100%;
  pointer-events: none;
  will-change: transform;
  animation: heroDrift 65s linear infinite;
}

@keyframes heroDrift {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-3600px, 0, 0); }
}

/* Céu estrelado — dois campos de estrelas que cintilam em ritmos opostos */
.hero__stars {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-repeat: no-repeat;
  pointer-events: none;
  will-change: opacity;
}

.hero__stars--a {
  background-image: url("assets/hero-stars.svg");
  background-position: center;
  background-size: cover;
  animation: starTwinkleA 5.5s ease-in-out infinite;
}

.hero__stars--b {
  background-image: url("assets/hero-stars.svg");
  background-position: 35% 25%;
  background-size: 138%;
  animation: starTwinkleB 4s ease-in-out infinite;
}

@keyframes starTwinkleA {
  0%, 100% { opacity: 0.55; }
  50%      { opacity: 1; }
}

@keyframes starTwinkleB {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.5; }
}

/* Decorative overlay pattern */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(121, 145, 172, 0.12) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 20%, rgba(172, 184, 201, 0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 80%, rgba(69, 87, 119, 0.1) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

/* Sparkles */
.hero__sparkle {
  position: absolute;
  z-index: 3;
  color: rgba(214, 220, 228, 0.55);
  font-size: 1rem;
  animation: sparkle-pulse 3s ease-in-out infinite;
  pointer-events: none;
}

.hero__sparkle--1 { top: 15%; left: 10%; animation-delay: 0s; font-size: 1.2rem; }
.hero__sparkle--2 { top: 25%; right: 15%; animation-delay: 0.6s; font-size: 0.8rem; }
.hero__sparkle--3 { bottom: 30%; left: 20%; animation-delay: 1.2s; }
.hero__sparkle--4 { top: 40%; right: 8%; animation-delay: 1.8s; font-size: 1.4rem; }
.hero__sparkle--5 { bottom: 20%; right: 25%; animation-delay: 2.4s; font-size: 0.9rem; }
.hero__sparkle--6 { top: 55%; right: 20%; animation-delay: 3s; font-size: 1.1rem; }
.hero__sparkle--7 { top: 10%; right: 32%; animation-delay: 1.5s; font-size: 0.85rem; }
.hero__sparkle--8 { bottom: 12%; left: 40%; animation-delay: 2.1s; font-size: 1rem; }
.hero__sparkle--9 { top: 48%; left: 6%; animation-delay: 0.9s; font-size: 0.75rem; }

@keyframes sparkle-pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

.hero__content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-left: 0;
  padding-right: 0;
  max-width: 100%;
}

.hero__logo-wrapper {
  margin-bottom: 4px;
}

.hero__logo {
  height: clamp(210px, 36vh, 280px);
  width: auto;
  filter: brightness(0) invert(1)
          drop-shadow(0 10px 30px rgba(0, 0, 0, 0.45))
          drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: clamp(0.62rem, 2.9vw, 1.3rem);
  font-weight: 300;
  color: rgba(214, 220, 228, 0.9);
  letter-spacing: 1.2px;
  white-space: nowrap;
}

.hero__location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--azul-nevoa);
  font-weight: 400;
}

.hero__location svg {
  opacity: 0.7;
}

.hero__cta {
  margin-top: 6px;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(172, 184, 201, 0.5);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Em telas muito baixas não há espaço para o indicador sem encostar no botão */
@media (max-height: 680px) {
  .hero__scroll-indicator {
    display: none;
  }
}

/* ========== SOBRE ========== */
.sobre {
  background: var(--bg-primary);
}

.sobre__content {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.sobre__image-wrapper {
  position: relative;
}

/* Foto real da Laura — cobre o placeholder quando o arquivo existe.
   Sem o arquivo, o onerror remove a <img> e o "Foto em breve" aparece. */
.sobre__img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.sobre__image-placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--branco-azulado), var(--azul-nevoa));
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--azul-sombra);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.sobre__image-placeholder::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--navy-principal), var(--slate-blue), var(--azul-nevoa));
  border-radius: inherit;
  z-index: -1;
  opacity: 0.5;
}

.sobre__image-placeholder svg {
  opacity: 0.5;
}

.sobre__image-placeholder span {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.6;
}

.sobre__name {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy-principal);
  margin-bottom: 6px;
  line-height: 1.15;
}

.sobre__role {
  font-size: 1rem;
  font-weight: 500;
  color: var(--slate-blue);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.sobre__description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.sobre__stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--branco-azulado);
}

.sobre__stat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.sobre__stat-icon {
  color: var(--navy-principal);
  font-size: 0.7rem;
}

/* ========== SERVIÇOS ========== */
.servicos {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--branco-azulado) 100%);
}

.servicos__grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 20px;
}

.servico-card {
  flex: 1 1 0;
  min-width: 0;
  background: var(--pure-white);
  border-radius: var(--border-radius);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(172, 184, 201, 0.2);
}

.servico-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(7, 33, 75, 0.15);
}

.servico-card__accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy-principal), var(--slate-blue));
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.servico-card:hover .servico-card__accent {
  transform: scaleX(1);
}

.servico-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--branco-azulado), rgba(172, 184, 201, 0.3));
  color: var(--navy-principal);
  margin-bottom: 24px;
  transition: all var(--transition-normal);
}

.servico-card:hover .servico-card__icon {
  background: linear-gradient(135deg, var(--navy-principal), var(--azul-sombra));
  color: var(--pure-white);
  transform: scale(1.1);
}

.servico-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-principal);
  margin-bottom: 12px;
}

.servico-card__description {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========== PORTFÓLIO ========== */
.portfolio {
  background: var(--branco-azulado);
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio__item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.portfolio__item:hover {
  transform: translateY(-6px);
}

/* Foto real do portfólio — cobre o placeholder quando o arquivo existe.
   Se o arquivo não existir ainda, o onerror remove a <img> e o "Em breve" aparece. */
.portfolio__img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-slow), box-shadow var(--transition-normal);
}

.portfolio__item:hover .portfolio__img {
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}

.portfolio__placeholder {
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--pure-white), var(--azul-nevoa));
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: 2px dashed var(--azul-nevoa);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.portfolio__placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(7, 33, 75, 0) 0%, 
    rgba(7, 33, 75, 0.03) 100%);
  transition: all var(--transition-normal);
}

.portfolio__item:hover .portfolio__placeholder {
  border-color: var(--slate-blue);
  box-shadow: var(--shadow-lg);
}

.portfolio__item:hover .portfolio__placeholder::before {
  background: linear-gradient(135deg, 
    rgba(7, 33, 75, 0) 0%, 
    rgba(7, 33, 75, 0.06) 100%);
}

.portfolio__placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--slate-blue);
  transition: all var(--transition-normal);
}

.portfolio__placeholder-inner svg {
  opacity: 0.4;
  transition: all var(--transition-normal);
}

.portfolio__item:hover .portfolio__placeholder-inner svg {
  opacity: 0.6;
  transform: scale(1.05);
}

.portfolio__placeholder-inner span {
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.6;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ========== DEPOIMENTOS ========== */
.depoimentos {
  background: linear-gradient(180deg, var(--branco-azulado) 0%, var(--bg-primary) 100%);
}

.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.depoimento-card {
  display: flex;
  flex-direction: column;
  background: var(--pure-white);
  border-radius: var(--border-radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  border: 1px solid rgba(172, 184, 201, 0.15);
}

.depoimento-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.depoimento-card__quote {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--navy-principal);
}

.depoimento-card__stars {
  color: #F4B942;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.depoimento-card__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.depoimento-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  margin-top: auto;
  border-top: 1px solid var(--branco-azulado);
}

.depoimento-card__avatar {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-principal), var(--azul-sombra));
  color: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
}

/* Foto real da cliente — cobre a letra quando o arquivo existe.
   Sem o arquivo, o onerror remove a <img> e a letra aparece. */
.depoimento-card__avatar-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.depoimento-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-principal);
}

.depoimento-card__service {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ========== CONTATO ========== */
.contato {
  background: linear-gradient(160deg, var(--navy-principal) 0%, var(--navy-medio) 50%, var(--azul-sombra) 100%);
  color: var(--pure-white);
  position: relative;
  overflow: hidden;
}

.contato::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(121, 145, 172, 0.1) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(172, 184, 201, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.contato .section__label {
  color: var(--azul-nevoa);
}

.contato .section__title {
  color: var(--pure-white);
}

.contato .section__divider::before,
.contato .section__divider::after {
  background: linear-gradient(to right, transparent, rgba(172, 184, 201, 0.3), transparent);
}

.contato .section__divider-diamond {
  color: var(--azul-nevoa);
}

.contato .section__subtitle {
  color: rgba(214, 220, 228, 0.8);
}

.contato__content {
  position: relative;
  z-index: 1;
}

.contato__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.contato__card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contato__card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.contato__card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  transition: all var(--transition-normal);
}

.contato__card--whatsapp .contato__card-icon {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
}

.contato__card--whatsapp:hover .contato__card-icon {
  background: rgba(37, 211, 102, 0.25);
  transform: scale(1.1);
}

.contato__card--instagram .contato__card-icon {
  background: rgba(225, 48, 108, 0.15);
  color: #E1306C;
}

.contato__card--instagram:hover .contato__card-icon {
  background: rgba(225, 48, 108, 0.25);
  transform: scale(1.1);
}

.contato__card--location .contato__card-icon {
  background: rgba(172, 184, 201, 0.15);
  color: var(--azul-nevoa);
}

.contato__card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
}

.contato__card-info {
  font-size: 0.95rem;
  color: rgba(214, 220, 228, 0.9);
}

.contato__card-action {
  font-size: 0.8rem;
  color: var(--azul-nevoa);
  letter-spacing: 1px;
  transition: color var(--transition-fast);
}

.contato__card:hover .contato__card-action {
  color: var(--pure-white);
}

/* ===== Horário & Formas de Pagamento ===== */
.contato__info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
}

.contato__info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  min-width: 280px;
  transition: all var(--transition-normal);
}

.contato__info-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.contato__info-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(172, 184, 201, 0.15);
  color: var(--azul-nevoa);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contato__info-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--pure-white);
  margin-bottom: 2px;
}

.contato__info-text {
  font-size: 0.9rem;
  color: rgba(214, 220, 228, 0.85);
}

/* Selos de formas de pagamento */
.contato__pay-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.contato__pay-badge {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(172, 184, 201, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(214, 220, 228, 0.95);
}

/* ===== Mapa do Studio ===== */
.contato__map {
  margin-bottom: 48px;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
}

.contato__map-frame {
  position: relative;
  line-height: 0;
}

.contato__map-frame iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
  filter: saturate(0.9) contrast(1.02);
}

.contato__map-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  background: rgba(7, 33, 75, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contato__map-address {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(214, 220, 228, 0.9);
}

.contato__map-address svg {
  flex-shrink: 0;
  color: var(--azul-nevoa);
}

.contato__map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--pure-white);
  color: var(--navy-principal);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.contato__map-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.contato__map-link svg {
  transition: transform var(--transition-fast);
}

.contato__map-link:hover svg {
  transform: translateX(3px);
}

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

/* ========== FOOTER ========== */
.footer {
  background: var(--navy-principal);
  color: rgba(172, 184, 201, 0.7);
  padding: 48px 0 32px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer__logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.footer__tagline {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.6;
}

.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(172, 184, 201, 0.6);
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--pure-white);
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--azul-nevoa);
  transition: all var(--transition-normal);
}

.footer__social a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--pure-white);
  transform: translateY(-3px);
}

.footer__copy {
  font-size: 0.8rem;
  opacity: 0.5;
  padding-top: 24px;
  border-top: 1px solid rgba(172, 184, 201, 0.1);
  width: 100%;
  text-align: center;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-dark));
  color: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition-normal);
  opacity: 0;
  transform: scale(0.8) translateY(20px);
  pointer-events: none;
}

.whatsapp-float.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: all;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.3);
  animation: whatsapp-pulse 2s ease-in-out infinite;
  z-index: -1;
}

@keyframes whatsapp-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0; }
}

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 32px;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--azul-sombra), var(--navy-principal));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(7, 33, 75, 0.35);
  z-index: 999;
  transition: all var(--transition-normal);
  opacity: 0;
  transform: scale(0.8) translateY(20px);
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 28px rgba(7, 33, 75, 0.45);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .servicos__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .depoimento-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
  }

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

  .contato__card--location {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 70px;
    --header-height: 70px;
  }

  /* Header Mobile */
  .header__burger {
    display: flex;
  }

  /* No mobile: logo à esquerda (aparece ao rolar) + burger à direita */
  .header__inner {
    justify-content: space-between;
  }

  .header__logo {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 82%;
    max-width: 320px;
    height: 100vh;
    background: rgba(6, 22, 47, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 84px 26px 32px;
    transition: right var(--transition-normal);
    box-shadow: -12px 0 44px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
  }

  .header__nav.active {
    right: 0;
  }

  .header__nav-logo {
    display: block;
    height: 92px;
    width: auto;
    filter: brightness(0) invert(1);
    margin: 0 auto 24px;
    opacity: 0.95;
  }

  .header__nav-list {
    flex-direction: column;
    gap: 2px;
    align-items: stretch;
    width: 100%;
  }

  .header__nav-link {
    display: block;
    width: 100%;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 15px 16px;
    text-align: left;
    color: rgba(255, 255, 255, 0.82);
    background: transparent;
    border: none;
    border-radius: 10px;
  }

  .header__nav-link:hover,
  .header__nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }

  .header__nav-link--cta {
    margin-top: 22px;
    background: #fff;
    color: var(--navy-principal);
    text-align: center;
    font-weight: 600;
    border: none;
    border-radius: 50px;
  }

  .header__nav-link--cta:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--navy-principal);
  }

  /* Hero Mobile */
  .hero {
    padding: 96px 20px 96px;
  }

  .hero__content {
    gap: 22px;
  }

  .hero__logo {
    height: 230px;
  }

  /* O PNG da logo tem espaço transparente na base; margem negativa aproxima
     a tagline do desenho visível para um espaçamento confortável. */
  .hero__logo-wrapper {
    margin-bottom: -30px;
  }

  /* Sobre Mobile */
  .sobre__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sobre__image-wrapper {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
  }

  /* Foto na horizontal (paisagem) no mobile */
  .sobre__image-placeholder {
    aspect-ratio: 4 / 3;
  }

  .sobre__text {
    text-align: center;
  }

  .sobre__stats {
    align-items: center;
  }

  /* Serviços — empilha no mobile (5 numa linha só ficaria pequeno demais) */
  .servicos__grid {
    flex-wrap: wrap;
    max-width: 400px;
    margin: 0 auto;
  }

  .servico-card {
    flex-basis: 100%;
    max-width: none;
  }

  /* Portfolio Mobile */
  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Depoimentos Mobile */
  .depoimentos__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .depoimento-card:last-child {
    max-width: none;
  }

  /* Contato Mobile */
  .contato__cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 40px;
  }

  .contato__card--location {
    max-width: none;
  }

  .contato__info {
    flex-direction: column;
    align-items: center;
  }

  .contato__info-card {
    min-width: 0;
    width: 100%;
    max-width: 360px;
  }

  .contato__map-frame iframe {
    height: 300px;
  }

  .contato__map-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
  }

  .contato__map-address {
    font-size: 0.82rem;
  }

  .contato__map-link {
    align-self: stretch;
    justify-content: center;
  }

  .btn--whatsapp-large {
    padding: 16px 36px;
    font-size: 1rem;
  }

  /* Footer Mobile */
  .footer__links {
    gap: 16px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 56px;
  }

  .section__title {
    font-size: 1.75rem;
  }

  .hero__logo {
    height: 215px;
  }

  .portfolio__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .contato__card {
    padding: 28px 20px;
  }
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    transition: opacity 0.3s ease;
    transform: none;
  }

  .hero__bg,
  .hero__stars {
    animation: none;
  }
}
