/* =============================
   AZ PRODUCTIONS - STYLE.CSS
   Design Profissional, Black Theme
   Responsivo, Animações, Transições
   ============================= */

:root {
  --color-dark: #121212;
  --color-darker: #0a0a0a;
  --color-light: #e0e0e0;
  --color-lightest: #ffffff;
  --color-gray: #888;
  --transition-fast: 0.3s ease-in-out;
  --transition-slow: 0.6s ease-in-out;
  --font-main: 'Montserrat', sans-serif;
}

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

body {
  background-color: var(--color-dark);
  color: var(--color-light);
  font-family: var(--font-main);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

.btn {
  background-color: var(--color-primary);
  color: var(--color-dark);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 0 10px var(--color-primary);
}

.btn:hover {
  background-color: var(--color-lightest);
  color: var(--color-primary);
}

/* ============ NAVBAR ============ */
.navbar {
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-fast);
}

.navbar.scrolled {
  background-color: var(--color-darker);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.menu-icon {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--color-primary);
}

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

.nav-links a {
  font-weight: 500;
  font-size: 1rem;
}

.nav-links .btn.small {
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  background: none;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.nav-links .btn.small:hover {
  background: var(--color-primary);
  color: var(--color-dark);
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.navbar {
  background-color: var(--color-darker);
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 2rem;
  z-index: 1000;
  transition: var(--transition-fast);
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  border-radius: 0 0 20px 20px;
}

.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 {
  color: var(--color-light);
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

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

.dropdown {
  position: relative;
}

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

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

.dropdown-content a {
  color: var(--color-light);
  white-space: nowrap;
}

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

.btn-login {
  background-color: #ff6a00;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  transition: 0.3s ease;
  cursor: pointer;
}

.btn-login:hover {
  background-color: #ffa33c;
  color: #000;
}

/* =============================
   AZ PRODUCTIONS - STYLE.CSS
   Tema: Dark Professional (Black, White, Orange)
   Estrutura limpa, animações, responsivo
   ============================= */

:root {
  --color-primary: #ff6a00;         /* Laranja forte */
  --color-primary-light: #ffa33c;   /* Laranja claro */
  --color-dark: #0a0a0a;            /* Fundo principal */
  --color-darker: #121212;          /* Elementos escuros */
  --color-light: #e0e0e0;           /* Textos leves */
  --color-white: #ffffff;
  --color-gray: #999;
  --transition-fast: 0.3s ease-in-out;
  --transition-slow: 0.6s ease-in-out;
  --font-main: 'Montserrat', sans-serif;
}

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

body {
  background: var(--color-dark);
  font-family: var(--font-main);
  color: var(--color-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ================================
   LINKS E BOTÕES GERAIS
================================ */
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

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

button {
  cursor: pointer;
}

.btn {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.8rem 1.6rem;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  transition: var(--transition-fast);
  box-shadow: 0 0 12px rgba(255, 106, 0, 0.4);
}

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

/* ================================
   NAVBAR
================================ */
.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.scrolled {
  background-color: var(--color-dark);
}

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

.logo img {
  height: 40px;
  margin-right: 10px;
}

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

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

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

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-icon {
  display: none;
  font-size: 2rem;
  color: var(--color-primary);
  cursor: pointer;
}

/* DropDown */
.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;
}

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

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

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

/* ================================
   LOGIN BUTTON
================================ */
.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);
}

/* ================================
   LOGIN MODAL
================================ */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 15px;
  width: 90%;
  max-width: 400px;
  color: var(--color-white);
  position: relative;
  animation: fadeIn 0.5s ease;
}

.modal-content h2 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.modal-content input {
  width: 100%;
  padding: 0.8rem;
  border-radius: 10px;
  border: none;
  background: #2b2b2b;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.modal-content button {
  background: var(--color-primary);
  border: none;
  padding: 0.8rem;
  width: 100%;
  border-radius: 10px;
  font-weight: bold;
  color: var(--color-dark);
}

.modal-content button:hover {
  background: var(--color-primary-light);
  color: var(--color-dark);
}

.modal-content .close {
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--color-white);
  cursor: pointer;
}

/* ================================
   ANIMAÇÕES
================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================
   RESPONSIVO
================================ */
@media (max-width: 991px) {
  .menu-icon {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    background-color: var(--color-dark);
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    text-align: center;
  }

  #menu-toggle:checked + .menu-icon + .nav-links {
    display: flex;
  }

  .dropdown-content {
    position: static;
    background: none;
    box-shadow: none;
    padding: 0;
  }

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

