/* =======================
   AZ PRODUCTIONS - SOBRE.CSS
   Design black theme, responsivo e elegante
   ======================= */

:root {
  --primary-color: #d44300;
  --dark-bg: #121212;
  --darker-bg: #0a0a0a;
  --light-color: #e0e0e0;
  --gray-color: #777;
  --transition-fast: 0.3s ease-in-out;
  --font-main: 'Montserrat', sans-serif;

  /* Substituições necessárias */
  --color-primary: #d44300;
  --color-primary-light: #ff6600;
  --color-light: #e0e0e0;
  --color-white: #fff;
  --color-dark: #121212;
  --color-darker: #0a0a0a;
  --color-gray: #777;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, var(--darker-bg), var(--dark-bg));
  color: var(--light-color);
  font-family: var(--font-main);
  line-height: 1.6;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

img:hover {
  transform: scale(1.05);
}

/* =======================
   NOVO CABEÇALHO
   ======================= */

.navbar {
  background: var(--color-darker);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.6);
  transition: var(--transition-fast);
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-primary);
}

.navbar .logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  position: relative;
  font-weight: 500;
  color: var(--color-light);
  transition: var(--transition-fast);
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--color-primary);
}

.dropdown {
  position: relative;
}

.dropdown .arrow {
  font-size: 0.7rem;
  margin-left: 6px;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1e1e1e;
  padding: 1rem;
  border-radius: 10px;
  min-width: 180px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
  flex-direction: column;
  gap: 0.6rem;
  animation: fadeIn 0.4s ease;
  z-index: 999;
}

.dropdown:hover .dropdown-content {
  display: flex;
}

.dropdown-content a {
  color: var(--color-light);
  font-size: 0.95rem;
  text-decoration: none;
}

.dropdown-content a:hover {
  color: var(--color-primary);
}

.btn-login {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-weight: bold;
  transition: var(--transition-fast);
  border: none;
}

.btn-login:hover {
  background: var(--color-primary-light);
  color: var(--color-dark);
}

/* =======================
   MODAL DE LOGIN
   ======================= */

.login-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.3);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.login-container.show {
  display: flex;
}

.login-box {
  background-color: #111;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(255, 102, 0, 0.4);
  max-width: 400px;
  width: 90%;
  text-align: center;
  animation: fadeIn 0.4s ease;
}

.login-box h1.logo {
  color: #fff;
  font-size: 32px;
  margin-bottom: 10px;
}

.login-box h1.logo span {
  color: #ff6600;
}

.login-box h2 {
  color: #aaa;
  margin-bottom: 30px;
}

.input-group {
  text-align: left;
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  color: #ccc;
  margin-bottom: 5px;
}

.input-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #444;
  border-radius: 6px;
  background: #222;
  color: #fff;
}

.input-group input:focus {
  outline: none;
  border-color: #ff6600;
}

.login-box button[type="submit"] {
  background-color: #ff6600;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.login-box button[type="submit"]:hover {
  background-color: #e65c00;
}

.esqueci-senha {
  margin-top: 15px;
}

.esqueci-senha a {
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
}

.esqueci-senha a:hover {
  text-decoration: underline;
}

/* =======================
   RESTANTE DO ESTILO ORIGINAL
   ======================= */

/* Rodapé */
footer {
  background-color: #0a0a0a;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: var(--color-gray);
  border-top: 1px solid #222;
}

/* Hero Section */
.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12rem 4rem 6rem 4rem;
  gap: 3rem;
}

.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 900;
  color: var(--primary-color);
  text-shadow: 0 0 5px var(--primary-color);
}

