@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
  /* =========================================
     SISTEMA DE CORES (Light / Elegante)
     ========================================= */
  
  /* Brand Colors */
  --color-primary: #1A365D;       /* Azul Escuro / Naval */
  --color-primary-light: #2C5282; /* Azul Moderado */
  --color-primary-dark: #0F2039;  /* Azul Muito Escuro */
  
  --color-secondary: #C5A880;     /* Dourado / Bege Premium */
  --color-secondary-light: #D9C3A3;
  --color-secondary-dark: #A4865B;
  
  --color-accent: #00CCFF;        /* Cyan (Augusto Maia Original Effect) */

  /* Neutrals (Backgrounds and Texts) */
  --color-white: #FFFFFF;
  --color-bg-light: #F8FAFC;
  --color-bg-muted: #F1F5F9;
  --color-bg-dark: #0F172A;
  
  --text-main: #1E293B;           /* Texto Principal */
  --text-muted: #475569;          /* Texto Secundário */
  --text-light: #F8FAFC;          /* Texto sobre fundos escuros */

  /* Feedback Semantics */
  --color-success: #10B981;
  --color-warning: #F59E0B;
  --color-error: #EF4444;
  --color-info: #3B82F6;

  /* =========================================
     TIPOGRAFIA
     ========================================= */
  --font-heading: 'Philosopher', serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  /* Type Scale */
  --text-xs: 0.75rem;    /* 12px */
  --text-sm: 0.875rem;   /* 14px */
  --text-base: 1rem;     /* 16px */
  --text-lg: 1.125rem;   /* 18px */
  --text-xl: 1.25rem;    /* 20px */
  --text-2xl: 1.5rem;    /* 24px */
  --text-3xl: 1.875rem;  /* 30px */
  --text-4xl: 2.25rem;   /* 36px */
  --text-5xl: 3rem;      /* 48px */
  --text-6xl: 3.75rem;   /* 60px */
  --text-7xl: 4.5rem;    /* 72px */

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;

  /* Shadows / Glow */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 0 20px 0 rgba(26, 54, 93, 0.15); /* Primary Glow */

  /* Borders */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
}

/* =========================================
   GLOBAL RESET
   ========================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--color-bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* =========================================
   TIPOGRAFIA BASE
   ========================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: var(--space-4);
}
h1 { font-size: var(--text-6xl); }
h2 { font-size: var(--text-5xl); }
h3 { font-size: var(--text-4xl); }
h4 { font-size: var(--text-3xl); }
h5 { font-size: var(--text-2xl); }
h6 { font-size: var(--text-xl); }

.body-lg { font-size: var(--text-lg); line-height: 1.7; color: var(--text-muted); }
.body { font-size: var(--text-base); color: var(--text-muted); }
.body-sm { font-size: var(--text-sm); color: var(--text-muted); }

/* =========================================
   DEGRADÊ / LETTERING TRANSPARENTE
   ========================================= */
.degrade {
  background: linear-gradient(to right, var(--color-primary) 0%, var(--color-accent) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.degrade-gold {
  background: linear-gradient(to right, var(--color-secondary) 0%, #E6D0B3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent;
}

/* =========================================
   HERO SECTION (ANIMATED BACKGROUND - AUGUSTO MAIA EXACT)
   ========================================= */
.hero-am-exact {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #030a10; /* Fundo bastante escuro, quase preto */
}
.hero-am-exact::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  /* Imagem de fundo do site do Augusto Maia com as ondas de luz cyan */
  background: url("https://augustomaia.com.br/wp-content/uploads/2025/10/bgaugusto04-scaled.jpg") center center / cover no-repeat !important;
  pointer-events: none;
  transform-origin: center center;
  transform: translate(-50%, -50%);
  animation: mov 20s linear infinite;
  z-index: 0;
  opacity: 0.8;
}

/* HEADER / NAVBAR DA HERO */
.header-am {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 20px 40px;
}
.header-am-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.header-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1); /* Torna a logo totalmente branca */
}
.mobile-menu-toggle {
  display: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}
.header-nav {
  display: flex;
  gap: 40px; /* Melhor espaçamento do menu */
}
.header-nav a {
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  transition: color 0.3s;
}
.header-nav a:hover {
  color: #00CCFF;
}

.header-btn.meu-botao .elementor-button {
  background-color: #00CCFF !important; /* Cor clara/cyan para dar destaque */
  color: #000000 !important; /* Texto escuro para contraste */
  font-weight: 600;
}
.header-btn.meu-botao .elementor-button svg path {
  fill: #000000;
}

