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

:root {
  /* Colors */
  --color-primary: #011e31; /* Azul muito escuro */
  --color-primary-light: #0c4160; /* Azul escuro */
  --color-secondary: #68869a; /* Azul acinzentado (Botões e Destaques) */
  --color-secondary-hover: #506a7c; /* Tom mais escuro para hover */
  --color-white: #FFFFFF;
  --color-bg: #dad9d6; /* Cinza claro quente (Fundos claros) */
  --color-text-main: #011e31; /* Texto principal acompanhando a cor mais escura */
  --color-text-muted: #68869a; /* Texto secundário */
  --color-border: #d7e0eb; /* Azul bem claro para bordas */

  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 24px rgba(0,0,0,0.12);

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Transitions */
  --transition: all 0.3s ease;
}

.theme-dark {
  --color-primary: #ffffff;
  --color-primary-light: #f8f9fa;
  --color-secondary: #007bff; /* Vibrant Blue */
  --color-secondary-hover: #0056b3; /* Darker Blue */
  --color-card-bg: #1E293B; /* Navy Card Background */
  --color-bg: #0F172A; /* Deep Dark Navy */
  --color-text-main: #F1F5F9;
  --color-text-muted: #94A3B8;
  --color-border: rgba(0, 123, 255, 0.2); /* Subtle Coral border */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Glassmorphism Utilities */
.glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-main);
  background-color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.theme-dark {
  background-color: var(--color-bg);
  color: var(--color-text-main);
}

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

p {
  margin-bottom: 1rem;
}

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

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

.site-logo {
  max-width: 250px; /* Aumentado */
  height: auto;
  display: block;
  margin: 0;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 15px rgba(0, 0, 0, 0.6));
}

.logo-wrapper {
  position: absolute;
  top: 0;
  padding-top: 1.5rem;
  left: 0;
  width: 100%;
  z-index: 10;
}

ul {
  list-style: none;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-fluid {
  width: 100%;
  padding: 0 3rem;
}

section {
  padding: 5rem 0;
}

.bg-light {
  background-color: var(--color-bg);
}

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

.bg-primary h1, .bg-primary h2, .bg-primary h3, .bg-primary p {
  color: var(--color-white);
}

.bg-primary .card h1, .bg-primary .card h2, .bg-primary .card h3 {
  color: var(--color-primary);
}

.bg-primary .card p {
  color: var(--color-text-main);
}

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

/* Typography Utilities */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 800px;
  margin: 0 auto 3rem;
}

/* Components */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--color-secondary);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(104, 134, 154, 0.3);
}

.theme-dark .btn-primary {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-hover) 100%);
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.5), 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--color-secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(104, 134, 154, 0.4);
  color: var(--color-white);
}

.theme-dark .btn-primary:hover {
  box-shadow: 0 0 30px rgba(0, 123, 255, 0.8), 0 6px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px);
}

.btn-block {
  display: block;
  width: 100%;
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--color-border);
}

.theme-dark .card {
  background: var(--color-card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

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

.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(104, 134, 154, 0.1);
}

/* Input with Icon */
.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 1rem;
  font-size: 1.125rem;
  z-index: 2;
  filter: grayscale(1);
  opacity: 0.7;
}

.input-with-icon .form-control {
  padding-left: 2.75rem;
}

/* LGPD Checkbox */
.lgpd-checkbox {
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  cursor: pointer;
  line-height: 1.4;
  text-align: left;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.2rem;
  min-width: 16px;
  height: 16px;
  accent-color: var(--color-secondary);
  cursor: pointer;
}

.checkbox-label a {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 600;
}

.checkbox-label a:hover {
  color: var(--color-secondary);
}

/* Checkmarks */
.check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-white);
  background-color: var(--color-secondary);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* Footer */
footer {
  background-color: var(--color-primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0;
  text-align: center;
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

/* Footer Styles */
.site-footer {
  padding: 2rem 0 1rem;
  background-color: #00121f;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-site-logo {
  max-width: 120px;
  opacity: 0.7;
  transition: var(--transition);
  filter: brightness(0) invert(1);
}

.footer-site-logo:hover {
  opacity: 1;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--color-white);
  text-decoration: underline;
}

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

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--color-white);
  font-size: 1.25rem;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--color-secondary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  font-size: 0.875rem;
  text-align: center;
}  
  section {
    padding: 3rem 0;
  }

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  justify-content: center;
}

.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.wheel {
  width: 4px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  animation: scrollWheel 2s infinite ease-in-out;
}

@keyframes scrollWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(12px);
    opacity: 1;
  }
  100% {
    transform: translateY(12px);
    opacity: 0;
  }
}

/* Scroll to Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--color-secondary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background-color: var(--color-secondary-hover);
  color: #ffffff;
  transform: translateY(-5px);
}
