/* Reset e base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

/* Variáveis CSS */
:root {
    --primary: #9333ea; /* Roxo da nova logo */
    --primary-foreground: #ffffff;
    --accent: #a855f7; /* Roxo mais claro para destaque */
    --accent-foreground: #ffffff;
    --muted: #f8fafc;
    --muted-foreground: #64748b;
    --border: #e2e8f0;
    --input: #e2e8f0;
    --ring: #94a3b8;
    --background: #ffffff;
    --foreground: #1a1a1a;
}

/* Utilitários */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.top-0 { top: 0; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.inline-flex { display: inline-flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-16 { margin-bottom: 4rem; }
.mr-2 { margin-right: 0.5rem; }
.mt-8 { margin-top: 2rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-full { border-radius: 9999px; }
.border { border-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }
.border-input { border-color: var(--input); }
.bg-white { background-color: #ffffff; }
.bg-primary { background-color: var(--primary); }
.bg-accent { background-color: var(--accent); }
.text-primary { color: var(--primary); }
.text-primary-foreground { color: var(--primary-foreground); }
.text-accent-foreground { color: var(--accent-foreground); }
.text-foreground { color: var(--foreground); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-white { color: #ffffff; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.italic { font-style: italic; }
.block { display: block; }
.whitespace-nowrap { white-space: nowrap; }
.transition-colors { transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out; }

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}

.h-10 {
    height: 2.5rem;
}

/* Hero Section */
.parallax-bg {
    background-image: url('assets/hero-image.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-gradient {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.9) 0%, rgba(59, 130, 246, 0.9) 100%);
}

.text-white\/90 {
    color: rgba(255, 255, 255, 0.9);
}

/* Benefícios */
.bg-muted\/30 {
    background-color: rgba(248, 250, 252, 0.3);
}

.bg-primary\/10 {
    background-color: rgba(147, 51, 234, 0.1);
}

.w-16 {
    width: 4rem;
}

.h-16 {
    height: 4rem;
}

.h-8 {
    width: 2rem;
    height: 2rem;
}

.h-5 {
    width: 1.25rem;
    height: 1.25rem;
}

.h-4 {
    width: 1rem;
    height: 1rem;
}

.w-8 {
    width: 2rem;
}

.w-5 {
    width: 1.25rem;
}

.w-4 {
    width: 1rem;
}

/* Formulário */
.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

input, textarea {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--input);
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(147, 51, 234, 0.2);
}

button {
    cursor: pointer;
    border: none;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: background-color 0.15s ease-in-out;
}

button:hover {
    opacity: 0.9;
}

/* Links */
a {
    text-decoration: none;
    color: inherit;
    transition: color 0.15s ease-in-out;
}

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

/* Stars */
.fill-yellow-400 {
    fill: #facc15;
}

.text-yellow-400 {
    color: #facc15;
}

/* Footer */
.text-primary-foreground\/80 {
    color: rgba(255, 255, 255, 0.8);
}

.text-primary-foreground\/60 {
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (min-width: 768px) {
    .md\:flex { display: flex; }
    .md\:hidden { display: none; }
    .md\:inline-flex { display: inline-flex; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
    .md\:text-5xl { font-size: 3rem; }
    .md\:text-7xl { font-size: 4.5rem; }
    .md\:text-2xl { font-size: 1.5rem; }
    .form-grid { grid-template-columns: repeat(2, 1fr); }
    .parallax-bg { background-attachment: fixed; }
}

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

@media (max-width: 768px) {
    .parallax-bg { background-attachment: scroll; }
    .text-5xl { font-size: 2.5rem; }
    .text-4xl { font-size: 2rem; }
}

/* Flex utilities */
.flex-col { flex-direction: column; }

@media (min-width: 640px) {
    .sm\:flex-row { flex-direction: row; }
}

/* Height utilities */
.h-12 {
    height: 3rem;
}

/* SVG inline styles */
svg {
    display: inline-block;
    vertical-align: middle;
}

/* Hover effects */
.hover\:bg-primary\/90:hover {
    background-color: rgba(147, 51, 234, 0.9);
}

.hover\:bg-accent\/90:hover {
    background-color: rgba(168, 85, 247, 0.9);
}

.hover\:text-primary:hover {
    color: var(--primary);
}

.hover\:text-primary-foreground:hover {
    color: var(--primary-foreground);
}

/* Focus styles */
.focus-visible\:outline-none:focus-visible {
    outline: none;
}

.focus-visible\:ring-2:focus-visible {
    box-shadow: 0 0 0 2px var(--ring);
}

.focus-visible\:ring-ring:focus-visible {
    box-shadow: 0 0 0 2px var(--ring);
}

.focus-visible\:ring-offset-2:focus-visible {
    box-shadow: 0 0 0 2px var(--background), 0 0 0 4px var(--ring);
}

/* Disabled styles */
.disabled\:pointer-events-none:disabled {
    pointer-events: none;
}

.disabled\:opacity-50:disabled {
    opacity: 0.5;
}

/* Ring offset */
.ring-offset-background {
    --ring-offset-color: var(--background);
}

#whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366; /* cor oficial */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: transform .15s ease, box-shadow .15s ease, opacity .2s ease;
}
#whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

/* opcional: esconder no desktop e mostrar só no mobile */
@media (min-width: 768px) {
  /* comente esta regra se quiser mostrar em todas as telas */
  /* #whatsapp-float { display: none; } */
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
