:root {
  --radius: 1rem;
  --background: oklch(1 0 0);
  --foreground: oklch(0.18 0.04 250);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.18 0.04 250);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.18 0.04 250);
  --primary: oklch(0.65 0.14 235);
  --primary-foreground: oklch(0.99 0.005 250);
  --primary-glow: oklch(0.75 0.13 230);
  --secondary: oklch(0.96 0.012 250);
  --secondary-foreground: oklch(0.25 0.08 255);
  --muted: oklch(0.97 0.008 250);
  --muted-foreground: oklch(0.5 0.03 250);
  --accent: oklch(0.95 0.02 250);
  --accent-foreground: oklch(0.25 0.08 255);
  --destructive: oklch(0.577 0.245 27.325);
  --destructive-foreground: oklch(0.984 0.003 247.858);
  --whatsapp: oklch(0.7351 0.1875 150.3);
  --whatsapp-foreground: oklch(1 0 0);
  --border: oklch(0.92 0.01 250);
  --input: oklch(0.92 0.01 250);
  --ring: oklch(0.65 0.14 235);

  --font-sans: "Montserrat", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Montserrat", "Cabinet Grotesk", sans-serif;

  --gradient-hero: linear-gradient(135deg, oklch(0.55 0.14 235) 0%, oklch(0.65 0.14 235) 50%, oklch(0.75 0.13 230) 100%);
  --gradient-subtle: linear-gradient(180deg, oklch(0.99 0.005 250) 0%, oklch(0.96 0.012 250) 100%);

  --shadow-elegant: 0 20px 60px -15px oklch(0.65 0.14 235 / 0.35);
  --shadow-card: 0 4px 20px -4px oklch(0.65 0.14 235 / 0.18);
  --shadow-glow: 0 0 40px oklch(0.65 0.14 235 / 0.4);

  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Bloqueia o scroll quando o menu mobile está aberto */
body.menu-open {
  overflow: hidden !important;
  touch-action: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Header */
header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: 80px;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-links {
  display: none;
  gap: 2rem;
}

@media (min-width: 768px) {
  header {
    height: 80px;
  }

  .nav-links {
    display: flex;
  }
}

.nav-links a {
  text-decoration: none;
  color: var(--foreground);
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.8;
  transition: var(--transition-smooth);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a:hover {
  color: var(--primary);
  opacity: 1;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: white;
  display: none;
  /* Escondido no mobile por padrão */
}

@media (min-width: 1024px) {
  .btn-whatsapp {
    display: inline-flex;
    /* Mostra no desktop */
  }
}

.btn-whatsapp:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px oklch(0.7351 0.1875 150.3 / 0.4);
}

.btn-hero {
  background-color: var(--whatsapp);
  color: white;
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -10px oklch(0.7351 0.1875 150.3 / 0.5);
  filter: brightness(1.1);
}

.btn-outline-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
  position: relative;
  background: var(--primary);
  color: white;
  padding: 100px 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, oklch(0.18 0.06 255 / 0.85) 0%, oklch(0.22 0.08 255 / 0.7) 45%, oklch(0.25 0.1 255 / 0.4) 100%);
}

.hero-content {
  position: relative;
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero {
    padding: 180px 0;
  }

  .hero-content {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-text h1 {
    font-size: 4rem;
  }
}

.hero-text p {
  font-size: 1.25rem;
  opacity: 0.8;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

/* Partners */
.partners {
  padding: 4rem 0;
  background: var(--secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.partners-title {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 2.5rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: center;
}

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

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

.partners-grid img {
  max-width: 120px;
  height: auto;
  opacity: 0.5;
  transition: opacity 0.3s;
  justify-self: center;
}

.partners-grid img:hover {
  opacity: 1;
}

/* Services */
.services {
  padding: 100px 0;
  background: var(--gradient-subtle);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.services-grid {
  display: grid;
  gap: 2rem;
}

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

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

.service-card {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition-smooth);
  will-change: transform;
}

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

.service-image {
  position: relative;
  height: 250px;
}

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

.service-image h3 {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  color: white;
  font-size: 1.5rem;
  z-index: 2;
  font-weight: 700;
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
  z-index: 1;
}


.service-content {
  padding: 1.5rem;
}

/* Coverages */
.coverages {
  padding: 100px 0;
  background: var(--background);
}

.coverages-grid {
  display: grid;
  gap: 2rem;
}

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

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

  .col-span-2 {
    grid-column: span 2 / span 2;
  }

  .col-start-2 {
    grid-column-start: 2;
  }
}

.coverage-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: var(--transition-smooth);
}

.coverage-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-card);
}

