/* =========================================
   STUDIO BEAUTY – STUDIO DE BELEZA
   Stylesheet Principal
   ========================================= */

/* ---- RESET & BASE ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --vinho:       #0C8FA5;
  --vinho-dark:  #0A6E80;
  --vinho-light: #12A8C2;
  --dourado:     #C9A227;
  --dourado-light: #dbb84a;
  --branco:      #F8F8F8;
  --nude:        #FAF6F3;
  --texto:       #2c2c2c;
  --texto-claro: #6b6b6b;
  --sombra:      rgba(12,143,165,0.08);
  --sombra-md:   rgba(12,143,165,0.15);
  --radius:      16px;
  --radius-sm:   10px;
  --transition:  0.35s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--branco);
  color: var(--texto);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ---- TIPOGRAFIA ---- */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

em { font-style: italic; color: var(--vinho); }

.section-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--texto);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--texto-claro);
  max-width: 500px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* ---- LAYOUT ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 7rem 0;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--vinho);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(12,143,165,0.25);
}
.btn-primary:hover {
  background: var(--vinho-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(12,143,165,0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  border: 2px solid rgba(255,255,255,0.6);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 1.2rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(12, 143, 165, 0.95);
  backdrop-filter: blur(12px);
  padding: 0.7rem 0;
  box-shadow: 0 4px 30px rgba(12,143,165,0.3);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 1;
  transition: all var(--transition);
  cursor: pointer;
}

.nav-logo:hover {
  transform: scale(1.02);
  opacity: 0.9;
}

.nav-logo svg {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.nav-logo-img {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
  position: relative;
}
.navbar.scrolled .nav-links a { color: rgba(255, 255, 255, 0.95); }
.nav-links a:not(.btn-nav-whatsapp)::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--dourado);
  transition: width var(--transition);
}
.nav-links a:not(.btn-nav-whatsapp):hover::after { width: 100%; }
.nav-links a:not(.btn-nav-whatsapp):hover { color: var(--dourado); }

.btn-nav-whatsapp {
  background: var(--vinho);
  color: #fff !important;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 3px 14px rgba(12,143,165,0.3);
  transition: background var(--transition), transform var(--transition) !important;
}
.btn-nav-whatsapp:hover {
  background: var(--vinho-light) !important;
  transform: translateY(-1px) !important;
}
.navbar.scrolled .btn-nav-whatsapp { background: #fff; color: var(--vinho) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .hamburger span { background: #fff; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: linear-gradient(to right, #0A6E80 0%, #0C8FA5 55%, #12a8c2 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 15% 85%, rgba(0,0,0,0.15) 0%, transparent 50%);
  pointer-events: none;
}

/* Padrão decorativo sutil */
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -8%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  left: -3%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 0 0 55%;
  padding: 10rem 3rem 6rem 5vw;
  max-width: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: 1.2rem;
  line-height: 1.15;
}
.hero-title em { color: var(--dourado); font-style: italic; }

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.03em;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.8s ease;
}

.hero-image-wrapper:hover .hero-photo {
  transform: scale(1.04);
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #0C8FA5 0%,
    rgba(12,143,165,0.65) 28%,
    rgba(12,143,165,0.15) 55%,
    transparent 75%
  );
  pointer-events: none;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.3);
  border-bottom: 2px solid rgba(255,255,255,0.3);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(5px); }
}

/* =========================================
   SERVIÇOS
   ========================================= */
.servicos {
  background: var(--nude);
  position: relative;
}

.servicos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--dourado), transparent);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 0 0 1.6rem;
  text-align: left;
  box-shadow: 0 4px 24px var(--sombra);
  border: 1px solid rgba(201,162,39,0.12);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--vinho), var(--dourado));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px var(--sombra-md);
}
.service-card:hover::after { transform: scaleX(1); }

.service-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  margin-bottom: 1.1rem;
}

.service-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.32), rgba(0,0,0,0.04));
  pointer-events: none;
}

