:root {
  /* Colors */
  --primary-color: #223396;
  --primary-dark: #1a2870;
  --secondary-color: #f16c00;
  --secondary-dark: #d45a00;
  --accent-color: #4da6ff;
  --success-color: #00c851;
  --warning-color: #ffbb33;
  --error-color: #ff4444;

  /* Neutrals */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Typography */
  --font-primary: "Poppins", sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;

  /* Z-index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal: 1040;
  --z-popover: 1050;
  --z-tooltip: 1060;
  --z-toast: 1070;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
}

.main-header {
  width: 100%;
  height: 85px;
  background-color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 1000;
}

.main-header-center-content {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-header img {
  width: 160px;
}

.main-header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.main-header nav ul li {
  display: inline;
}

.main-header nav ul li a {
  position: relative;
  text-decoration: none;
  color: #ffffff;
  font-weight: 400;
  transition: color 0.3s ease;
}

.main-header nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.4s ease;
}

.main-header nav ul li a:hover {
  color: var(--secondary-color);
}

.main-header nav ul li a:hover::after {
  width: 100%;
}

.main-header-client-login {
  text-decoration: none;
  color: var(--secondary-color);
  font-weight: 500;
  padding: 10px 10px;
  border-radius: 5px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  display: block;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-menu {
  display: none;
}

.nav-menu ul {
  list-style: none;
  display: none;
  gap: 20px;
}

.nav-menu ul li a {
  text-decoration: none;
  color: white;
  position: relative;
}

.nav-menu ul li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--secondary-color, #00ffff);
  transition: width 0.4s ease;
}

.nav-menu ul li a:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .main-header-nav-desktop,
  .main-header-client-login {
    display: none;
  }

  .main-header {
    max-width: 100%;
  }

  .main-header-center-content {
    width: 90%;
  }

  .main-header img {
    width: 150px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    background: #111;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
  }
}

.main-carrousel-div {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.carrousel-div {
  width: 100%;
  max-width: 2565px;
  height: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  margin-top: 85px;
}

.carrousel {
  width: 100%;
  height: 100%;
  position: relative;
}

.carrousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carrousel-image.active {
  opacity: 1;
  z-index: 1;
}

.progress-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.indicator {
  width: 70px;
  height: 3px;
  background: rgb(219, 219, 219);
  overflow: hidden;
}

.progress {
  width: 0%;
  height: 100%;
  background-color: var(--secondary-color);
  transition: linear;
}

.desktop {
  width: 330px;
  height: auto;
  padding: 30px;
  background-color: #000000;
  position: absolute;
  border-radius: 10px;
  right: 0;
  margin-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.mobile {
  display: none;
}

.quote-form-container {
  width: 400px;
  height: 400px;
  max-height: 400px;
  position: absolute;
  right: 30px;
  top: 56%;
  transform: translateY(-50%);
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  animation: slideInFromRight 0.6s ease-out;
}

.form-header-slider {
  margin-bottom: 16px;
  text-align: center;
  flex-shrink: 0;
}

.form-title-slider {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e293b;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin: 0 0 6px 0;
  margin-top: 32px;
}

.form-subtitle-slider {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.3;
  font-weight: 400;
  margin: 0;
}

.form-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
  padding-right: 4px;
}

.input-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.input-row {
  display: flex;
  gap: 10px;
  width: 100%;
}

.input-wrapper {
  flex: 1;
  min-width: 0;
}

.form-input,
.form-select {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #374151;
  background: #ffffff;
  transition: all 0.3s ease;
  outline: none;
  font-weight: 500;
  height: 42px;
  box-sizing: border-box;
  font-family: inherit;
}

.form-input:focus,
.form-select:focus {
  border-color: #ff6b35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
  transform: translateY(-1px);
}

.form-input::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 14px;
  padding-right: 36px;
  appearance: none;
}

.form-select:hover {
  border-color: #d1d5db;
}

.checkbox-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 0.8rem;
  color: #4b5563;
  font-weight: 500;
  line-height: 1.3;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 14px;
  height: 14px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
  background: #ffffff;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-color: #ff6b35;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 9px;
  font-weight: bold;
}

.checkbox-text {
  flex: 1;
  margin-top: 3px;
}

.terms-link {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.terms-link:hover {
  color: #e55a2b;
  text-decoration: underline;
}

.submit-button {
  width: 100%;
  padding: 12px 18px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  height: 46px;
}

.submit-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.submit-button:hover::before {
  left: 100%;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.submit-button:active {
  transform: translateY(0);
}

.button-icon {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.submit-button:hover .button-icon {
  transform: translateX(4px);
}

.form-information-text {
  font-size: 0.75rem;
  color: #6b7280;
  text-align: center;
}

.form-information-text a {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

#customValueGroup {
  background: #fef7f0;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #fed7aa;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
    padding: 0 10px;
  }
  to {
    opacity: 1;
    max-height: 70px;
    padding: 10px;
  }
}

.form-body::-webkit-scrollbar {
  width: 4px;
}

.form-body::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 2px;
}

.form-body::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 2px;
}

.form-body::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.quote-form-mobile {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  display: none;
}

.quote-form-mobile a {
  text-decoration: none;
}

.mobile-quote-trigger {
  padding: 14px 24px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-quote-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1200px) {
  .quote-form-container {
    width: 380px;
    right: 20px;
  }
}

@media (max-width: 992px) {
  .quote-form-container {
    width: 360px;
    right: 15px;
  }

  .form-title-slider {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .quote-form-container.desktop {
    display: none;
  }

  .quote-form-mobile {
    display: block;
  }
}

.quote-form-container:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transform: translateY(-50%) scale(1.02);
}

.form-input:invalid:not(:placeholder-shown),
.form-select:invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-input:valid:not(:placeholder-shown) {
  border-color: #10b981;
}

/* ===== SEÇÃO PRINCIPAL - MOBILE FIRST ===== */
.main-section {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  padding-top: 70px;
}

.main-section-center-content {
  width: 100%;
  height: auto;
  min-height: 60vh;
  max-width: 1200px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  gap: 30px;
  box-sizing: border-box;
}

.main-section-presentation-items-div {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-section-presentation-items-div img {
  width: 100%;
  height: auto;
  max-width: 350px;
  margin-top: 0;
}

/* ===== HERO TEXT ===== */
.hero-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title {
  font-size: clamp(1.75rem, 6vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.2;
  text-align: center;
}

.title-line {
  display: block;
}

.title-highlight {
  color: var(--secondary-color);
}

.hero-subtitle {
  font-size: clamp(0.875rem, 3.5vw, 1.125rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-align: left;
}

/* ===== HERO ACTIONS ===== */
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.hero-actions > div {
  width: 100%;
}

.hero-actions-a {
  font-size: clamp(0.875rem, 3vw, 1rem);
  font-weight: 600;
  padding: 12px 20px;
  margin: 0 0 8px 0;
  text-align: center;
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.valores-descricao {
  font-size: clamp(0.75rem, 2.5vw, 0.875rem);
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  text-align: center;
  line-height: 1.5;
}

/* ===== HERO FEATURES ===== */
.hero-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-icon {
  width: 20px;
  height: 20px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
}

.feature-item span:last-child {
  font-size: clamp(0.875rem, 3vw, 1rem);
  color: var(--white);
  font-weight: 500;
}

/* ===== MEDIA QUERIES ===== */
@media (min-width: 480px) {
  .main-section-center-content {
    padding: 20px;
    margin-top: 40px;
    gap: 35px;
  }

  .main-section-presentation-items-div img {
    max-width: 400px;
  }

  .hero-features {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .feature-item {
    flex: 0 1 auto;
    min-width: 140px;
  }
}

@media (min-width: 768px) {
  .main-section-center-content {
    min-height: 75vh;
    margin-top: 50px;
    gap: 40px;
  }

  .hero-title {
    display: flex;
    justify-items: center;
    text-align: left;
    font-size: 3rem !important;
  }

  .hero-actions {
    flex-direction: row;
    gap: 30px;
  }

  .hero-actions > div {
    flex: 1;
  }

  .hero-actions-a {
    width: auto;
    padding: 15px 25px;
  }

  .valores-descricao {
    text-align: left;
  }

  .hero-features {
    justify-content: flex-start;
    gap: 20px;
  }

  .main-section-presentation-items-div img {
    max-width: 500px;
  }
}

@media (min-width: 1024px) {
  .main-section-center-content {
    flex-direction: row;
    min-height: 85vh;
    gap: 50px;
    align-items: center;
  }

  .main-section-presentation-items-div {
    flex: 1;
  }

  .hero-text {
    flex: 1;
  }

  .main-section-presentation-items-div img {
    max-width: 100%;
    width: 100%;
    margin-top: 50px;
  }
}

@media (min-width: 1200px) {
  .main-section-center-content {
    padding: 40px;
  }
}

/* ===== ACESSIBILIDADE ===== */
@media (prefers-reduced-motion: reduce) {
  .feature-item {
    transition: none;
  }
}

/* Focus states */
.hero-actions-a:focus {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

.groups-section {
  width: 100%;
  height: auto;
  padding-top: 100px;
  padding-bottom: 170px;
}

.hero-text {
  text-align: center;
}

@media (min-width: 768px) {
  .hero-text {
    text-align: left;
  }
}

.hero-title {
  font-family: var(--font-primary);
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-6);
  color: var(--white);
}

.title-line {
  display: block;
}

.title-highlight {
  display: block;
  background: linear-gradient(45deg, var(--secondary-color), #ffaa00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-8);
  max-width: 500px;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: var(--text-xl);
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.hero-actions-a {
  color: var(--secondary-color);
  font-size: 22px;
}

.valores-descricao {
  color: white;
  font-size: 18px;
}

@media (min-width: 768px) {
  .hero-actions {
    flex-direction: row;
    gap: var(--space-6);
  }
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

@media (min-width: 768px) {
  .hero-features {
    flex-direction: row;
    gap: var(--space-6);
  }
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 17px;
  font-weight: 500;
}

.feature-icon {
  width: 20px;
  height: 20px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-secondary);
  font-size: 32px;
  font-weight: 700;
  padding-bottom: 30px;
  color: var(--white);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

.groups-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.group-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f5f9;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.group-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #f7931e);
}

.group-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15);
  border-color: #ff6b35;
}

.card-header {
  margin-bottom: 24px;
}

.group-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.group-description {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
}

.main-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
  padding: 20px;
  background: #fef7f0;
  border-radius: 12px;
  border: 1px solid #fed7aa;
}

.info-item {
  text-align: center;
}

.info-label {
  display: block;
  font-size: 0.85rem;
  color: #92400e;
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ea580c;
}

.info-value.credit {
  font-size: 1.4rem;
  color: #dc2626;
}

/* Grupos de Parcelas */
.installments-section {
  margin-bottom: 32px;
}

.installment-group {
  margin-bottom: 20px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 10px;
  border-left: 4px solid #ff6b35;
}

.installment-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.installment-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.installment-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: #ffffff;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

.installment-label {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
}

.installment-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
}

/* Botão de Cotação */
.quote-button {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.quote-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.quote-button:hover::before {
  left: 100%;
}

.quote-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.quote-button:active {
  transform: translateY(0);
}

/* Responsividade */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem !important;
  }

  .main-info {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .installment-options {
    grid-template-columns: 1fr;
  }
}

.third-section {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 170px;
}

.third-section-content {
  width: 100%;
  height: auto;
  max-width: 1200px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.advantages {
  padding: var(--space-24) 0;
  background: linear-gradient(
    135deg,
    var(--seconday-color) 0%,
    var(--primary-color) 100%
  );
}

.advantages-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-16);
  align-items: center;
  text-align: center;
}

@media (min-width: 1024px) {
  .advantages-content {
    grid-template-columns: 1fr 1fr;
  }
}

.advantages-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .advantages-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.advantage-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
  transition: all var(--transition-normal);
}

.advantage-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.advantage-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  color: var(--white);
}

.advantage-icon svg {
  width: 24px;
  height: 24px;
}

.advantage-item h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-2);
}

