/* ==========================================================================
   LVL Marmoraria - style.css (v2 profissional)
   Efeitos, transições e layout aprimorados
   ========================================================================== */

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

:root {
  /* Paleta */
  --primary-color: #1c1c1c;
  --primary-dark: #000000;
  --primary-light: #4a4a4a;
  --accent-color: #c8a76b;
  --text-dark: #222222;
  --text-light: #666666;
  --bg-light: #f6f6f3;
  --white: #ffffff;
  --gray: #d9cbbf;
  --gray-light: #fcf7f3;
  --gray-ultra-light: #efefef;
  --gold: #b08d57;

  /* Sombras */
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 14px 34px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 26px 64px rgba(0, 0, 0, 0.18);

  /* Curvas */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 0.25s ease;
  --t-base: 0.4s var(--ease-out);
  --t-slow: 0.7s var(--ease-out);
}

/* Barra de rolagem */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 6px;
  border: 2px solid #f1f1f1;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}
* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) #f1f1f1;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-dark);
}

::selection {
  background: var(--gold);
  color: #fff;
}

/* Acessibilidade */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
 * Layout e utilidades
 * ============================================ */
.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 12px;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.6rem;
  margin-bottom: 14px;
  color: var(--primary-dark);
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -14px;
  width: 64px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-header p {
  font-size: 1.08rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 20px auto 0;
}

/* ============================================
 * Botoes
 * ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s ease,
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent,
    rgba(255, 255, 255, 0.32),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.65s ease;
}

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

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-dark),
    var(--primary-color)
  );
  color: var(--white);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.34);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.75);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--white);
}

.btn-outline {
  background: var(--primary-dark);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.btn-outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ============================================
 * Reveal on scroll
 * ============================================ */
.js .reveal,
.js .reveal-left,
.js .reveal-right,
.js .reveal-zoom {
  opacity: 0;
  transform: translateY(48px);
  transition:
    opacity var(--t-slow),
    transform var(--t-slow);
  will-change: opacity, transform;
}

.js .reveal.reveal-left {
  transform: translateX(-64px);
}

.js .reveal.reveal-right {
  transform: translateX(64px);
}

.js .reveal.reveal-zoom {
  transform: scale(0.9);
}

.js .reveal.revealed,
.js .reveal-left.revealed,
.js .reveal-right.revealed,
.js .reveal-zoom.revealed {
  opacity: 1;
  transform: none;
}

/* ============================================
 * Preloader
 * ============================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.55s ease,
    visibility 0.55s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.preloader-inner img {
  width: 92px;
  height: auto;
  border-radius: 14px;
  animation: preloaderFloat 1.5s ease-in-out infinite;
}

.preloader-bar {
  width: 170px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.preloader-bar span {
  display: block;
  height: 100%;
  width: 40%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), #fff, var(--gold));
  animation: preloaderSlide 1.1s ease-in-out infinite;
}

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

@keyframes preloaderSlide {
  0% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(380%);
  }
}

/* ============================================
 * Header
 * ============================================ */
.header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
  transition:
    padding 0.35s var(--ease-out),
    box-shadow 0.35s ease;
}

.header.scrolled {
  padding: 10px 0;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

.header-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--primary-color), var(--gold));
  z-index: 2;
  border-radius: 0 3px 3px 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.logo-image {
  height: 52px;
  width: auto;
  border-radius: 12px;
  transition: transform 0.35s var(--ease-spring);
}

.logo:hover .logo-image {
  transform: scale(1.06) rotate(-2deg);
}

.logo-text h1 {
  font-size: 1.7rem;
  color: var(--primary-color);
  margin: 0;
  line-height: 1;
  transition: color 0.3s ease;
}