/* CONTENT CENTER HERO */
.hero-am-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}
.hero-am-content h2 {
  font-size: 6rem; /* Texto bem grande */
  color: #ffffff !important;
  font-weight: 700;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hero-arrow-down {
  margin-top: 20px;
}
.hero-arrow-down svg {
  animation: floatArrow 2s infinite ease-in-out;
}
@keyframes floatArrow {
  0% { transform: translateY(0); }
  50% { transform: translateY(10px); }
  100% { transform: translateY(0); }
}

@keyframes mov {
  0% { transform: translate(-50%, -50%) scale(1); filter: blur(2px) saturate(1); }
  50% { transform: translate(-50%, -50%) scale(1.3); filter: blur(5px) saturate(1.82); }
  100% { transform: translate(-50%, -50%) scale(1); filter: blur(2px) saturate(1); }
}

/* =========================================
   ANIMAÇÕES DE SCROLL E GSAP (AUGUSTO MAIA STYLE)
   ========================================= */
.scroll-left {
  transform: translatex(-40px);
  filter: blur(5px);
  opacity: 0;
  transition: 0.8s ease-out;
}
.scroll-right {
  transform: translatex(40px);
  filter: blur(5px);
  opacity: 0;
  transition: 0.8s ease-out;
}
.scroll-bottom {
  transform: translatey(40px);
  filter: blur(5px);
  opacity: 0;
  transition: 0.8s ease-out;
}
.scroll-top {
  transform: translatey(-40px);
  opacity: 0;
  transition: 0.8s ease-out;
}
.ativo {
  transform: translate(0px, 0px) !important;
  filter: blur(0px) !important;
  opacity: 1 !important;
}

/* GSAP Animated Title Setup */
.titulo-animado-letra { text-align: center; line-height: 1.2; }
.titulo-animado-letra span { opacity: 0; font-family: var(--font-heading) !important; }
.word-block { display: inline-block; white-space: nowrap; margin-right: 0.3em; }
.word-block span { display: inline; }

/* =========================================
   COMPONENTES UI: BOTÕES EXATOS E BOTÕES DS
   ========================================= */
/* Botão "Meu Botão" Original Augusto Maia */
.meu-botao .elementor-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--color-bg-dark); /* Fundo escuro */
  color: #fff;
  fill: #fff;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  transition: all 0.3s ease;
  animation: onda-suave 1.5s infinite;
  border: none;
  cursor: pointer;
}
.meu-botao .elementor-button:hover { transform: scale(1.02); }
@keyframes onda-suave {
  0% { box-shadow: 0 0 0 0 rgba(0, 204, 255, 0.4); } /* Cyan pulse */
  100% { box-shadow: 0 0 20px 20px rgba(0, 204, 255, 0); }
}

/* Outros Botões Padrões */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; font-family: var(--font-body); font-weight: 600; font-size: var(--text-base);
  border-radius: var(--radius-md); text-decoration: none; transition: all 0.3s ease; cursor: pointer; border: none;
}
.btn-primary { background-color: var(--color-primary); color: var(--color-white); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-secondary { background-color: var(--color-secondary); color: var(--color-white); }
.btn-secondary:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); background-color: var(--color-secondary-dark); }
.btn-outline { background-color: transparent; border: 2px solid var(--color-primary); color: var(--color-primary); }
.btn-outline:hover { background-color: var(--color-primary); color: var(--color-white); }
.btn-ghost { background-color: transparent; color: var(--color-primary); }
.btn-ghost:hover { background-color: var(--color-bg-muted); }

/* =========================================
   COMPONENTES UI: CARDS, INPUTS E BADGES
   ========================================= */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  border: 1px solid rgba(0,0,0,0.05);
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(26, 54, 93, 0.1);
}

.form-group { display: flex; flex-direction: column; gap: var(--space-2); margin-bottom: var(--space-4); }
.form-label { font-size: var(--text-sm); font-weight: 600; color: var(--text-main); }
.form-input {
  padding: 12px 16px; border-radius: var(--radius-md); border: 1px solid #CBD5E1;
  font-family: var(--font-body); font-size: var(--text-base); transition: all 0.3s ease;
  background-color: var(--color-white); outline: none;
}
.form-input:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(26,54,93,0.1); }