/* Mouse Hover Pointer on interactive elements */
.logo,
.nav-links a,
.dropdown-content a,
.btn,
.btn-login,
.menu-icon {
  cursor: pointer;
}


/* Login Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #1a1a1a;
  padding: 2rem;
  border-radius: 15px;
  width: 90%;
  max-width: 400px;
  color: #fff;
  position: relative;
}

.modal-content h2 {
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.modal-content input {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 10px;
  background: #2b2b2b;
  color: #fff;
}

.modal-content button {
  width: 100%;
  padding: 0.8rem;
  background: var(--color-primary);
  border: none;
  border-radius: 10px;
  color: var(--color-dark);
  font-weight: bold;
  cursor: pointer;
}

.modal-content button:hover {
  background-color: var(--color-lightest);
  color: var(--color-primary);
}

.modal-content .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
}

#loginMessage {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
}


/* ============ HERO ============ */
.hero {
  background: linear-gradient(to right, #0a0a0a 0%, #121212 100%);
  padding: 12rem 2rem 8rem 2rem;
  text-align: center;
  animation: fadeIn 2s ease-in-out;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-lightest);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  color: var(--color-gray);
  margin-bottom: 2rem;
}

/* ============ SECTIONS ============ */
.section {
  padding: 6rem 2rem;
  text-align: center;
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.section p {
  font-size: 1.1rem;
  color: var(--color-light);
  max-width: 800px;
  margin: 0 auto 2rem auto;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding-top: 2rem;
}

.card {
  background-color: var(--color-darker);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--color-primary);
}

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

/* ============ BRANDS ============ */
.brands-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding-top: 2rem;
}

.brands-logos img {
  height: 60px;
  filter: grayscale(100%) brightness(1.3);
  opacity: 0.8;
  transition: 0.3s;
}

.brands-logos img:hover {
  filter: grayscale(0%) brightness(1.1);
  opacity: 1;
}

/* Estilo do botão Entrar */
.btn-login {
  background-color: #ff6600;
  color: #fff;
  padding: 10px 25px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.btn-login:hover {
  background-color: #e65c00;
}

/* Container com fundo embaçado transparente */
.login-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.2);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* Box de login (sem alteração, conforme solicitado) */
.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;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

/* ============ TESTIMONIALS ============ */
.testimonials {
  background: #181818;
  padding: 6rem 2rem;
  text-align: center;
}

.testimonial-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial {
  background: #1e1e1e;
  padding: 2rem;
  border-left: 5px solid var(--color-primary);
  border-radius: 10px;
  font-style: italic;
  color: var(--color-light);
}

.testimonial-footer {
  text-align: right;
  font-weight: bold;
  margin-top: 1rem;
  color: var(--color-primary);
}

/* ============ CONTACT CTA ============ */
.contact-cta {
  background: var(--color-primary);
  padding: 4rem 2rem;
  border-radius: 30px;
  text-align: center;
  color: var(--color-dark);
  max-width: 800px;
  margin: 5rem auto;
  box-shadow: 0 0 25px var(--color-primary);
}

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

.contact-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.contact-cta a {
  background: var(--color-darker);
  color: var(--color-primary);
  padding: 1rem 2.5rem;
  border-radius: 30px;
  font-weight: bold;
  border: 2px solid var(--color-primary);
  transition: all 0.3s ease;
}

.contact-cta a:hover {
  background: var(--color-primary);
  color: var(--color-dark);
}

/* ============ FOOTER ============ */
footer {
  background: var(--color-darker);
  color: var(--color-gray);
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

footer p {
  margin: 0.3rem 0;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Esconde o input do menu mobile */
#menu-toggle {
  display: none;
}

/* Menu mobile melhorado */
@media (max-width: 991px) {
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #121212;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    display: none;
    z-index: 999;
  }

  .navbar {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

body {
  background: linear-gradient(135deg, #0a0a0a, #121212);
}



@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

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


  #menu-toggle:checked + .menu-icon + .nav-links {
    display: flex;
  }

  .menu-icon {
    display: block;
    cursor: pointer;
    font-size: 2rem;
    color: var(--color-primary);
    position: relative;
    z-index: 1000;
  }

  .navbar {
    flex-wrap: wrap;
    align-items: flex-start;
  }
}


.animate-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVIDADE ============ */
@media (max-width: 991px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-icon {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    display: none;
  }

  #menu-toggle:checked + .menu-icon + .nav-links {
    display: flex;
  }

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

@media (max-width: 600px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .testimonial-cards {
    flex-direction: column;
  }

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