.logo-text span {
  font-size: 0.68rem;
  color: var(--text-light);
  display: block;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.logo-text a:hover h1 {
  color: var(--gold);
}

/* Navegacao */
.nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav li {
  position: relative;
  margin: 0 6px;
  opacity: 0;
  transform: translateY(-12px);
  animation: navDropIn 0.6s var(--ease-out) forwards;
  animation-delay: calc(0.06s * (var(--nav-i, 0)));
}

.nav li:nth-child(1) {
  --nav-i: 0;
}
.nav li:nth-child(2) {
  --nav-i: 1;
}
.nav li:nth-child(3) {
  --nav-i: 2;
}
.nav li:nth-child(4) {
  --nav-i: 3;
}

.nav a {
  padding: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}

.nav a:hover,
.nav a.active {
  color: var(--primary-color);
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}

/* Dropdown desktop */
.dropdown-toggle i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: block;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.3s ease,
    transform 0.35s var(--ease-out),
    visibility 0.3s ease;
  z-index: 1001;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 0.35s ease var(--d, 0s),
    transform 0.35s ease var(--d, 0s);
}

.dropdown:hover .dropdown-menu li {
  opacity: 1;
  transform: none;
}

.dropdown:hover .dropdown-menu li:nth-child(1) {
  --d: 0.05s;
}
.dropdown:hover .dropdown-menu li:nth-child(2) {
  --d: 0.12s;
}
.dropdown:hover .dropdown-menu li:nth-child(3) {
  --d: 0.19s;
}
.dropdown:hover .dropdown-menu li:nth-child(4) {
  --d: 0.26s;
}

.dropdown-menu a {
  display: block;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text-dark);
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.dropdown-menu a:hover {
  background: var(--gray-light);
  color: var(--primary-color);
  transform: translateX(4px);
}

.header-cta {
  margin-left: 8px;
  flex-shrink: 0;
}

/* Hamburger */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 6px;
  position: relative;
  z-index: 1200;
}

.mobile-menu-toggle span {
  width: 26px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--text-dark);
  transition:
    transform 0.35s var(--ease-out),
    opacity 0.25s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-8px);
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Backdrop do menu mobile - fecha o menu ao clicar fora */
.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 990;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.menu-backdrop.show {
  opacity: 1;
  visibility: visible;
}

@keyframes navDropIn {
  to {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
 * Hero
 * ============================================ */
.hero {
  display: flex;
  align-items: center;
  min-height: 92vh;
  padding: 160px 0 80px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      1200px 600px at 85% -10%,
      rgba(176, 141, 87, 0.16),
      transparent 60%
    ),
    linear-gradient(135deg, var(--primary-dark) 0%, #242424 55%, #1a1a1a 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.055) 1px,
    transparent 1px
  );
  background-size: 34px 34px;
  opacity: 0.5;
  pointer-events: none;
}

.hero-content {
  flex: 1;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.76rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 22px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
}

.hero-eyebrow::before {
  background: linear-gradient(90deg, transparent, var(--gold));
}

.hero-eyebrow::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-content h1 {
  font-size: 3.8rem;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: 0.5px;
}

.hero-content h1 span {
  color: var(--accent-color);
  font-style: italic;
}

.hero-content p {
  font-size: 1.18rem;
  margin-bottom: 34px;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Imagem / carrossel do hero */
.hero-image {
  flex: 1;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.hero-image .carousel {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-image .carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  transition:
    opacity 0.9s ease,
    transform 1.6s var(--ease-out);
}

.hero-image .carousel-slide.active {
  position: relative;
  opacity: 1;
  transform: scale(1);
}

.hero-image .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* Setas do carrossel */
.hero-image .carousel-prev,
.hero-image .carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition:
    background 0.3s ease,
    transform 0.3s var(--ease-out),
    box-shadow 0.3s ease;
}

.hero-image .carousel-prev:hover,
.hero-image .carousel-next:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 24px rgba(176, 141, 87, 0.45);
}

.hero-image .carousel-prev {
  left: 18px;
}

.hero-image .carousel-next {
  right: 18px;
}

/* Dots do carrossel */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  padding: 0;
  transition:
    background 0.3s ease,
    width 0.3s ease,
    transform 0.3s var(--ease-spring);
}