.service-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.service-card:hover .service-photo {
  transform: scale(1.06);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--vinho);
  margin: 0 1.2rem 0.6rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--texto-claro);
  line-height: 1.6;
  margin: 0 1.2rem;
}

/* =========================================
   SOBRE
   ========================================= */
.sobre {
  background: #fff;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.sobre-img-frame {
  position: relative;
}

.sobre-img-placeholder {
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--nude) 0%, #f0e8e8 100%);
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.6rem;
  border: 1px solid rgba(201,162,39,0.2);
  color: var(--texto-claro);
  font-size: 0.85rem;
}
.sobre-img-placeholder p {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--texto);
}
.sobre-img-placeholder span {
  font-size: 0.72rem;
  color: var(--dourado);
}

.sobre-decorator {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  border: 2px solid var(--dourado);
  border-radius: var(--radius);
  opacity: 0.2;
  z-index: -1;
}

.sobre-text .section-title { text-align: left; }

.sobre-paragraph {
  font-size: 1rem;
  color: var(--texto-claro);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.sobre-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: var(--nude);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201,162,39,0.1);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--vinho);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--texto-claro);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 2px solid currentColor;
  color: var(--vinho);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  opacity: 0;
  transition: opacity var(--transition);
  z-index: -1;
}

.social-icon:hover::before {
  opacity: 0.08;
}

.social-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.social-icon.whatsapp {
  color: #25D366;
  border-color: #25D366;
}

.social-icon.whatsapp:hover {
  color: #fff;
  background-color: #25D366;
  border-color: #25D366;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.social-icon.instagram {
  color: #E4405F;
  border-color: #E4405F;
}

.social-icon.instagram:hover {
  color: #fff;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 100%);
  border-color: #667eea;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(228, 64, 95, 0.25);
}

.social-label {
  display: none;
}

/* =========================================
   GALERIA
   ========================================= */
.galeria {
  background: var(--nude);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 1rem;
  margin-bottom: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: #e8ddd8;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ede0d9 0%, #ddd0cc 100%);
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-placeholder {
  transform: scale(1.05);
}

.gallery-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-photo {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,143,165,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.gallery-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--texto-claro);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.gallery-note svg { color: var(--vinho); flex-shrink: 0; }

/* =========================================
   DEPOIMENTOS
   ========================================= */
.depoimentos {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.depoimentos::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 20rem;
  color: var(--vinho);
  opacity: 0.03;
  position: absolute;
  top: -4rem;
  left: -2rem;
  line-height: 1;
  pointer-events: none;
}

.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.depo-card {
  background: var(--nude);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(201,162,39,0.12);
  box-shadow: 0 4px 20px var(--sombra);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.depo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px var(--sombra-md);
}

.depo-stars {
  color: var(--dourado);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.depo-text {
  font-size: 0.95rem;
  color: var(--texto-claro);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.depo-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.depo-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vinho), var(--vinho-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.depo-author strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--texto);
  margin-bottom: 0.15rem;
}
.depo-author span {
  font-size: 0.75rem;
  color: var(--texto-claro);
}

/* =========================================
   LOCALIZAÇÃO
   ========================================= */
.localizacao {
  background: var(--nude);
}

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
  align-items: start;
}

.loc-info {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.loc-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.loc-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(12,143,165,0.1), rgba(12,143,165,0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vinho);
  flex-shrink: 0;
  border: 1px solid rgba(12,143,165,0.12);
}

.loc-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--vinho);
  margin-bottom: 0.3rem;
}

.loc-item p, .loc-item a {
  font-size: 0.9rem;
  color: var(--texto-claro);
  line-height: 1.6;
}
.loc-item a:hover { color: var(--vinho); }

.loc-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px var(--sombra-md);
  border: 1px solid rgba(201,162,39,0.15);
}
.loc-map iframe {
  display: block;
  border-radius: var(--radius);
}

/* =========================================
   CTA FINAL
   ========================================= */
.cta-section {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
  background: var(--vinho);
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201,162,39,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(0,0,0,0.2) 0%, transparent 50%);
  pointer-events: none;
}