.hero-text p {
  font-size: 1.3rem;
  color: var(--light-color);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-text .btn {
  background: var(--primary-color);
  color: var(--darker-bg);
  padding: 1rem 2.5rem;
  font-weight: 700;
  border-radius: 30px;
  box-shadow: 0 0 20px var(--primary-color);
  transition: all 0.4s ease;
}

.hero-text .btn:hover {
  background: var(--light-color);
  color: var(--primary-color);
  box-shadow: 0 0 25px var(--light-color);
}

.hero-image img {
  border-radius: 20px;
  max-width: 600px;
  box-shadow: 0 0 30px #d45500cc;
}

/* History Section */
.history-section {
  max-width: 1000px;
  margin: 0 auto 5rem auto;
  padding: 0 2rem;
  font-size: 1.1rem;
  color: var(--light-color);
  line-height: 1.7;
}

/* Mission Vision Values */
.mission-vision-values {
  max-width: 1200px;
  margin: 0 auto 6rem auto;
  display: flex;
  gap: 2rem;
  padding: 0 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.mv-card {
  background: #181818;
  border-radius: 15px;
  padding: 2rem 2.5rem;
  flex: 1 1 300px;
  box-shadow: 0 0 20px #d43c0066;
  transition: transform 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px #d45500cc;
}

.mv-card h3 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  color: var(--primary-color);
}

.mv-card p, .mv-card ul {
  font-size: 1.1rem;
  color: var(--light-color);
}

.mv-card ul {
  list-style: disc inside;
}

.mv-card ul li {
  margin: 0.4rem 0;
}

/* Team Section */
.team-section {
  max-width: 1200px;
  margin: 0 auto 6rem auto;
  padding: 0 2rem;
  text-align: center;
}

.team-section h2 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
  text-shadow: 0 0 8px var(--primary-color);
}

.team-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.team-card {
  background: #181818;
  border-radius: 15px;
  width: 300px;
  box-shadow: 0 0 15px #d4430088;
  transition: transform 0.3s ease;
  padding: 1.5rem;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px #d45500cc;
}

.team-card img {
  border-radius: 15px;
  margin-bottom: 1rem;
}

.team-card h4 {
  margin-bottom: 0.8rem;
  color: var(--primary-color);
}

.team-card p {
  font-size: 1rem;
  color: var(--light-color);
}

/* Quality Section */
.quality-section {
  max-width: 900px;
  margin: 0 auto 5rem auto;
  padding: 0 2rem;
  font-size: 1.1rem;
  color: var(--light-color);
  text-align: center;
  line-height: 1.7;
}

/* Certifications Section */
.certifications-section {
  max-width: 700px;
  margin: 0 auto 5rem auto;
  padding: 0 2rem;
  color: var(--light-color);
  font-size: 1.1rem;
}

.cert-list {
  list-style: none;
}

.cert-list li {
  background: #181818;
  margin: 1rem 0;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 0 15px #d43c0066;
  transition: background 0.3s ease;
}

.cert-list li:hover {
  background: #d44300;
  color: var(--darker-bg);
  font-weight: 700;
}

/* Testimonials Section */
.testimonials-section {
  max-width: 1000px;
  margin: 0 auto 6rem auto;
  padding: 0 2rem;
  color: var(--light-color);
}

.testimonials-section h2 {
  font-size: 2.6rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
  text-shadow: 0 0 8px var(--primary-color);
  text-align: center;
}

.testimonials blockquote {
  background: #181818;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 15px;
  box-shadow: 0 0 25px #d43c0066;
  font-style: italic;
  font-size: 1.2rem;
  position: relative;
  transition: transform 0.3s ease;
}

.testimonials blockquote:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 35px #d45500cc;
}

.testimonials blockquote span {
  display: block;
  margin-top: 1rem;
  text-align: right;
  font-weight: 700;
  color: var(--primary-color);
}

/* Contact CTA Section */
.contact-cta {
  background: #d44300;
  color: var(--darker-bg);
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 15px;
  margin: 0 2rem 4rem 2rem;
  box-shadow: 0 0 30px #d45500cc;
}

.contact-cta h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 900;
}

.contact-cta a.btn {
  background: var(--darker-bg);
  color: var(--primary-color);
  padding: 1rem 3rem;
  font-weight: 700;
  border-radius: 30px;
  box-shadow: 0 0 25px var(--darker-bg);
  transition: all 0.3s ease;
  display: inline-block;
}

.contact-cta a.btn:hover {
  background: var(--primary-color);
  color: var(--darker-bg);
  box-shadow: 0 0 40px var(--primary-color);
}

/* Responsive */

@media (max-width: 991px) {
  .hero-section {
    flex-direction: column-reverse;
    padding: 8rem 2rem 4rem 2rem;
  }

  .hero-text {
    max-width: 100%;
    margin-top: 2rem;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  .team-cards {
    flex-direction: column;
    align-items: center;
  }

  .mv-card {
    max-width: 90vw;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .contact-cta h2 {
    font-size: 2rem;
  }

  .contact-cta a.btn {
    padding: 0.9rem 2.5rem;
  }
}