.carousel-dot.active {
  background: var(--gold);
  width: 26px;
  border-radius: 999px;
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

/* ============================================
 * Sobre
 * ============================================ */
.sobre {
  padding: 110px 0;
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.sobre-destaque {
  text-align: center;
  margin: 10px 0 60px;
}

.sobre-destaque h3 {
  font-size: 2.3rem;
  color: var(--primary-dark);
  font-style: italic;
  font-weight: 500;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.5;
}

.sobre-texto-imagem {
  display: flex;
  align-items: center;
  gap: 70px;
}

.sobre-texto {
  flex: 1.1;
}

.sobre-texto p {
  margin-bottom: 24px;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.9;
}

.sobre-image {
  flex: 1;
  position: relative;
}

.sobre-image::before {
  content: "";
  position: absolute;
  inset: 24px -24px -24px 24px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  opacity: 0.55;
  transition: transform 0.5s var(--ease-out);
}

.sobre-image:hover::before {
  transform: translate(6px, -6px);
}

.sobre-image img {
  width: 100%;
  aspect-ratio: 3 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
  transition: transform 0.6s var(--ease-out);
}

.sobre-image:hover img {
  transform: scale(1.02);
}

/* Numeros / conquistas */
.stats {
  display: flex;
  gap: 44px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stat-item h4 {
  font-size: 2.5rem;
  font-family: "Playfair Display", serif;
  color: var(--primary-dark);
  line-height: 1;
}

.stat-item h4::after {
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  margin-top: 8px;
  background: var(--gold);
  border-radius: 2px;
}

.stat-item p {
  margin-top: 12px;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ============================================
 * Servicos
 * ============================================ */
.servicos {
  padding: 110px 0;
  background-color: var(--white);
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 28px;
}

.servico-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.45s var(--ease-out),
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.servico-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.servico-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

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

.servico-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(176, 141, 87, 0.14),
    rgba(28, 28, 28, 0.06)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.5s var(--ease-spring),
    background 0.4s ease;
}

.servico-card:hover .servico-icon {
  transform: rotateY(360deg) scale(1.06);
  background: linear-gradient(
    135deg,
    rgba(176, 141, 87, 0.25),
    rgba(28, 28, 28, 0.1)
  );
}

.servico-icon i {
  font-size: 2.1rem;
  color: var(--primary-color);
}

.servico-card h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.servico-card p {
  color: var(--text-light);
  font-size: 0.98rem;
}

/* ============================================
 * Projetos
 * ============================================ */
.projetos {
  padding: 110px 0;
  background-color: var(--bg-light);
}

.projetos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 50px;
}

/* Materiais em destaque: 5 por linha */
.materiais .projetos-grid {
  grid-template-columns: repeat(5, 1fr);
}

.projetos-grid > a {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.45s var(--ease-out),
    box-shadow 0.45s ease;
}

.projetos-grid > a:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.projeto-card {
  background: var(--white);
  height: 100%;
}

.projeto-image {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.projeto-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.projetos-grid > a:hover .projeto-image img {
  transform: scale(1.1);
}

.projeto-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.55));
  opacity: 0;
  transition: opacity 0.45s ease;
}

.projetos-grid > a:hover .projeto-image::after {
  opacity: 1;
}

.projeto-info {
  padding: 22px 24px 26px;
  background: var(--white);
}

.projeto-info h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.projeto-info p {
  color: var(--text-light);
  font-size: 0.95rem;
}

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

/* ============================================
 * Contato
 * ============================================ */
.contato {
  padding: 110px 0;
  background-color: var(--white);
}

.contato-content {
  display: flex;
  gap: 60px;
  align-items: stretch;
}

.contato-info {
  flex: 1;
  background: linear-gradient(150deg, var(--primary-dark), #242424);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.contato-info::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(176, 141, 87, 0.28),
    transparent 70%
  );
}

