/*--------------------------------------------------------------
# Global Variables
--------------------------------------------------------------*/
:root {
  --primary-color: #e60000;
  --primary-color-dark: #cc0000;
  --primary-color-light: #ff3333;
  --secondary-color: #333333;
  --text-color: #333333;
  --text-color-light: #666666;
  --text-color-dark: #111111;
  --white-color: #ffffff;
  --light-color: #f4f4f4;
  --border-color: #eeeeee;
  --border-radius: 8px;
  --box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 3rem;
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Poppins', sans-serif;
}

/*--------------------------------------------------------------
# Base Styles
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Adjust for fixed navbar */
}

body {
  font-family: var(--font-primary);
  color: var(--text-color);
  line-height: 1.7;
  overflow-x: hidden;
  background-color: var(--white-color);
}

/* Removido a seção do preloader */

/*--------------------------------------------------------------
# Navbar
--------------------------------------------------------------*/
.navbar {
  padding: 20px 0;
  background-color: transparent;
  transition: var(--transition);
}

/* O resto do CSS permanece igual */
/* FAQ Item Styles */
.faq-btn.active i {
  transform: rotate(-180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-content.show {
  max-height: 500px;
}

/* Form focus and hover effects */
input:focus, 
textarea:focus,
select:focus {
  outline: none;
  border-color: #e60000;
  box-shadow: 0 0 0 3px rgba(230, 0, 0, 0.1);
}

/* Media queries for additional responsiveness */
@media (max-width: 640px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
