:root {
  --azul-escuro: #173c5e;
  --azul: #2e6ca6;
  --azul-claro: #7fb2dd;
  --verde: #4e9a3e;
  --salvia: #9caf88;
  --dourado: #b8995a;
  --marfim: #f6f3ec;
  --areia: #e8dfd0;
  --carvao: #20303d;
  --branco: #ffffff;
  --sombra: 0 12px 40px rgba(23, 60, 94, 0.12);
  --sombra-hover: 0 20px 50px rgba(23, 60, 94, 0.18);
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--carvao);
  background: var(--marfim);
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

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

a {
  color: var(--azul);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

a:hover {
  color: var(--dourado);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--azul-escuro);
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--azul-escuro);
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}

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

.preloader-leaf {
  width: 80px;
  height: 80px;
}

.preloader-leaf path {
  fill: none;
  stroke: var(--dourado);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawLeaf 1s var(--ease) forwards;
}

@keyframes drawLeaf {
  to {
    stroke-dashoffset: 0;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.65rem 0;
  background: rgba(23, 60, 94, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), padding 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(15, 40, 64, 0.98);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
  padding: 0.45rem 0;
}

.site-header.is-dark {
  background: rgba(23, 60, 94, 0.88);
}

.site-header.is-dark.is-scrolled {
  background: rgba(15, 40, 64, 0.98);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo-link img {
  height: 64px;
  width: auto;
  transition: transform 0.3s var(--ease);
  background: transparent;
}

.logo-link:hover img {
  transform: scale(1.03);
}

.site-header.is-dark.is-scrolled .logo-link {
  background: transparent;
  border-radius: 0;
  padding: 0;
  backdrop-filter: none;
}

.site-header.is-dark:not(.is-scrolled) .logo-link img {
  height: 72px;
}

.site-header.is-dark.is-scrolled .logo-link img {
  height: 58px;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0.3rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.nav-desktop a {
  display: inline-flex;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  transition: color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.nav-desktop a:hover {
  color: var(--branco);
  background: rgba(255, 255, 255, 0.14);
}

.nav-desktop a.is-active {
  color: var(--azul-escuro);
  background: var(--dourado);
  box-shadow: 0 2px 12px rgba(184, 153, 90, 0.45);
}

.site-header.is-dark .nav-desktop a,
.site-header.is-dark.is-scrolled .nav-desktop a {
  color: rgba(255, 255, 255, 0.92);
}

.site-header.is-dark .nav-desktop a.is-active,
.site-header.is-dark.is-scrolled .nav-desktop a.is-active {
  color: var(--azul-escuro);
}

.nav-desktop .nav-social {
  margin-left: 0.15rem;
}

.nav-desktop .nav-social a {
  padding: 0.4rem;
  background: rgba(255, 255, 255, 0.1);
}

.nav-desktop .nav-social a:hover {
  background: rgba(255, 255, 255, 0.22);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  cursor: pointer;
  padding: 0.65rem 0.7rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--branco);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.site-header.is-dark .nav-toggle span {
  background: var(--branco);
}

.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(23, 60, 94, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}

.nav-mobile.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--marfim);
}

.nav-mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--marfim);
  font-size: 2rem;
  cursor: pointer;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }
}

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

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media video,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media video {
  z-index: 2;
}

.hero-media img {
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 60, 94, 0.55) 0%, rgba(23, 60, 94, 0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
  max-width: 820px;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 2rem;
}

.hero-badge img {
  height: clamp(128px, 22vw, 180px);
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.4));
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: var(--branco);
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--azul-claro);
  margin: 0 0 2.5rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
  background: transparent;
  border: 2px solid var(--dourado);
  color: var(--dourado);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}

.hero-cta:hover {
  background: var(--dourado);
  color: var(--azul-escuro);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: floatScroll 2s ease-in-out infinite;
}

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

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--branco);
}

.section-dark {
  background: var(--azul-escuro);
  color: var(--marfim);
}

.section-dark h2,
.section-dark h3 {
  color: var(--marfim);
}

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 1.5rem;
}

.section-lead {
  font-size: 1.125rem;
  color: rgba(32, 48, 61, 0.85);
  max-width: 640px;
}

.section-dark .section-lead {
  color: rgba(246, 243, 236, 0.85);
}

.manifesto-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

.manifesto-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--sombra);
  aspect-ratio: 4 / 5;
  background: var(--areia);
}

.manifesto-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.manifesto-card {
  background: var(--branco);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--sombra);
  border: 1px solid rgba(46, 108, 166, 0.08);
}

.products-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background: var(--branco);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--sombra);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

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

.product-card-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(180deg, #faf9f7 0%, var(--marfim) 100%);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 1rem;
  box-sizing: border-box;
  transition: transform 0.5s var(--ease);
}

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

.product-card-body {
  padding: 1.5rem;
}

.product-card-body h3 {
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.product-card-body p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(32, 48, 61, 0.75);
}