.contato-info h2 {
  color: var(--white);
  font-size: 2.1rem;
  margin-bottom: 16px;
}

.contato-info > p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 34px;
  line-height: 1.8;
}

.contato-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}

.contato-item i {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(176, 141, 87, 0.2);
  border: 1px solid rgba(176, 141, 87, 0.4);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition:
    background 0.3s ease,
    transform 0.4s var(--ease-spring);
}

.contato-item:hover i {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.1);
}

.contato-item h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.contato-item p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.contato-form {
  flex: 1.15;
  background: var(--gray-light);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px 18px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-sm);
  font-family: "Montserrat", sans-serif;
  font-size: 0.98rem;
  color: var(--text-dark);
  background: var(--white);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
  border-color: rgba(0, 0, 0, 0.22);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(176, 141, 87, 0.15);
}

.form-group select {
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="%231c1c1c" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 12px;
  padding-right: 42px;
  cursor: pointer;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
  opacity: 0.75;
}

.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
  border-color: #e0514f;
}

.form-group.has-error input:focus,
.form-group.has-error textarea:focus,
.form-group.has-error select:focus {
  box-shadow: 0 0 0 4px rgba(224, 81, 79, 0.15);
}

.form-error {
  display: block;
  color: #d9433f;
  font-size: 0.8rem;
  margin-top: 6px;
  animation: shake 0.4s ease;
}

@keyframes shake {
  20%,
  60% {
    transform: translateX(-4px);
  }
  40%,
  80% {
    transform: translateX(4px);
  }
}

.contato-form .btn {
  width: 100%;
}

/* ============================================
 * Galeria
 * ============================================ */
.galeria {
  padding: 110px 0 90px;
  background-color: var(--white);
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
  margin-bottom: 20px;
}

.galeria-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
  transition:
    opacity 0.45s ease,
    transform 0.45s var(--ease-out),
    box-shadow 0.45s ease;
}

.galeria-item:hover {
  box-shadow: var(--shadow-md);
}

.galeria-item.hide {
  opacity: 0;
  transform: scale(0.86);
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.galeria-item:hover img {
  transform: scale(1.09);
}

.galeria-overlay {
  position: absolute;
  inset: 0;
  padding: 22px;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.72));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.galeria-item:hover .galeria-overlay {
  opacity: 1;
  transform: none;
}

.galeria-overlay h3 {
  color: var(--white);
  font-size: 1.1rem;
}

.galeria-overlay i {
  color: var(--gold);
  font-size: 1.2rem;
}

/* ============================================
 * Modal
 * ============================================ */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
}

.modal.open {
  display: flex;
}

.modal-content {
  position: relative;
  max-width: min(1100px, 92vw);
  animation: modalZoom 0.4s var(--ease-out);
}

.modal-image {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.modal-caption {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  padding: 18px;
  font-size: 1rem;
  animation: fadeInUp 0.5s ease 0.15s both;
}

.close-modal {
  position: fixed;
  top: 20px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3002;
  transition:
    background 0.3s ease,
    transform 0.3s var(--ease-spring);
}

.close-modal:hover {
  background: var(--gold);
  transform: rotate(90deg);
}

.modal-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3001;
  transition:
    background 0.3s ease,
    transform 0.3s var(--ease-out);
}

.modal-nav:hover {
  background: var(--gold);
  transform: translateY(-50%) scale(1.08);
}

.modal-prev {
  left: 24px;
}

.modal-next {
  right: 24px;
}

@keyframes modalZoom {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
 * Filtros
 * ============================================ */
.filtros {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}

.filtro-btn {
  padding: 11px 26px;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
  transition:
    color 0.35s ease,
    box-shadow 0.35s ease;
}

.filtro-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
  z-index: 0;
}

.filtro-btn span {
  position: relative;
  z-index: 1;
}

