/* =============================================
   COBERTURAS TA - ESTILOS GLOBAIS
   Paleta: #162343 (Azul Escuro), #D0AA47 (Dourado), #FFFFFF (Branco)
   ============================================= */

:root {
  --primary: #162343;
  --gold: #D0AA47;
  --white: #FFFFFF;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-600: #6c757d;
  --gray-800: #343a40;
  --shadow: 0 4px 20px rgba(22, 35, 67, 0.15);
  --shadow-lg: 0 8px 40px rgba(22, 35, 67, 0.2);
  --transition: all 0.3s ease;
  --radius: 8px;
  --radius-lg: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

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

.section-padding {
  padding: 80px 0;
}

/* =============================================
   TIPOGRAFIA
   ============================================= */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--primary);
  margin-bottom: 16px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--gold);
  margin-top: 12px;
  border-radius: 2px;
}

.section-title.centered::after {
  margin: 12px auto 0;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
  margin-bottom: 48px;
}

.section-subtitle.centered {
  margin: 0 auto 48px;
  text-align: center;
}

/* =============================================
   BOTÕES
   ============================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: #b8932e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(208, 170, 71, 0.4);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-white:hover {
  background: var(--gold);
  color: var(--primary);
  transform: translateY(-2px);
}

/* =============================================
   BARRA SUPERIOR
   ============================================= */

.top-bar {
  background: var(--primary);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.82rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.9);
}

.top-bar-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  fill: var(--gold);
}

.top-bar-item a {
  color: rgba(255,255,255,0.9);
}

.top-bar-item a:hover {
  color: var(--gold);
}

.top-bar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.3);
}

/* =============================================
   CABEÇALHO PRINCIPAL
   ============================================= */

.main-header {
  background: var(--white);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(22, 35, 67, 0.1);
  transition: var(--transition);
}

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

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.logo-icon::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: var(--gold);
  opacity: 0.3;
}

.logo-icon span {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.logo-tagline {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* NAVEGAÇÃO */
.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-800);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  border-radius: 1px;
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.nav-cta {
  background: var(--gold);
  color: var(--primary) !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  margin-left: 8px;
}

.nav-cta:hover {
  background: #b8932e;
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none;
}

/* HAMBÚRGUER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  border-radius: var(--radius);
  transition: var(--transition);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* MENU MOBILE */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary);
  z-index: 2000;
  flex-direction: column;
  backdrop-filter: blur(10px);
}

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

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  gap: 10px;
}

.mobile-nav-link {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  padding: 15px 32px;
  border-radius: var(--radius);
  transition: var(--transition);
  text-align: center;
  width: 100%;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
}

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

.footer {
  background: var(--primary);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo .logo-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

.footer-logo .logo-icon span {
  font-size: 1.6rem;
}

.footer-logo p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 12px;
}

.footer-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.footer-info-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  fill: var(--gold);
}

.footer-info-item a {
  color: rgba(255,255,255,0.8);
}

.footer-info-item a:hover {
  color: var(--gold);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* =============================================
   BOTÃO WHATSAPP FLUTUANTE
   ============================================= */

.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1500;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
  animation: pulse-whatsapp 2s infinite;
}

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

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8), 0 0 0 8px rgba(37, 211, 102, 0.15); }
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-principal.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(22,35,67,0.92) 0%, rgba(22,35,67,0.75) 50%, rgba(22,35,67,0.3) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 80px 20px;
}

.hero-content {
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(208, 170, 71, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--gold);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  line-height: 1.7;
}

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

.hero-seal {
  position: relative;
  flex-shrink: 0;
}

.seal-circle {
  width: 160px;
  height: 160px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(208, 170, 71, 0.4);
  animation: rotate-slow 20s linear infinite;
}

.seal-circle .seal-icon {
  font-size: 2rem;
  margin-bottom: 6px;
}

