:root {
  --primary-red: #e30613;
  --phone-blue: #007bff;
  --phone-hover: #0056b3;
}

/* Estilos base */
html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Navegação */
.navbar {
  background: linear-gradient(135deg, var(--primary-red), #c5050f);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Botões de idioma */
.language-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  transition: all 0.3s ease;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
}

.language-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  transform: translateY(-1px);
}

.language-btn.active {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-red);
  border-color: white;
  font-weight: 500;
}

/* Logo */
.logo {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

/* Seção hero */
.hero-section {
  background: linear-gradient(
    135deg,
    rgba(227, 6, 19, 0.05),
    rgba(227, 6, 19, 0.1)
  );
  border-radius: 20px;
  padding: 3rem 2rem;
  margin: 2rem 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.hero-title {
  color: var(--primary-red);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  font-size: 2.2rem;
}

.hero-subtitle {
  color: #495057;
  font-weight: 500;
  margin-bottom: 2rem;
  font-size: 1.4rem;
}

.hero-description {
  font-size: 1.1rem;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Botões de ação */
.action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.phone-button {
  background: linear-gradient(135deg, var(--phone-blue), var(--phone-hover));
  border: none;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.phone-button:hover {
  background: linear-gradient(135deg, var(--phone-hover), #004085);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
  color: white;
}

.website-button {
  background: linear-gradient(135deg, var(--primary-red), #c5050f);
  border: none;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(227, 6, 19, 0.3);
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.website-button:hover {
  background: linear-gradient(135deg, #c5050f, #a0040c);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(227, 6, 19, 0.4);
  color: white;
}

.phone-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--phone-blue), var(--phone-hover));
  color: white;
  padding: 15px;
  border-radius: 50%;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}

.phone-floating:hover {
  background: linear-gradient(135deg, var(--phone-hover), #004085);
  transform: scale(1.1);
  color: white;
}

/* Contact info */
.contact-info {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contact-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-red);
  margin: 1rem 0;
}

/* Rodapé */
.footer {
  background: linear-gradient(135deg, #343a40, #495057);
  color: white;
  padding: 2rem 0;
  margin-top: 3rem;
}

.footer a {
  color: #ffc107;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
  .hero-section {
    padding: 2rem 1rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .phone-button,
  .website-button {
    padding: 12px 24px;
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.2rem;
  }

  .language-btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.9rem;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .contact-number {
    font-size: 1.3rem;
  }
}

/* Animações */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