.filtro-btn:hover,
.filtro-btn.active {
  color: var(--white);
  box-shadow: 0 8px 22px rgba(28, 28, 28, 0.25);
}

.filtro-btn:hover::before,
.filtro-btn.active::before {
  transform: scaleX(1);
}

/* ============================================
 * Breadcrumb
 * ============================================ */
.breadcrumb {
  background-color: var(--gray-ultra-light);
  padding: 26px 0;
  margin-top: 76px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.breadcrumb-content {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.breadcrumb a {
  color: var(--primary-color);
  font-weight: 600;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb span {
  color: var(--text-light);
}

/* ============================================
 * Categorias
 * ============================================ */
.categorias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-bottom: 60px;
}

.categoria-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition:
    transform 0.45s var(--ease-out),
    box-shadow 0.45s ease;
}

.categoria-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.categoria-image {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.categoria-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.categoria-card:hover .categoria-image img {
  transform: scale(1.08);
}

.categoria-image i {
  font-size: 3rem;
  color: var(--primary-light);
}

.categoria-info {
  padding: 22px 24px 28px;
  text-align: center;
}

.categoria-info h3 {
  margin-bottom: 8px;
}

/* ============================================
 * Footer
 * ============================================ */
.footer {
  background: linear-gradient(160deg, #0d0d0d, #1c1c1c);
  color: var(--white);
  padding: 80px 0 30px;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 44px;
  margin-bottom: 50px;
}

.footer-col h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.footer-col p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-tagline {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-col ul li a::before {
  content: "›";
  margin-right: 8px;
  color: var(--gold);
}

.contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.contact-info i {
  color: var(--gold);
  margin-top: 5px;
  transition: transform 0.3s ease;
}

.contact-info p:hover i {
  transform: scale(1.2);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    transform 0.4s var(--ease-spring),
    background 0.3s ease,
    border-color 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-4px) scale(1.08);
  background: rgba(176, 141, 87, 0.25);
  border-color: var(--gold);
}

.social-links .icon-facebook {
  color: #1877f2;
}

.social-links .icon-instagram {
  color: #e4405f;
}

.social-links .icon-whatsapp {
  color: #25d366;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 26px;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin-bottom: 8px;
}

.footer-bottom a {
  color: #2198f4;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #5bc3ff;
}

.agendaliza {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.agendaliza a {
  color: #2198f4;
}

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

/* ============================================
 * Voltar ao topo
 * ============================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 1500;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-dark);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition:
    opacity 0.4s ease,
    transform 0.4s var(--ease-out),
    visibility 0.4s ease,
    background 0.3s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.back-to-top:hover {
  background: var(--gold);
  transform: translateY(-4px);
}

.back-to-top i {
  font-size: 1.1rem;
}

/* ============================================
 * Botao flutuante WhatsApp
 * ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1500;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #4fce5d, #25d366 60%, #1eb857);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.35s var(--ease-spring),
    box-shadow 0.35s ease;
  animation: whatsappPulse 2.4s infinite;
}

.whatsapp-float i {
  font-size: 32px;
  color: var(--white);
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.6);
  animation-play-state: paused;
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--primary-dark);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: var(--shadow-md);
  transition:
    opacity 0.3s ease,
    transform 0.3s var(--ease-out),
    visibility 0.3s ease;
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent var(--primary-dark);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%);
}

@keyframes whatsappPulse {
  0% {
    box-shadow:
      0 10px 30px rgba(37, 211, 102, 0.45),
      0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow:
      0 10px 30px rgba(37, 211, 102, 0.45),
      0 0 0 20px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow:
      0 10px 30px rgba(37, 211, 102, 0.45),
      0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ============================================
 * Toast
 * ============================================ */
.toast {
  position: fixed;
  bottom: 30px;
  right: 110px;
  z-index: 6000;
  background: var(--primary-dark);
  color: var(--white);
  border-left: 4px solid var(--gold);
  padding: 16px 22px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);
  max-width: 360px;
  transition:
    opacity 0.45s ease,
    transform 0.45s var(--ease-out),
    visibility 0.45s ease;
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.toast i {
  color: var(--gold);
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ============================================
 * Botao com loading
 * ============================================ */
.btn .btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}

.btn.is-loading .btn-spinner {
  display: inline-block;
}

.btn.is-loading .btn-label {
  opacity: 0.65;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================
 * Placeholder de imagem
 * ============================================ */
.image-placeholder {
  background-color: var(--gray);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text-light);
  border-radius: var(--radius-sm);
  transition: transform 0.5s ease;
}

.image-placeholder:hover {
  transform: scale(1.02);
}

.image-placeholder i {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--primary-light);
}

/* ============================================
 * Media Queries
 * ============================================ */
@media (max-width: 1200px) {
  .hero {
    padding: 150px 0 60px;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

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

  .materiais .projetos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .sobre-texto-imagem,
  .contato-content {
    flex-direction: column;
    gap: 40px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    min-height: auto;
    padding: 150px 0 60px;
    gap: 40px;
  }

  .hero-content p {
    margin: 0 auto 30px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-content {
    padding: 0 24px;
  }

  .hero-image {
    width: 100%;
    padding: 0 24px;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .servicos-grid,
  .projetos-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

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

@media (max-width: 768px) {
  body {
    font-size: 0.96rem;
  }

  .header {
    padding: 12px 0;
  }

  .header.scrolled {
    padding: 8px 0;
  }

  .nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 84vw);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.12);
    padding: 90px 28px 30px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
    z-index: 1050;
    overflow-y: auto;
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav li {
    opacity: 1;
    transform: none;
    animation: none;
    margin: 0;
  }

  .nav a {
    font-size: 1.05rem;
    padding: 12px 6px;
  }

  .nav a::after {
    bottom: 2px;
    left: 6px;
    right: 6px;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none;
    background: transparent;
    padding: 0 8px;
    display: none !important;
    min-width: 0;
  }

  .dropdown.active .dropdown-menu {
    display: block !important;
  }

  .dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
  }

  .dropdown-menu li {
    opacity: 1 !important;
    transform: none !important;
  }

  .dropdown-menu a {
    padding: 10px 6px;
  }

  .breadcrumb {
    margin-top: 66px;
  }

  .modal-nav {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .modal-prev {
    left: 10px;
  }

  .modal-next {
    right: 10px;
  }

  .close-modal {
    top: 14px;
    right: 14px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-float i {
    font-size: 28px;
  }

  .back-to-top {
    bottom: 22px;
    left: 20px;
    width: 42px;
    height: 42px;
  }

  .toast {
    right: 20px;
    left: 20px;
    max-width: none;
  }

  .galeria-grid {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 14px;
  }

  .footer-col.desktop-only {
    display: none;
  }

  .footer-content {
    gap: 32px;
  }

  .stats {
    gap: 26px;
  }
}

@media (max-width: 576px) {
  .logo-text span {
    display: none;
  }

  .logo-text h1 {
    font-size: 1.3rem;
  }

  .logo-image {
    height: 40px;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 1.9rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .servico-card {
    padding: 30px 22px;
  }

  .projetos-grid {
    grid-template-columns: 1fr;
  }

  .materiais .projetos-grid {
    grid-template-columns: 1fr;
  }

  .sobre-destaque h3 {
    font-size: 1.6rem;
  }

  .contato-info,
  .contato-form {
    padding: 30px 24px;
  }

  .hero-image .carousel-prev {
    left: 10px;
  }

  .hero-image .carousel-next {
    right: 10px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

/* ============================================
 * Movimento reduzido (acessibilidade)
 * ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .js .reveal,
  .js .reveal-left,
  .js .reveal-right,
  .js .reveal-zoom {
    opacity: 1;
    transform: none;
  }

  .whatsapp-float {
    animation: none;
  }
}