.badge {
  display: inline-flex; align-items: center; padding: 4px 12px;
  border-radius: var(--radius-full); font-size: var(--text-xs); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.badge-primary { background-color: rgba(26,54,93,0.1); color: var(--color-primary); }
.badge-success { background-color: rgba(16,185,129,0.1); color: var(--color-success); }
.badge-accent { background-color: rgba(0,204,255,0.1); color: #0088AA; }

/* =========================================
   LAYOUT UTILITIES
   ========================================= */
.container { max-width: 1280px; margin: 0 auto; padding: 0 var(--space-8); }
.section-padding { padding: var(--space-24) 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-8); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }

/* DocumentAção Visual Specifica */
.ds-block { margin-bottom: var(--space-16); padding-top: var(--space-8); border-top: 1px solid rgba(0,0,0,0.05); }
.ds-block-title { font-size: var(--text-xl); margin-bottom: var(--space-6); color: var(--color-secondary); letter-spacing: 2px; text-transform: uppercase; }

.color-swatch-wrap { display: flex; flex-direction: column; gap: var(--space-2); }
.color-swatch { width: 100%; height: 100px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.color-swatch.white-border { border: 1px solid #E2E8F0; }
.color-info { font-family: var(--font-mono); font-size: var(--text-xs); color: var(--text-muted); line-height: 1.4; }

.font-demo { padding: var(--space-4); border: 1px dashed #CBD5E1; border-radius: var(--radius-md); margin-bottom: var(--space-4); }

/* Navbar Demo */
.navbar-demo {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--space-4) var(--space-8); background-color: var(--color-white);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}
.nav-links { display: flex; gap: var(--space-6); }
.nav-links a { color: var(--text-main); text-decoration: none; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: var(--color-primary); }

/* =========================================
   BOTÃO WHATSAPP FLUTUANTE
   ========================================= */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 35px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
  box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
  color: #FFF;
}

/* =========================================
   RESPONSIVIDADE (MEDIA QUERIES)
   ========================================= */

/* TABLETS E TELAS MENORES (Max 1024px) */
@media (max-width: 1024px) {
  .container {
    padding: 0 var(--space-4);
  }
  
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  h1 { font-size: var(--text-5xl); }
  h2 { font-size: var(--text-4xl); }
  
  .hero-am-content h2 {
    font-size: 4rem !important;
  }
  
  .section-premium-bg {
    padding: 80px 0;
  }
  
  .premium-title {
    font-size: 2.8rem;
  }
  
  .header-nav {
    gap: 20px;
  }
}

/* SMARTPHONES E MOBILE (Max 768px) */
@media (max-width: 768px) {
  /* Layout Global e Grids */
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr !important;
  }
  
  .section-padding {
    padding: var(--space-12) 0;
  }
  
  /* Cabeçalho e Navegação */
  .header-am-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .mobile-menu-toggle {
    display: block;
    z-index: 9999;
    position: relative;
  }
  
  .header-logo {
    z-index: 9999;
    position: relative;
  }
  
  .header-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(3, 10, 16, 0.85); /* Fundo semi-transparente */
    backdrop-filter: blur(15px); /* Efeito Blur */
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 0;
    margin: 0;
    z-index: 9998;
    border-radius: 0;
  }
  
  .header-nav a {
    font-size: 1.5rem;
    font-weight: 500;
  }
  
  .header-btn {
    display: none !important; /* Botão removido do menu mobile */
  }
  
  /* Menu Open State */
  .header-am-container.menu-open .header-nav {
    display: flex;
  }
  
  /* Hero Section */
  .hero-am-content {
    padding: 40px 15px;
  }
  
  .hero-am-content h2 {
    font-size: 2.5rem !important;
    margin-bottom: 30px;
  }
  
  /* Tipografia Base Ajustada para Mobile */
  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-3xl); }
  h3 { font-size: var(--text-2xl); }
  h4 { font-size: var(--text-xl); }
  
  .stat-number, .premium-stats-number {
    font-size: 3rem !important;
  }
  
  /* Imagens, Cards e Formulários */
  .team-image {
    height: auto;
    aspect-ratio: 1 / 1;
  }
  
  .form-group.grid-2 {
    grid-template-columns: 1fr !important;
  }
  
  .card {
    padding: var(--space-4);
  }
  
  /* Botão WhatsApp Original Preservado e Mesclado */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 28px;
  }
  
  /* Rodapé / Footer */
  .footer-cs .grid-4 {
    gap: 30px;
    text-align: center;
  }
  
  .footer-contact li {
    justify-content: center;
  }
  
  .social-links {
    justify-content: center;
  }
}