.product-card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--azul);
}

.diff-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .diff-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.diff-item {
  text-align: center;
  padding: 2rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.diff-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}

.diff-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  color: var(--dourado);
}

.diff-item h3 {
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
  color: var(--marfim);
}

.diff-item p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(246, 243, 236, 0.75);
  line-height: 1.6;
}

.diff-cta {
  margin-top: 3rem;
  text-align: center;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border: 2px solid var(--dourado);
  color: var(--dourado);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}

.btn-outline-light:hover {
  background: var(--dourado);
  color: var(--azul-escuro);
}

.nav-desktop .nav-social img {
  display: block;
  width: 32px;
  height: 32px;
}

.instagram-cta {
  text-align: center;
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--marfim) 0%, var(--areia) 100%);
}

.instagram-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--azul-escuro);
}

.instagram-cta a img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.instagram-cta a:hover {
  color: var(--dourado);
}

.site-footer {
  background: var(--azul-escuro);
  color: var(--marfim);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer-brand img {
  height: 72px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.95rem;
  color: rgba(246, 243, 236, 0.75);
  max-width: 280px;
}

.footer-nav h4,
.footer-newsletter h4 {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dourado);
  margin: 0 0 1.25rem;
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 0.75rem;
}

.footer-nav a {
  color: rgba(246, 243, 236, 0.85);
  font-size: 0.95rem;
}

.footer-nav a:hover {
  color: var(--dourado);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-form input {
  padding: 0.875rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--marfim);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.newsletter-form input::placeholder {
  color: rgba(246, 243, 236, 0.5);
}

.newsletter-form button {
  padding: 0.875rem 1.5rem;
  background: var(--dourado);
  color: var(--azul-escuro);
  border: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.newsletter-form button:hover {
  background: var(--branco);
  transform: translateY(-1px);
}

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

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .preloader-leaf path {
    animation: none;
    stroke-dashoffset: 0;
  }

  .hero-scroll {
    animation: none;
  }
}

.page-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--azul-escuro) 0%, var(--azul) 100%);
  text-align: center;
}

.page-hero h1 {
  color: var(--branco);
  font-size: clamp(2.25rem, 4vw, 3rem);
  margin: 0 0 0.75rem;
}

.page-hero p {
  color: var(--azul-claro);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  margin: 0;
}

.page-content {
  padding: 4rem 0;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--carvao);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(46, 108, 166, 0.2);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--branco);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--azul);
  box-shadow: 0 0 0 3px rgba(46, 108, 166, 0.15);
}

.btn-primary {
  display: inline-block;
  width: 100%;
  padding: 1rem 2rem;
  background: var(--azul);
  color: var(--branco);
  border: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.btn-primary:hover {
  background: var(--azul-escuro);
  transform: translateY(-1px);
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.category-tab {
  padding: 0.75rem 1.5rem;
  background: var(--branco);
  border: 2px solid rgba(46, 108, 166, 0.15);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--azul-escuro);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.category-tab:hover,
.category-tab.is-active {
  background: var(--azul);
  border-color: var(--azul);
  color: var(--branco);
}

.product-gallery {
  display: none;
}

.product-gallery.is-visible {
  display: block;
  animation: fadeInUp 0.5s var(--ease);
}

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

.gallery-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.gallery-item {
  background: var(--branco);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--sombra);
  cursor: pointer;
  transition: transform 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

.gallery-item:hover {
  transform: translateY(-4px);
}

.gallery-item > a {
  display: block;
  flex: 1;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, #faf9f7 0%, var(--marfim) 100%);
  padding: 1.25rem;
  box-sizing: border-box;
}

.gallery-item-caption {
  padding: 1rem;
  font-size: 0.85rem;
  color: var(--carvao);
}

.catalogs-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(46, 108, 166, 0.15);
}

.catalog-list {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .catalog-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.catalog-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--branco);
  border-radius: 16px;
  box-shadow: var(--sombra);
  transition: transform 0.3s var(--ease);
}

.catalog-link:hover {
  transform: translateY(-2px);
  color: var(--azul);
}