.coverage-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-hero);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 20px -5px oklch(0.65 0.14 235 / 0.3);
}

.coverage-card h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.coverage-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.coverage-list li {
  display: flex;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.4;
}

.coverage-list i {
  color: var(--primary-glow);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Differentials */
.differentials {
  padding: 100px 0;
}

.differentials-content {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .differentials-content {
    grid-template-columns: 1fr 1fr;
  }
}

.diff-image {
  position: relative;
  border-radius: 2.5rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.diff-image img {
  width: 100%;
  display: block;
  transition: transform 0.7s;
}

.diff-image:hover img {
  transform: scale(1.05);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: oklch(0.65 0.14 235 / 0.05);
  border: 1px solid oklch(0.65 0.14 235 / 0.1);
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.diff-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  margin-bottom: 1.25rem;
  transition: var(--transition-smooth);
}

.diff-item:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.diff-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-hero);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.diff-bullets-grid {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

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

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

@media (min-width: 1280px) {
  .diff-bullets-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.diff-bullets-grid li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--foreground);
  font-weight: 600;
  font-size: 0.935rem;
  letter-spacing: -0.01em;
}

.diff-bullets-grid i {
  color: #22c55e;
  filter: drop-shadow(0 0 5px rgba(34, 197, 94, 0.2));
  width: 20px;
  height: 20px;
}

/* CTA Banner */
.cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, oklch(0.22 0.06 255) 0%, oklch(0.15 0.04 255) 50%, oklch(0.05 0.01 250) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, oklch(0.4 0.15 255 / 0.3), transparent 60%);
  opacity: 0.4;
  pointer-events: none;
}

.cta-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
}

/* Footer */
footer {
  background: oklch(0.26 0.01 250);
  color: #f5f5f5;
  padding-top: 64px;
  padding-bottom: 96px;
}

@media (min-width: 1024px) {
  footer {
    padding-bottom: 0px;
  }
}

footer.footer-compact {
  padding-bottom: 40px;
}

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

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

.footer-info p {
  opacity: 0.7;
  margin: 1.5rem 0;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: transform 0.3s;
}

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

.footer-column h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 4rem;
  padding: 2rem 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom-info p {
  margin-bottom: 0.25rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: white;
}

/* Mobile Menu Overlay - Premium Glassmorphism */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.05);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1.5rem;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-links a {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--foreground);
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
  background: transparent;
}

.mobile-links a:active {
  background: rgba(0, 0, 0, 0.03);
  transform: scale(0.98);
}

.mobile-links a i {
  color: var(--primary);
  width: 24px;
  height: 24px;
  opacity: 0.8;
}

.mobile-links .btn-whatsapp-mobile {
  background-color: var(--whatsapp);
  color: white;
  margin-top: 2rem;
  padding: 1.25rem;
  font-size: 1.1rem;
  box-shadow: 0 10px 20px -5px oklch(0.7351 0.1875 150.3 / 0.4);
}

.mobile-nav-footer {
  margin-top: auto;
  padding: 2rem 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-footer p {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted-foreground);
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.mobile-socials {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.mobile-social-btn {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: oklch(0.95 0.02 250);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.mobile-contact-info a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--foreground);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
}

.mobile-contact-info i {
  color: var(--primary);
  width: 20px;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeUp 0.8s ease-out forwards;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 72px;
  height: 72px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  animation-play-state: paused;
}

.whatsapp-float svg {
  width: 38px;
  height: 38px;
}

@keyframes pulse-whatsapp {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (min-width: 1024px) {
  .whatsapp-float {
    display: none;
    /* Esconde o flutuante no desktop */
  }
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* --- FONTE --- */
/* montserrat-300 - latin */
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/montserrat-v31-latin-300.woff2') format('woff2');
}

/* montserrat-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/montserrat-v31-latin-regular.woff2') format('woff2');
}

/* montserrat-500 - latin */
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/montserrat-v31-latin-500.woff2') format('woff2');
}

/* montserrat-600 - latin */
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/montserrat-v31-latin-600.woff2') format('woff2');
}

/* montserrat-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/montserrat-v31-latin-700.woff2') format('woff2');
}

/* montserrat-800 - latin */
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  src: url('fonts/montserrat-v31-latin-800.woff2') format('woff2');
}

/* montserrat-900 - latin */
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 900;
  src: url('fonts/montserrat-v31-latin-900.woff2') format('woff2');
}