/* Ornamento decorativo */
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -100px;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 60px solid rgba(255,255,255,0.03);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 1rem;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.cta-title em { color: var(--dourado); }

.cta-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--dourado);
  color: #fff;
  padding: 1.1rem 2.8rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 6px 24px rgba(201,162,39,0.35);
}
.btn-cta:hover {
  background: var(--dourado-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(201,162,39,0.45);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: #062f36;
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand .logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 0.1rem;
}
.footer-brand .logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dourado);
  display: block;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 260px;
}

.footer-links h4, .footer-contact h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--dourado);
  margin-bottom: 1.2rem;
  font-family: 'Poppins', sans-serif;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--dourado); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-social:hover { color: var(--dourado); }
.footer-social svg { flex-shrink: 0; }

.footer-addr {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.825rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-top: 0.5rem;
}
.footer-addr svg { flex-shrink: 0; margin-top: 3px; }

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* =========================================
   WHATSAPP FLUTUANTE
   ========================================= */
.whatsapp-float {
  position: fixed;
  bottom: 2.2rem;
  right: 2.2rem;
  z-index: 998;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: pulse-wa 2.5s ease-out infinite;
}
@keyframes pulse-wa {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* =========================================
   RESPONSIVIDADE
   ========================================= */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { flex: 0 0 60%; }
  .hero-image-wrapper { flex: 0 0 40%; }
}

@media (max-width: 768px) {
  .section-padding { padding: 5rem 0; }

  .navbar.scrolled {
    background: rgba(10, 110, 128, 0.96);
    box-shadow: 0 2px 20px rgba(0,0,0,0.18);
  }
  .navbar.scrolled .hamburger span { background: #fff; }

  /* Navbar mobile */
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--vinho-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 998;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; color: #fff !important; }
  .btn-nav-whatsapp { font-size: 1rem !important; padding: 0.7rem 2rem !important; }
  .nav-logo-img { width: 130px; }

  /* Hero mobile */
  .hero {
    min-height: 100svh;
    position: relative;
  }
  .hero-content {
    position: relative;
    z-index: 3;
    flex: none;
    width: 100%;
    max-width: 38.75rem;
    padding: 8.5rem 1.2rem 3rem 1.2rem;
    text-align: left;
  }
  .hero-buttons { justify-content: flex-start; }
  .hero-image-wrapper {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
  }
  .hero-photo {
    width: 100%;
    height: 100%;
    object-position: center top;
  }
  .hero-img-overlay {
    background: linear-gradient(
      to right,
      #0C8FA5 0%,
      rgba(12,143,165,0.78) 38%,
      rgba(12,143,165,0.32) 65%,
      transparent 100%
    );
  }

  /* Serviços */
  .cards-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  /* Sobre */
  .sobre-grid { grid-template-columns: 1fr; gap: 3rem; }
  .sobre-text .section-title { text-align: center; }
  .sobre-text .section-eyebrow { text-align: center; }
  .sobre-stats { gap: 1rem; }
  .social-links { justify-content: center; gap: 1rem; }
  .social-icon { padding: 0.7rem 1rem; font-size: 0.9rem; }

  /* Galeria */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 11.25rem;
  }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 2; }

  /* Depoimentos */
  .depo-grid { grid-template-columns: 1fr; }

  /* Localização */
  .loc-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-brand p { max-width: 100%; }

  /* CTA */
  .cta-title br { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero { min-height: 92svh; }
  .hero-content {
    padding: 8rem 0.9rem 2.6rem 0.9rem;
  }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .sobre-stats { flex-direction: column; align-items: center; gap: 1.5rem; }
  .stat { border-bottom: 1px solid rgba(201,162,39,0.15); padding-bottom: 1rem; width: 100%; }
  .stat:last-child { border-bottom: none; padding-bottom: 0; }
  .social-links { flex-direction: column; gap: 0.8rem; width: 100%; }
  .social-icon { width: 100%; justify-content: center; }
}