.home-catalog-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.home-catalog-cta .catalog-link {
  display: inline-flex;
  width: auto;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(23, 60, 94, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

.contact-card {
  background: var(--branco);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--sombra);
  margin-bottom: 1.5rem;
}

.contact-card.is-featured {
  border: 2px solid var(--dourado);
  background: linear-gradient(135deg, var(--branco) 0%, var(--marfim) 100%);
}

.contact-card.is-featured h3 {
  color: var(--dourado);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.contact-card.is-featured .contact-role {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 0.35rem;
}

.contact-card h3 {
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
}

.contact-card p {
  margin: 0;
}

.contact-channels {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact-channel {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--azul);
  transition: color 0.25s var(--ease);
}

.contact-channel:hover {
  color: var(--dourado);
}

.contact-channel img {
  flex-shrink: 0;
  display: block;
}

.contact-form-wrap {
  background: var(--branco);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--sombra);
}

.about-block {
  margin-bottom: 3rem;
}

.about-block h3 {
  font-size: 1.5rem;
  margin: 0 0 1rem;
}

/* --- Sobre: layout bento --- */
.about-page {
  padding: 3rem 0 5rem;
}

.about-lead {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-style: italic;
  color: var(--azul-escuro);
  max-width: 36rem;
  margin: 0 auto 3rem;
  line-height: 1.5;
}

.about-bento {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.about-card {
  position: relative;
  background: var(--branco);
  border-radius: 24px;
  padding: 2rem 2rem 2.25rem;
  box-shadow: var(--sombra);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra-hover);
}

.about-card h3 {
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  margin: 0.75rem 0 1rem;
}

.about-card p {
  margin: 0 0 1rem;
  color: var(--carvao);
}

.about-card p:last-child {
  margin-bottom: 0;
}

.about-card__head {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  flex-shrink: 0;
}

.about-card__icon svg {
  width: 26px;
  height: 26px;
}

.about-card__icon--blue {
  background: rgba(46, 108, 166, 0.12);
  color: var(--azul);
}

.about-card__icon--green {
  background: rgba(78, 154, 62, 0.12);
  color: var(--verde);
}

.about-card__icon--gold {
  background: rgba(184, 153, 90, 0.15);
  color: var(--dourado);
}

.about-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--azul);
  background: rgba(46, 108, 166, 0.08);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.about-card__tag--light {
  background: rgba(255, 255, 255, 0.15);
  color: var(--azul-claro);
}

.about-card--empresa::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--azul), var(--azul-claro));
}

.about-card--qualidade::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--verde), var(--salvia));
}

.about-card--missao {
  background: linear-gradient(145deg, var(--azul-escuro) 0%, #1a5080 55%, var(--azul) 100%);
  color: var(--branco);
  padding: 2.5rem 2rem 2.75rem;
}

.about-card--missao h3,
.about-card--missao blockquote {
  color: var(--branco);
}

.about-card--missao blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  border: none;
  padding: 0;
}

.about-card__quote-mark {
  position: absolute;
  top: -0.25rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.08);
  pointer-events: none;
  user-select: none;
}

.about-card--visao {
  border-left: 5px solid var(--dourado);
}

.about-card__highlight {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--azul-escuro);
  line-height: 1.55;
  margin: 0;
}

.about-card--valores {
  background: linear-gradient(180deg, var(--branco) 0%, rgba(246, 243, 236, 0.6) 100%);
}

.values-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  background: var(--branco);
  border-radius: 16px;
  border: 1px solid rgba(46, 108, 166, 0.08);
  box-shadow: 0 4px 16px rgba(23, 60, 94, 0.06);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.value-item:hover {
  border-color: rgba(184, 153, 90, 0.35);
  transform: translateX(4px);
}

.value-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(184, 153, 90, 0.12);
  color: var(--dourado);
  flex-shrink: 0;
}

.value-item__icon svg {
  width: 22px;
  height: 22px;
}

.value-item span:last-child {
  padding-top: 0.35rem;
  line-height: 1.5;
}

.about-card--local {
  padding: 0;
  overflow: hidden;
}

.about-card--local::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--salvia), var(--verde), var(--azul-claro));
  z-index: 1;
}

.about-location {
  display: grid;
  grid-template-columns: 1fr;
}

.about-location__info {
  padding: 2rem 2rem 1.5rem;
}

.about-location__info address {
  font-style: normal;
  line-height: 1.75;
  margin: 0;
  color: var(--carvao);
}

.about-location .map-wrap {
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.about-location .map-wrap iframe {
  height: 320px;
}

@media (min-width: 720px) {
  .about-bento {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }

  .about-card--missao,
  .about-card--valores,
  .about-card--local {
    grid-column: 1 / -1;
  }

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

  .about-location {
    grid-template-columns: minmax(240px, 340px) 1fr;
    align-items: stretch;
  }

  .about-location__info {
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .about-location .map-wrap iframe {
    height: 100%;
    min-height: 360px;
  }
}

@media (min-width: 960px) {
  .about-card {
    padding: 2.25rem 2.5rem 2.5rem;
  }

  .about-card--missao {
    padding: 3rem 3rem 3.25rem;
  }
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.values-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(46, 108, 166, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.values-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--dourado);
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--sombra);
  margin-top: 2rem;
}

.map-wrap iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

.viewer-wrap {
  max-width: 520px;
  margin: 0 auto;
  background: var(--branco);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--sombra);
}

.viewer-canvas {
  width: 100%;
  aspect-ratio: 1;
  background: var(--areia);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: ew-resize;
}

.viewer-canvas img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.viewer-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.viewer-controls button {
  padding: 0.75rem 1.5rem;
  background: var(--azul);
  color: var(--branco);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.viewer-controls button:hover {
  background: var(--azul-escuro);
}
