/* ===== DOMAIN - AUDITORIA FINANCEIRA ===== */
/* Paleta de cores únicas e modernas */
:root {
  --fundo: #054B44;           /* Fundo: profundo esmeralda */
  --acento-principal: #FFB200; /* Laranja solar */
  --acento-secundario: #3DB5E6; /* Azul celestial */
  --texto: #FDFCF9;           /* Branco quente */
  --decorativo: #FF6B6B;      /* Rosa coral */
  --hover: #C4F000;           /* Lima brilhante */
}

/* ===== RESET E BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--fundo);
  color: var(--texto);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== ANIMAÇÕES CSS ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.slide-up {
  animation: slideUp 0.6s ease-out forwards;
}

.pulse-hover:hover {
  animation: pulse 0.3s ease-in-out;
}

/* ===== LAYOUT PRINCIPAL ===== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
  color: var(--acento-principal);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--acento-secundario), var(--decorativo));
  border-radius: 2px;
}

/* ===== HEADER ===== */
.header {
  background: rgba(5, 75, 68, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  color: var(--acento-principal);
  text-decoration: none;
  letter-spacing: 1px;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  color: var(--texto);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav a::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--acento-principal);
  transition: width 0.3s ease;
}

.nav a:hover {
  color: var(--acento-principal);
}

.nav a:hover::before {
  width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(5, 75, 68, 0.9), rgba(61, 181, 230, 0.8)),
              url('./img/SxQsNq.jpg') center/cover;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 30%, rgba(5, 75, 68, 0.4));
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  color: var(--texto);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, var(--acento-principal), var(--decorativo));
  color: var(--fundo);
  padding: 18px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(255, 178, 0, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background: linear-gradient(45deg, var(--hover), var(--acento-secundario));
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(196, 240, 0, 0.4);
}

/* ===== CARDS E COMPONENTES ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border-color: var(--acento-principal);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--acento-principal), var(--acento-secundario));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: var(--fundo);
  box-shadow: 0 10px 25px rgba(255, 178, 0, 0.3);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--acento-principal);
}

.card p {
  opacity: 0.9;
  line-height: 1.6;
}

/* ===== STEPS (ETAPAS) ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.step {
  position: relative;
  text-align: center;
  padding: 30px 20px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--decorativo), var(--acento-secundario));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--texto);
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.step h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--acento-principal);
}

/* ===== FORMULÁRIO ASSIMÉTRICO ===== */
.form-section {
  background: linear-gradient(135deg, rgba(61, 181, 230, 0.1), rgba(255, 107, 107, 0.05));
  position: relative;
  overflow: hidden;
}

.form-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.form-info {
  padding: 40px;
}

.form-info h3 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: var(--acento-principal);
}

.form-info p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.contact-form {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  padding: 50px;
  border-radius: 25px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: rotate(-1deg);
}

.form-grid {
  display: grid;
  gap: 25px;
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--acento-principal);
  font-weight: 500;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: var(--texto);
  font-size: 1rem;
  transition: all 0.3s ease;
}

/* Estilos específicos para select e options */
.form-group select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FDFCF9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
  padding-right: 50px;
}

.form-group select option {
  background: var(--fundo);
  color: var(--texto);
  padding: 10px;
  border: none;
  font-size: 1rem;
}

.form-group select option:hover,
.form-group select option:checked {
  background: var(--acento-principal);
  color: var(--fundo);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--acento-principal);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(255, 178, 0, 0.2);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 20px 0;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
  accent-color: var(--acento-principal);
}

.checkbox-group label {
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

/* ===== TESTIMONIALS SLIDER ===== */
.testimonials {
  overflow: hidden;
  position: relative;
}

.testimonials-slider {
  display: flex;
  transition: transform 0.5s ease;
  animation: autoSlide 15s infinite;
}

@keyframes autoSlide {
  0%, 30% { transform: translateX(0); }
  35%, 65% { transform: translateX(-100%); }
  70%, 100% { transform: translateX(-200%); }
}

.testimonial {
  min-width: 100%;
  padding: 40px;
  text-align: center;
}

.testimonial-content {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.testimonial p {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 25px;
  opacity: 0.95;
}

.testimonial-author {
  color: var(--acento-principal);
  font-weight: bold;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, rgba(5, 75, 68, 0.95), rgba(0, 0, 0, 0.8));
  padding: 60px 0 20px;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: var(--acento-principal);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.footer-section p,
.footer-section li {
  opacity: 0.9;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: var(--texto);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--acento-principal);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  opacity: 0.8;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(5, 75, 68, 0.98);
  backdrop-filter: blur(10px);
  padding: 20px;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
  z-index: 1001;
  transform: translateY(100%);
  transition: all 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
}

.cookie-actions {
  display: flex;
  gap: 15px;
}

.cookie-btn {
  padding: 10px 25px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: var(--acento-principal);
  color: var(--fundo);
}

.cookie-accept:hover {
  background: var(--hover);
}

.cookie-decline {
  background: transparent;
  color: var(--texto);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 3rem; }
  .section-title { font-size: 2rem; }
  .form-container { grid-template-columns: 1fr; }
  .contact-form { transform: none; }
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 20px;
  }
  
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .hero {
    padding: 120px 0 60px;
    min-height: 90vh;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .card {
    padding: 30px 20px;
  }
  
  .contact-form {
    padding: 30px 25px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
}

/* ===== ACESSIBILIDADE ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus states for accessibility */
.cta-button:focus,
.form-group input:focus,
.form-group select:focus,
.cookie-btn:focus {
  outline: 2px solid var(--acento-principal);
  outline-offset: 2px;
}

/* ===== POLÍTICAS PAGES ===== */
.policy-page {
  padding-top: 120px;
  min-height: 100vh;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-content h1 {
  color: var(--acento-principal);
  margin-bottom: 30px;
  font-size: 2.5rem;
}

.policy-content h2 {
  color: var(--acento-secundario);
  margin: 40px 0 20px;
  font-size: 1.5rem;
}

.policy-content p {
  margin-bottom: 20px;
  opacity: 0.9;
  line-height: 1.7;
}

.policy-content ul {
  margin: 20px 0;
  padding-left: 30px;
}

.policy-content li {
  margin-bottom: 10px;
  opacity: 0.9;
}

/* ===== PÁGINA OBRIGADO ===== */
.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--fundo), rgba(61, 181, 230, 0.1));
  text-align: center;
  padding-top: 80px;
}

.thank-you-content {
  max-width: 600px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  padding: 80px 60px;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.thank-you-content h1 {
  font-size: 3rem;
  color: var(--acento-principal);
  margin-bottom: 30px;
}

.thank-you-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, var(--acento-principal), var(--decorativo));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
  font-size: 3rem;
  animation: pulse 2s infinite;
}