.seal-circle .seal-text {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

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

.hero-stat .number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* =============================================
   SOBRE NÓS (HOME)
   ============================================= */

.about-home {
  padding: 80px 0;
  background: var(--white);
}

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

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-image-badge {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: var(--gold);
  color: var(--primary);
  padding: 16px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.about-image-badge .badge-number {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.about-image-badge .badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-content .section-title {
  margin-bottom: 20px;
}

.about-content p {
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

.about-feature svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  flex-shrink: 0;
}

/* =============================================
   VALORES
   ============================================= */

.values-section {
  padding: 80px 0;
  background: var(--gray-100);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

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

.value-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.value-card-label {
  background: var(--primary);
  color: var(--white);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.value-card-label svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
  flex-shrink: 0;
}

.value-card-label span {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* =============================================
   SERVIÇOS
   ============================================= */

.services-section {
  padding: 80px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(22, 35, 67, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--primary);
  transition: var(--transition);
}

.service-card:hover .service-icon svg {
  fill: var(--gold);
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* =============================================
   CATEGORIAS
   ============================================= */

.categories-section {
  padding: 80px 0;
  background: var(--gray-100);
}

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

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
}

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

.category-img-wrap {
  overflow: hidden;
  height: 280px;
}

.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-label {
  background: var(--primary);
  color: var(--white);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category-label span {
  font-size: 0.95rem;
  font-weight: 700;
}

.category-label svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

/* =============================================
   GALERIA PREVIEW
   ============================================= */

.gallery-preview {
  padding: 80px 0;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 35, 67, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(22, 35, 67, 0.6);
}

.gallery-item-overlay svg {
  width: 40px;
  height: 40px;
  fill: var(--white);
  opacity: 0;
  transform: scale(0.5);
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay svg {
  opacity: 1;
  transform: scale(1);
}

.gallery-cta {
  text-align: center;
  margin-top: 40px;
}

/* =============================================
   CTA BANNER
   ============================================= */

.cta-banner {
  background: var(--primary);
  padding: 60px 0;
}

.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-banner-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 8px;
}

.cta-banner-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
}

/* =============================================
   PÁGINA EMPRESA
   ============================================= */

.page-hero {
  background: var(--primary);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80') center/cover;
  opacity: 0.15;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

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

.breadcrumb span {
  color: rgba(255,255,255,0.4);
}

/* CITAÇÃO */
.quote-section {
  padding: 60px 0;
  background: var(--gold);
}

.quote-section blockquote {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.quote-section blockquote p {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.5;
  font-style: italic;
}

.quote-section blockquote cite {
  display: block;
  margin-top: 16px;
  font-size: 0.9rem;
  font-style: normal;
  color: rgba(22,35,67,0.7);
  font-weight: 600;
}

/* NOSSA HISTÓRIA */
.history-section {
  padding: 80px 0;
  background: var(--white);
}

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

.history-image-wrap {
  position: relative;
}

.history-image-wrap img {
  width: 100%;
  height: auto;
  min-height: 400px;
  max-height: 600px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.history-seals {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  width: max-content;
  max-width: 90%;
}

.history-seal {
  background: var(--primary);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  min-width: 140px;
}

.history-seal .seal-icon {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.history-seal .seal-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
}

.history-seal .seal-desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
}

.history-content p {
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.8;
}

/* MISSÃO VISÃO VALORES */
.mvv-section {
  padding: 80px 0;
  background: var(--gray-100);
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.mvv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid transparent;
}

.mvv-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.mvv-icon {
  width: 72px;
  height: 72px;
  background: rgba(22, 35, 67, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: var(--transition);
}

.mvv-card:hover .mvv-icon {
  background: var(--primary);
}

.mvv-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--primary);
  transition: var(--transition);
}

.mvv-card:hover .mvv-icon svg {
  fill: var(--gold);
}

.mvv-card h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.mvv-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* =============================================
   PÁGINA GALERIA
   ============================================= */

.gallery-page {
  padding: 60px 0 80px;
}

.gallery-filter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--gray-300);
  background: var(--white);
  color: var(--gray-600);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

.gallery-masonry {
  columns: 3;
  column-gap: 16px;
}

.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-masonry-item:hover img {
  transform: scale(1.05);
}

.gallery-masonry-item .item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 35, 67, 0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.gallery-masonry-item:hover .item-overlay {
  background: rgba(22, 35, 67, 0.65);
}

.gallery-masonry-item .item-overlay span {
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.gallery-masonry-item:hover .item-overlay span {
  opacity: 1;
  transform: translateY(0);
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9998;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

/* =============================================
   PÁGINA CONTATO
   ============================================= */

.contact-section {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.contact-info > p {
  color: var(--gray-600);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(22, 35, 67, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--primary);
}

.contact-item-content h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-item-content p,
.contact-item-content a {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.contact-item-content a:hover {
  color: var(--primary);
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--gold);
}

.social-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

/* FORMULÁRIO */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

.contact-form-wrap h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(22, 35, 67, 0.1);
}

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

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-submit:hover {
  background: var(--gold);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(208, 170, 71, 0.4);
}

.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  background: rgba(22, 35, 67, 0.05);
  border-radius: var(--radius);
  margin-top: 16px;
}

.form-success.show {
  display: block;
}

.form-success p {
  color: var(--primary);
  font-weight: 600;
}

/* MAPA */
.map-section {
  height: 450px;
  background: var(--gray-200);
  position: relative;
  overflow: hidden;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, #1e3a6e 100%);
  color: var(--white);
  gap: 16px;
}

.map-placeholder svg {
  width: 48px;
  height: 48px;
  fill: var(--gold);
}

.map-placeholder p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
}

/* =============================================
   UTILITÁRIOS
   ============================================= */

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-primary { color: var(--primary); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }

/* ANIMAÇÕES */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVIDADE
   ============================================= */

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .gallery-masonry {
    columns: 2;
  }
}

@media (max-width: 768px) {
  .top-bar .container {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .top-bar-left,
  .top-bar-right {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .top-bar-divider {
    display: none;
  }

  .main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }

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

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

  .hero-seal {
    display: none;
  }

  .about-grid,
  .history-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-badge {
    right: 20px;
  }

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

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

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

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-banner .container {
    flex-direction: column;
    text-align: center;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .history-seals {
    position: relative;
    bottom: 0;
    left: 0;
    transform: none;
    justify-content: center;
    margin: 20px auto 0;
    flex-wrap: wrap;
    width: 100%;
  }

  .history-image-wrap img {
    height: auto;
    min-height: 300px;
  }

  .gallery-masonry {
    columns: 2;
  }

  .contact-form-wrap {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .values-grid,
  .services-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-masonry {
    columns: 1;
  }

  .hero-stats {
    gap: 20px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    z-index: 1000;
  }
}


/* =============================================
   BOTÕES DE REDES SOCIAIS NO RODAPÉ
   ============================================= */

.social-buttons-footer {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(208, 170, 71, 0.2);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.4s ease;
}

.social-btn:hover::before {
  transform: scale(1);
}

.social-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: rgba(208, 170, 71, 0.3);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(22, 35, 67, 0.3);
}

.social-btn:hover svg {
  transform: scale(1.1);
}

/* Animação de pulso para o primeiro botão ao carregar */
@keyframes pulse-social {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(208, 170, 71, 0.7);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(208, 170, 71, 0);
  }
}

.social-btn:first-child {
  animation: pulse-social 2s infinite;
}

/* Responsivo */
@media (max-width: 768px) {
  .social-buttons-footer {
    gap: 10px;
  }

  .social-btn {
    width: 42px;
    height: 42px;
  }

  .social-btn svg {
    width: 20px;
    height: 20px;
  }
}