.advantage-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-sm);
  line-height: 1.5;
}

.advantages-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.advantages-image {
  max-width: 100%;
  height: auto;
}

.fourth-section {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 150px;
}

.fouth-section-center-content {
  width: 100%;
  height: auto;
  max-width: 1200px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  text-align: center;
  transition: all var(--transition-normal);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  margin-bottom: var(--space-6);
}

.service-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.service-content h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-4);
}

.service-content ul {
  list-style: none;
  text-align: center;
}

.service-content li {
  margin-bottom: var(--space-2);
}

.service-content a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: var(--text-lg);
  transition: color var(--transition-normal);
  margin-right: 40px;
}

.service-content a:hover {
  color: var(--secondary-color);
}

.fifth-section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  box-sizing: border-box;
}

.fifth-section-center-content {
  width: 100%;
  height: auto;
  max-width: 1200px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.title-highlight {
  color: var(--secondary-color);
}

/* Carousel */
.locations-carousel {
  position: relative;
  margin-bottom: 60px;
  width: 100%;
  max-width: 800px;
}

.carousel-container {
  overflow: hidden;
  border-radius: var(--radius-2xl);
  background: var(--secondary-color);
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  height: 100%;
}

.location-card {
  min-width: 100%;
  flex-shrink: 0;
  padding: 30px 20px;
  text-align: center;
  color: var(--white);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

/* Location Icon */
.location-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  flex-shrink: 0;
}

.location-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Location Title */
.location-card h3 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

/* Location Details Grid */
.location-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  text-align: left;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.location-detail {
  padding: 15px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.location-detail h4 {
  font-size: clamp(1rem, 3vw, 1.125rem);
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--white);
}

.location-detail p {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.carousel-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.carousel-btn:active:not(:disabled) {
  transform: scale(0.95);
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Social Links */
.social-links {
  text-align: center;
  width: 100%;
  margin-bottom: 40px;
}

.social-links h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 25px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-icons a {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-icons a:active {
  transform: translateY(-1px);
}

.social-icons img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
  .fifth-section {
    padding: 20px 0;
  }

  .fifth-section-center-content {
    padding: 0 15px;
  }

  .location-card {
    padding: 20px 15px;
    min-height: 350px;
  }

  .location-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .location-details {
    gap: 15px;
  }

  .location-detail {
    padding: 12px;
  }

  .carousel-btn {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .social-icons {
    gap: 12px;
  }

  .social-icons a {
    width: 45px;
    height: 45px;
  }

  .social-icons img {
    width: 20px;
    height: 20px;
  }

  .advantages-visual {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .fifth-section-center-content {
    padding: 0 40px;
  }

  .location-card {
    padding: 40px 30px;
  }

  .location-details {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .location-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
  }
}

@media (min-width: 1024px) {
  .fifth-section-center-content {
    padding: 0 60px;
  }

  .location-card {
    padding: 50px 40px;
    min-height: 450px;
  }

  .social-icons {
    gap: 20px;
  }

  .social-icons a {
    width: 55px;
    height: 55px;
  }

  .social-icons img {
    width: 26px;
    height: 26px;
  }
}

@media (min-width: 1200px) {
  .locations-carousel {
    max-width: 900px;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .carousel-track {
    transition: none;
  }

  .carousel-btn,
  .social-icons a,
  .location-detail {
    transition: none;
  }
}

/* Focus states for accessibility */
.carousel-btn:focus,
.social-icons a:focus {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .location-detail {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
  }

  .carousel-btn {
    border-width: 3px;
  }
}

/* Widget WhatsApp */
.whatsapp-widget {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: var(--z-modal);
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  background: #25d366;
  border: none;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

.whatsapp-btn svg {
  width: 24px;
  height: 24px;
}

/* Formulário WhatsApp */
.whatsapp-form {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  background-color: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
}

.whatsapp-form.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.form-header {
  background: #25d366;
  color: var(--white);
  padding: var(--space-4);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-header h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin: 0;
}

.close-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: var(--text-xl);
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition-fast);
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Formulário */
#contact-form {
  padding: var(--space-6);
}

.form-group {
  margin-bottom: var(--space-4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: var(--space-2);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: var(--space-3);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  transition: border-color var(--transition-fast);
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group input.error,
.form-group select.error {
  border-color: var(--error-color);
}

.error-message {
  display: block;
  font-size: var(--text-xs);
  color: var(--error-color);
  margin-top: var(--space-1);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.error-message.show {
  opacity: 1;
}

/* Checkbox customizado - CORRIGIDO */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  cursor: pointer;
  font-size: var(--text-xs);
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
  opacity: 1;
  position: relative;
  transform: scale(0);
}

.checkmark {
  width: 16px;
  height: 16px;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  position: relative;
  margin-top: 2px;
  background: var(--white);
  transition: all var(--transition-fast);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 10px;
  font-weight: bold;
}

.checkbox-label a {
  color: var(--primary-color);
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

/* Botão de envio */
.submit-btn {
  width: 100%;
  background: #25d366;
  color: var(--white);
  border: none;
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.submit-btn:hover:not(:disabled) {
  background: #20b358;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-loading {
  display: none;
}

.submit-btn.loading .btn-text {
  display: none;
}

.submit-btn.loading .btn-loading {
  display: inline;
}

/* Responsividade MOBILE - CORRIGIDO */
@media (max-width: 767px) {
  .whatsapp-widget {
    bottom: var(--space-4);
    right: var(--space-4);
  }
  
  .whatsapp-form {
    width: calc(100vw - 32px);
    max-width: 350px;
    right: var(--space-4);
    bottom: 80px;
    left: auto;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  #contact-form {
    padding: var(--space-4);
  }
  
  .form-header {
    padding: var(--space-3) var(--space-4);
  }
  
  .form-header h3 {
    font-size: var(--text-base);
  }
}

@media (max-width: 480px) {
  .whatsapp-form {
    width: calc(100vw - 24px);
    right: 12px;
  }
  
  .whatsapp-widget {
    bottom: 12px;
    right: 12px;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-6);
  }
}

.footer {
  background: var(--gray-800);
  color: var(--white);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-section h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: var(--space-4);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: var(--space-2);
  margin-left: 0;
  padding-left: 0;
}

.footer-links a {
  color: var(--gray-300);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color var(--transition-normal);
  margin: 0;
  padding: 0;
  display: block;
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.contact-info {
  margin: 0;
  padding: 0;
}

.contact-info p {
  margin-bottom: var(--space-2);
  margin-left: 0;
  padding-left: 0;
  font-size: var(--text-sm);
}

.contact-info a {
  color: var(--secondary-color);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.footer-logos {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  margin-left: 0;
  padding-left: 0;
}

.footer-logos img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.authorization {
  text-align: left;
  margin: 0;
  padding: 0;
}

.authorization p {
  font-size: var(--text-sm);
  color: var(--gray-400);
  margin-bottom: var(--space-2);
  margin-left: 0;
  padding-left: 0;
}

.authorization img {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding-top: var(--space-6);
  margin-top: var(--space-8);
  text-align: center;
}

.footer-bottom p {
  font-size: var(--text-sm);
  color: var(--gray-400);
  margin: 0;
  padding: 0;
}

.footer-section {
  margin: 0;
  padding: 0;
}

.footer-section > * {
  margin-left: 0;
  padding-left: 0;
}

@media (max-width: 767px) {
  :root {
    --space-24: 4rem;
  }

  .hero {
    min-height: 80vh;
    padding: var(--space-12) 0;
  }

  .section-title {
    font-size: var(--text-2xl);
  }

  .whatsapp-form {
    width: calc(100vw - var(--space-8));
    right: var(--space-4);
  }

  .privacy-notice {
    max-width: calc(100% - var(--space-4));
  }

  .footer-content {
    gap: var(--space-6);
  }

  .authorization {
    text-align: center;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.whatsapp-widget {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: var(--z-modal);
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  background: #25d366;
  border: none;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

.whatsapp-btn svg {
  width: 24px;
  height: 24px;
}

.form-header {
  background: #25d366;
  color: var(--white);
  padding: var(--space-4);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-header h3 {
  font-size: var(--text-lg);
  font-weight: 600;
}

.close-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: var(--text-xl);
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition-fast);
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

#contact-form {
  padding: var(--space-6);
}

.form-group {
  margin-bottom: var(--space-4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: var(--space-2);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: var(--space-3);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group input.error,
.form-group select.error {
  border-color: var(--error-color);
}

.error-message {
  display: block;
  font-size: var(--text-xs);
  color: var(--error-color);
  margin-top: var(--space-1);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.error-message.show {
  opacity: 1;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  cursor: pointer;
  font-size: var(--text-xs);
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkmark {
  width: 16px;
  height: 16px;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  position: relative;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: var(--text-xs);
}

.submit-btn {
  width: 100%;
  background: #25d366;
  color: var(--white);
  border: none;
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.submit-btn:hover:not(:disabled) {
  background: #20b358;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-loading {
  display: none;
}

.submit-btn.loading .btn-text {
  display: none;
}

.submit-btn.loading .btn-loading {
  display: inline;
}

/* ===== PRIVACY NOTICE ===== */
.privacy-notice {
  position: fixed;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: var(--space-6);
  max-width: 400px;
  width: calc(100% - var(--space-8));
  z-index: var(--z-modal);
  opacity: 0;
  transition: all var(--transition-slow);
}

.privacy-notice.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.privacy-content h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: var(--space-3);
}

.privacy-content p {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: var(--space-4);
}

.privacy-content a {
  color: var(--primary-color);
  text-decoration: none;
}

.privacy-content a:hover {
  text-decoration: underline;
}

.privacy-actions {
  display: flex;
  gap: var(--space-3);
  justify-content: flex-end;
}

.privacy-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-primary,
.btn-secondary {
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  transition: background-color 0.3s;
}

#privacy-accept {
  background-color: rgb(241, 108, 0);
  color: white;
}

#privacy-reject {
  background-color: #ffffff;
  color: rgb(8, 8, 8);
  border: 1px solid rgb(241, 108, 0);
}

/* ===== SEÇÃO DE CONTATO ===== */
/* ===== SEÇÃO DE CONTATO ===== */
.contact-section {
  width: 100%;
  padding: 40px 0;
  position: relative;
}

.contact-section-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  justify-items: center;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

/* ===== CARDS DE INFORMAÇÕES DE CONTATO ===== */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.contact-info-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.contact-info-card:hover::before {
  left: 100%;
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(241, 108, 0, 0.3);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-content h3 {
  font-size: clamp(1rem, 3vw, 1.125rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.contact-info-content p {
  margin: 0;
  margin-bottom: 4px;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
}

.contact-info-content a {
  color: var(--white);
  text-decoration: none;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.contact-info-content a:hover {
  color: var(--secondary-color);
}

.contact-hours {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

/* ===== FORMULÁRIO DE CONTATO ===== */
.contact-form-container {
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  padding: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-sizing: border-box;
}

.contact-form-header {
  text-align: center;
  margin-bottom: 30px;
}

.contact-form-header h3 {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 8px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-form-header p {
  color: var(--gray-600);
  font-size: clamp(0.875rem, 3vw, 1rem);
  margin: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-size: clamp(0.75rem, 2.5vw, 0.875rem);
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-size: clamp(0.875rem, 3vw, 1rem);
  font-family: inherit;
  transition: all var(--transition-fast);
  background: var(--white);
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(34, 51, 150, 0.1);
  transform: translateY(-1px);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
  appearance: none;
}

/* ===== CHECKBOX PERSONALIZADO ===== */
.contact-form .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: clamp(0.75rem, 2.5vw, 0.875rem);
  line-height: 1.5;
  margin-top: 8px;
}

.contact-form .checkbox-label input[type="checkbox"] {
  display: none;
}

.contact-form .checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-sm);
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all var(--transition-fast);
  background: var(--white);
}

.contact-form .checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.contact-form
  .checkbox-label
  input[type="checkbox"]:checked
  + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 12px;
  font-weight: bold;
}

.checkbox-text {
  color: var(--gray-700);
}

.checkbox-text a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.checkbox-text a:hover {
  text-decoration: underline;
}

/* ===== BOTÃO DE ENVIO ===== */
.contact-submit-btn {
  width: 100%;
  padding: 15px 20px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  border: none;
  border-radius: var(--radius-xl);
  font-size: clamp(1rem, 3vw, 1.125rem);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 15px;
}

.contact-submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.contact-submit-btn:hover::before {
  left: 100%;
}

.contact-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(34, 51, 150, 0.4);
}

.contact-submit-btn:active {
  transform: translateY(-1px);
}

.contact-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-loading {
  display: none;
}

.contact-submit-btn.loading .btn-text {
  display: none;
}

.contact-submit-btn.loading .btn-loading {
  display: inline;
}

.contact-submit-btn.loading .btn-icon {
  display: none;
}

.btn-icon {
  font-size: clamp(1rem, 3vw, 1.25rem);
  transition: transform var(--transition-fast);
}

.contact-submit-btn:hover .btn-icon {
  transform: translateX(4px);
}

/* ===== INFORMAÇÕES ADICIONAIS ===== */
.additional-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
  width: 100%;
}

.info-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: 20px;
  transition: all var(--transition-normal);
}

.info-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.info-card h4 {
  font-size: clamp(1rem, 3vw, 1.125rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 15px;
  text-align: center;
}

.info-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  text-align: center;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
}

.digital-channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.channel-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  color: var(--white);
  text-decoration: none;
  transition: all var(--transition-fast);
  font-size: clamp(0.875rem, 2.5vw, 1rem);
}

.channel-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.link-icon {
  transition: transform var(--transition-fast);
}

.channel-link:hover .link-icon {
  transform: translateX(3px);
}

/* ===== VALIDAÇÃO DE FORMULÁRIO ===== */
.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error {
  border-color: var(--error-color);
  box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.1);
}

.contact-form input.success,
.contact-form select.success,
.contact-form textarea.success {
  border-color: var(--success-color);
  box-shadow: 0 0 0 3px rgba(0, 200, 81, 0.1);
}

.error-message {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  color: var(--error-color);
  margin-top: 4px;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.error-message.show {
  opacity: 1;
}

/* ===== MEDIA QUERIES - TABLET ===== */
@media (min-width: 480px) {
  .contact-section-content {
    padding: 0 20px;
  }

  .contact-form-container {
    padding: 30px;
  }

  .contact-info-card {
    padding: 24px;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
  }

  .contact-icon svg {
    width: 24px;
    height: 24px;
  }
}

@media (min-width: 768px) {
  .contact-section {
    padding: var(--space-24) 0;
  }

  .contact-section-content {
    padding: 0 30px;
  }

  .contact-content {
    gap: var(--space-16);
  }

  /* APENAS o grid de informações muda para 2 colunas */
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }

  .contact-form .form-row {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }

  .contact-form-container {
    padding: var(--space-8);
    max-width: 700px;
    margin: 0 auto;
  }

  .contact-form-header {
    margin-bottom: var(--space-8);
  }

  .contact-form {
    gap: var(--space-6);
  }

  .additional-info {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    margin-top: var(--space-8);
  }

  .info-card {
    padding: var(--space-6);
  }

  .digital-channels {
    gap: var(--space-3);
  }

  .channel-link {
    padding: var(--space-3);
  }

  .contact-form textarea {
    min-height: 120px;
  }

  .contact-submit-btn {
    padding: var(--space-4) var(--space-6);
    margin-top: var(--space-4);
  }
}

@media (min-width: 1024px) {
  .contact-section-content {
    padding: 0 40px;
  }

  /* MANTÉM flex-direction: column em desktop também */
  .contact-content {
    gap: var(--space-16);
    max-width: 800px;
    margin: 0 auto;
  }

  .contact-form-container {
    max-width: 700px;
  }

  /* Grid de informações pode ter até 3 colunas em telas grandes */
  .contact-info-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
  }
}

@media (min-width: 1200px) {
  .contact-section-content {
    padding: 0 60px;
  }

  .contact-content {
    max-width: 900px;
  }
}

/* ===== ACESSIBILIDADE ===== */
@media (prefers-reduced-motion: reduce) {
  .contact-info-card,
  .contact-submit-btn,
  .info-card,
  .channel-link,
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    transition: none;
  }

  .contact-info-card::before,
  .contact-submit-btn::before {
    transition: none;
  }
}

/* Focus states para acessibilidade */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.contact-submit-btn:focus,
.channel-link:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Alto contraste */
@media (prefers-contrast: high) {
  .contact-info-card,
  .info-card {
    border-width: 2px;
    background: rgba(255, 255, 255, 0.2);
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    border-width: 3px;
  }
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
  .contact-section {
    padding: var(--space-16) 0;
  }

  .contact-form-container {
    padding: var(--space-6);
  }

  .contact-form-header h3 {
    font-size: var(--text-xl);
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    flex-direction: column;
    text-align: center;
    gap: var(--space-3);
  }

  .contact-icon {
    margin-bottom: var(--space-2);
  }
}

/* ===== ANIMAÇÕES ===== */
@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-info-card,
.contact-form-container,
.info-card {
  animation: slideInFromBottom 0.6s ease-out;
}

.contact-info-card:nth-child(2) {
  animation-delay: 0.1s;
}

.contact-info-card:nth-child(3) {
  animation-delay: 0.2s;
}

.contact-info-card:nth-child(4) {
  animation-delay: 0.3s;
}

.quote-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.quote-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.quote-modal-content {
  position: relative;
  background: white;
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.quote-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 0;
  margin-bottom: 20px;
}

.quote-modal-header h2 {
  margin: 0;
  color: #1f2937;
  font-size: 20px;
  font-weight: 600;
}

.quote-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #6b7280;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.quote-modal-close:hover {
  background: #f3f4f6;
  color: #374151;
}

.quote-group-info {
  margin: 0 24px 24px;
  padding: 16px;
  background: linear-gradient(135deg, #fef3f2 0%, #fed7aa 100%);
  border-radius: 12px;
  border: 1px solid #fecaca;
}

.quote-group-name {
  font-weight: 600;
  color: #dc2626;
  margin-bottom: 8px;
  font-size: 16px;
}

.quote-group-details {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.quote-detail-item {
  font-size: 14px;
  color: #6b7280;
}

.quote-detail-item strong {
  color: #374151;
}

.quote-form {
  padding: 0 24px 24px;
}

.quote-form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.quote-form-group {
  flex: 1;
  min-width: 0;
}

.quote-form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #374151;
  font-size: 14px;
}

.quote-form-group input,
.quote-form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s ease;
  font-family: inherit;
}

.quote-form-group input:focus,
.quote-form-group textarea:focus {
  outline: none;
  border-color: #fb923c;
  box-shadow: 0 0 0 3px rgba(251, 146, 60, 0.1);
}

.quote-form-group input.error,
.quote-form-group textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.quote-error-message {
  display: none;
  color: #ef4444;
  font-size: 12px;
  margin-top: 4px;
}

.quote-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
}

.quote-checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.quote-checkmark {
  flex-shrink: 0;
  margin-top: 2px;
}

.quote-checkbox-text {
  color: #6b7280;
}

.quote-form-actions {
  display: flex;
  justify-content: space-between;
  justify-items: center;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #f3f4f6;
}

.quote-btn-primary, .quote-cancel-btn {
  width: 50%;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  height: 40px;
}

.quote-btn-cancel,
.quote-btn-submit {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.quote-btn-cancel {
  background: #f3f4f6;
  color: #6b7280;
}

.quote-btn-cancel:hover {
  background: #e5e7eb;
  color: #374151;
}

.quote-btn-submit {
  background: linear-gradient(135deg, #fb923c, #f97316);
  color: white;
  min-width: 140px;
}

.quote-btn-submit:hover:not(:disabled) {
  background: linear-gradient(135deg, #f97316, #ea580c);
  transform: translateY(-1px);
}

.quote-btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.quote-message {
  margin-bottom: 20px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

.quote-message-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.quote-message-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Responsivo */
@media (max-width: 600px) {
  .quote-modal {
    padding: 10px;
  }

  .quote-form-row {
    flex-direction: column;
    gap: 12px;
  }

  .quote-form-actions {
    flex-direction: column;
  }

  .quote-btn-cancel,
  .quote-btn-submit {
    width: 100%;
  }
}

.privacy-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  margin-top: 70px;
  margin-bottom: 40px;
}

.privacy-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 3px solid #f16c00;
}

.privacy-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2233a0;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.privacy-content {
  line-height: 1.8;
  color: #333;
  font-size: 16px;
}

.privacy-content p {
  margin-bottom: 20px;
  text-align: justify;
}

.privacy-content b {
  color: #2233a0;
  font-weight: 600;
}

.privacy-section {
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #f16c00;
}

.privacy-section h2 {
  color: #2233a0;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.privacy-list {
  margin: 15px 0;
  padding-left: 20px;
}

.privacy-list li {
  margin-bottom: 8px;
  color: #555;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #f16c00;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(241, 108, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top:hover {
  background: #d85a00;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .privacy-container {
    margin: 20px;
    padding: 20px;
  }

  .privacy-header h1 {
    font-size: 2rem;
  }

  .privacy-content {
    font-size: 14px;
  }

  .privacy-page {
    padding-top: 100px;
  }
}

.nav-menu {
  background: var(--primary-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-2);
  text-align: left;
}

.nav-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  text-align: left;
}

.nav-menu li {
  margin: 0;
  position: relative;
}

.nav-menu a {
  display: block;
  padding: var(--space-4) var(--space-5);
  color: var(--white);
  text-decoration: none;
  font-size: var(--text-base);
  font-weight: 500;
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: var(--space-4);
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: translateY(-50%) scale(0);
  transition: transform 0.3s ease;
}

.nav-menu a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  transform: translateX(8px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.nav-menu a:hover::before {
  left: 100%;
}

.nav-menu a:hover::after {
  transform: translateY(-50%) scale(1);
}

.nav-menu a:active {
  transform: translateX(8px) scale(0.98);
}

/* Link especial "Trabalhe conosco" */
.nav-menu a[href*="vagas"] {
  background: linear-gradient(135deg, var(--secondary-color), #ff6b35);
  color: var(--white);
  font-weight: 600;
  margin-top: var(--space-3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
  position: relative;
}

.nav-menu a[href*="vagas"]::after {
  background: var(--white);
}

.nav-menu a[href*="vagas"]:hover {
  background: linear-gradient(135deg, #ff6b35, var(--secondary-color));
  transform: translateX(8px) translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}

/* Ícones nos links */
.nav-menu a[href="#home"]::before {
  content: '🏠';
  position: static;
  margin-right: var(--space-2);
  background: none;
  width: auto;
  height: auto;
  left: auto;
  transition: none;
}

.nav-menu a[href*="institucional"]::before {
  content: '🏢';
  position: static;
  margin-right: var(--space-2);
  background: none;
  width: auto;
  height: auto;
  left: auto;
  transition: none;
}

.nav-menu a[href*="grupos"]::before {
  content: '👥';
  position: static;
  margin-right: var(--space-2);
  background: none;
  width: auto;
  height: auto;
  left: auto;
  transition: none;
}

.nav-menu a[href*="contato"]::before {
  content: '📞';
  position: static;
  margin-right: var(--space-2);
  background: none;
  width: auto;
  height: auto;
  left: auto;
  transition: none;
}

.nav-menu a[href*="vagas"]::before {
  content: '💼';
  position: static;
  margin-right: var(--space-2);
  background: none;
  width: auto;
  height: auto;
  left: auto;
  transition: none;
}

/* Animações */
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Estados de foco para acessibilidade */
.nav-menu a:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

/* Responsividade */
@media (max-width: 768px) {
  .nav-menu {
    padding: var(--space-3);
  }
  
  .nav-menu a {
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-sm);
  }
  
  .nav-menu a:hover {
    transform: translateX(4px);
  }
  
  .nav-menu a:active {
    transform: translateX(4px) scale(0.98);
  }
  
  .nav-menu a[href*="vagas"]:hover {
    transform: translateX(4px) translateY(-1px);
  }
}

/* Micro-interação para entrada dos itens */
.nav-menu li {
  opacity: 0;
  transform: translateY(10px);
  animation: slideInUp 0.3s ease-out forwards;
}

.nav-menu li:nth-child(1) { animation-delay: 0.1s; }
.nav-menu li:nth-child(2) { animation-delay: 0.15s; }
.nav-menu li:nth-child(3) { animation-delay: 0.2s; }
.nav-menu li:nth-child(4) { animation-delay: 0.25s; }
.nav-menu li:nth-child(5) { animation-delay: 0.3s; }

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.checkmark {
  width: 16px !important;
  height: 16px !important;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  position: relative;
  margin-top: 2px;
  background: var(--white);
  transition: all var(--transition-fast);
}

/* Importar CSS base do index.css */
@import url('index.css');

/* ===== ESTILOS ESPECÍFICOS PARA VALORES A DEVOLVER ===== */

/* Seção Principal */
.valores-section {
  width: 100%;
  min-height: 100vh;
  padding: 120px 0 80px;
}

.valores-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
}

.page-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.page-subtitle {
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Container de Conteúdo */
.valores-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 1024px) {
  .valores-content {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

/* Cards de Valores */
.valores-card {
  background: rgba(255, 255, 255);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  transition: all var(--transition-normal);
  position: relative;
}

.valores-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.valores-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

/* Header do Card */
.card-header {
  padding: 30px 30px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--gray-200);
}

.card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(34, 51, 150, 0.3);
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.card-header h2 {
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  font-weight: 700;
  color: var(--gray-800);
  margin: 0;
  line-height: 1.3;
}

/* Conteúdo do Card */
.card-content {
  padding: 20px 30px 30px;
}

.card-description {
  font-size: clamp(0.875rem, 3vw, 1rem);
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Lista de Documentos */
.document-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.document-item {
  margin: 0;
  padding: 0;
}

.document-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.document-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(34, 51, 150, 0.05),
    transparent
  );
  transition: left 0.5s ease;
}

.document-link:hover {
  background: var(--white);
  border-color: var(--primary-color);
  transform: translateX(4px);
  box-shadow: 0 4px 15px rgba(34, 51, 150, 0.1);
}

.document-link:hover::before {
  left: 100%;
}

.document-link:active {
  transform: translateX(2px);
}

/* Informações do Documento */
.document-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.document-title {
  font-size: clamp(0.875rem, 3vw, 1rem);
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.3;
}

.document-type {
  font-size: clamp(0.75rem, 2.5vw, 0.875rem);
  color: var(--gray-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Ícone de Download */
.download-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.download-icon svg {
  width: 20px;
  height: 20px;
}

.document-link:hover .download-icon {
  background: var(--secondary-color);
  transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 768px) {
  .valores-section {
    padding: 100px 0 60px;
  }

  .valores-header {
    margin-bottom: 40px;
    padding: 0 15px;
  }

  .valores-content {
    gap: 30px;
    padding: 0 15px;
  }

  .card-header {
    padding: 20px 20px 15px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .card-content {
    padding: 15px 20px 20px;
  }

  .document-link {
    padding: 12px 16px;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .document-info {
    align-items: center;
  }

  .download-icon {
    width: 35px;
    height: 35px;
  }

  .download-icon svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .valores-section {
    padding: 90px 0 50px;
  }

  .valores-content {
    padding: 0 10px;
  }

  .card-header {
    padding: 15px 15px 12px;
  }

  .card-content {
    padding: 12px 15px 15px;
  }

  .card-icon {
    width: 45px;
    height: 45px;
  }

  .card-icon svg {
    width: 22px;
    height: 22px;
  }
}

/* Estados de Foco para Acessibilidade */
.document-link:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Animações */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.valores-card {
  animation: slideInUp 0.6s ease-out;
}

.valores-card:nth-child(2) {
  animation-delay: 0.2s;
}

/* Modo de Alto Contraste - continuação */
@media (prefers-contrast: high) {
  .document-link {
    border-width: 3px;
  }
  
  .card-icon,
  .download-icon {
    border: 2px solid var(--white);
  }
  
  .document-title {
    font-weight: 700;
  }
}

/* Redução de Movimento */
@media (prefers-reduced-motion: reduce) {
  .valores-card,
  .document-link,
  .download-icon {
    transition: none;
    animation: none;
  }
  
  .valores-card:hover {
    transform: none;
  }
  
  .document-link:hover {
    transform: none;
  }
  
  .download-icon:hover {
    transform: none;
  }
}

/* Melhorias para Impressão */
@media print {
  .valores-section {
    background: white !important;
    color: black !important;
  }
  
  .valores-card {
    background: white !important;
    border: 2px solid black !important;
    box-shadow: none !important;
    page-break-inside: avoid;
  }
  
  .document-link {
    background: white !important;
    border: 1px solid black !important;
  }
  
  .download-icon {
    display: none;
  }
}

/* Estados de Loading */
.document-link.loading {
  opacity: 0.7;
  pointer-events: none;
}

.document-link.loading .download-icon {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Indicador de Novo Documento */
.document-item.new::after {
  content: "NOVO";
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--error-color);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.document-item {
  position: relative;
}

/* Tooltip para Informações Adicionais */
.document-link[data-tooltip] {
  position: relative;
}

.document-link[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gray-800);
  color: var(--white);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  white-space: nowrap;
  z-index: 1000;
  margin-bottom: 8px;
}

.document-link[data-tooltip]:hover::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--gray-800);
  margin-bottom: 2px;
}

/* Melhorias para Telas Grandes */
@media (min-width: 1400px) {
  .valores-content {
    max-width: 1400px;
    gap: 60px;
  }
  
  .card-header {
    padding: 40px 40px 25px;
  }
  
  .card-content {
    padding: 25px 40px 40px;
  }
  
  .document-link {
    padding: 20px 24px;
  }
}

/* Estados de Erro */
.document-link.error {
  background: #fef2f2;
  border-color: var(--error-color);
  opacity: 0.7;
}

.document-link.error .download-icon {
  background: var(--error-color);
}

.document-link.error::after {
  content: "Arquivo indisponível";
  position: absolute;
  top: 50%;
  right: 60px;
  transform: translateY(-50%);
  color: var(--error-color);
  font-size: 0.75rem;
  font-weight: 600;
}

/* Skeleton Loading para Carregamento */
.document-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: var(--radius-lg);
  height: 60px;
  margin-bottom: 12px;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Melhorias de Acessibilidade */
.document-link:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
}

.card-header h2:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Suporte para Modo Escuro */
@media (prefers-color-scheme: dark) {
  .valores-card {
    background: rgba(30, 41, 59, 0.95);
    border-color: rgba(255, 255, 255, 0.1);
  }
  
  .card-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }
  
  .card-header h2 {
    color: var(--white);
  }
  
  .card-description {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .document-link {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
  }
  
  .document-link:hover {
    background: rgba(30, 41, 59, 0.9);
    border-color: var(--secondary-color);
  }
  
  .document-title {
    color: var(--white);
  }
  
  .document-type {
    color: rgba(255, 255, 255, 0.6);
  }
}