/* Estilos modernos para GFauto.com.br index e index1*/
:root {
  --primary-color: #0078d7;
  --secondary-color: #4caf50;
  --accent-color: #ff5722;
  --light-bg: #f5f5f5;
  --dark-bg: #333;
  --text-color: #333;
  --light-text: #fff;/* teste => #006699 */
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --darker-blue: #0056b3; /* Cor azul mais escura */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', Arial, sans-serif;
}

body {
  background-color: var(--light-bg);
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header */
header {
  background: linear-gradient(135deg, #0078d7 0%, #00a1ff 100%);
  color: var(--light-text);
  padding: 1rem 0;
  box-shadow: var(--box-shadow);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  max-width: 200px;
  height: auto;
}

.welcome-text {
  font-size: 1.2rem;
  font-weight: 500;
  text-align: right;
}

.welcome-text p {
    margin-bottom: 0.2rem; /* Reduz o espaço entre os parágrafos */
}

/* Hero Section */
.hero {
  background-color: #fff; /* => teste: #006699; */
  padding: 1rem 0;
  margin-bottom: 2rem;
  box-shadow: var(--box-shadow);
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.hero-text {
  flex: 1;
  min-width: 300px;
  padding: 0.5rem;
}

.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem; /* Reduzido para aproximar o subtítulo */
  color: var(--primary-color);
  text-align: center; /* Centraliza o título principal */
}

/* Estilos para o subtítulo */
.hero-subheading {
  font-size: 1.5rem; /* Tamanho intermediário */
  color: var(--darker-blue); /* Cor azul mais escura */
  text-align: center; /* Centralizado */
  margin-bottom: 1rem; /* Espaço abaixo do subtítulo */
  font-weight: 500;
}

.hero-text p:not(.hero-subheading) { /* Estilo para o parágrafo normal */
  margin-bottom: 0.75rem;
  text-align: center; /* Centraliza o parágrafo normal também */
}

.hero-images {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem;
}

.hero-images img {
  max-width: 150px;
  height: auto;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.hero-images img:hover {
  transform: scale(1.05);
}

/* Estado Selector */
.estado-selector {
  background-color: var(--secondary-color);
  color: var(--light-text);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
  text-align: center;
}

.estado-selector h2 {
  margin-bottom: 1rem;
}

.estado-selector select {
  width: 100%;
  max-width: 300px;
  padding: 0.8rem;
  border-radius: var(--border-radius);
  border: none;
  font-size: 1rem;
  cursor: pointer;
  background-color: #fff;
}

/* Features Section */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.feature-card {
  background-color: #fff;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.feature-card p {
  margin-bottom: 1rem;
}

.feature-card .btn {
  display: inline-block;
}

/* Anunciar Agora button highlight */
.btn-anunciar {
  background-color: #ff5722;
  color: white;
  font-weight: bold;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  box-shadow: 0 4px 8px rgba(255, 87, 34, 0.3);
  animation: pulse 2s infinite;
}

.btn-anunciar:hover {
  background-color: #e64a19;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 12px rgba(255, 87, 34, 0.4);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 87, 34, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 87, 34, 0);
  }
}

/* Projeto 156 Section */
.projeto-156 {
  background-color: #fff;
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--box-shadow);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.projeto-156-text {
  flex: 2;
  min-width: 300px;
}

.projeto-156-text h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.projeto-156-image {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.projeto-156-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

/* Radar Section */
.radar-section {
  background-color: #fff;
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--box-shadow);
}

.radar-section h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
}

.radar-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.radar-text {
  flex: 2;
  min-width: 300px;
}

.radar-link {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

/* About Section */
.about-section {
  background-color: #fff;
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--box-shadow);
}

.about-section h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.about-content {
  margin-bottom: 1.5rem;
}

.about-content h3 {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.about-content p {
  margin-bottom: 1rem;
}

/* Call to Action */
.cta-section {
  background-color: var(--accent-color);
  color: var(--light-text);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
footer {
  background-color: var(--dark-bg);
  color: var(--light-text);
  padding: 2rem 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--light-text);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--secondary-color);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  font-size: 0.9rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: var(--primary-color);
  color: var(--light-text);
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-weight: 500;
}

.btn:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--secondary-color);
}

.btn-secondary:hover {
  background-color: #3d8b40;
}

.btn-accent {
  background-color: var(--accent-color);
}

.btn-accent:hover {
  background-color: #e64a19;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content, 
  .projeto-156, 
  .radar-content {
    flex-direction: column;
  }
  
  .hero-images {
    order: -1;
  }
  
  .feature-card {
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .header-content {
    flex-direction: column;
    text-align: center;
  }
  
  .welcome-text {
    text-align: center;
    margin-top: 1rem;
  }
  
  .hero-text h1 {
    font-size: 1.8rem;
  }
  .hero-subheading {
    font-size: 1.3rem; /* Ajuste para telas menores */
  }
}