/*
Theme Name: Attra Bootstrap
Theme URI: https://seudominio.com
Author: Inline Digital
Author URI: https://seudominio.com
Description: Tema WordPress personalizado com Bootstrap 5, leve, responsivo e SEO-friendly.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: attra-bootstrap
Tags: bootstrap, responsive, custom-theme
*/

/* === FONTES === */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* === RESET & BASE === */
body {
  background-color: #000;
  margin: 0;
  padding: 0;
  font-family: 'Bebas Neue', sans-serif;
}

/* === NAVBAR === */
.main-nav {
  background-color: #000;
  color: #000000;
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-container {
  width: 100%;
  max-width: 1300px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: relative;
}

.nav-left,
.nav-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo img {
  height: 50px;
}

/* MENU LINKS */
.nav-link {
  color: white;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: red;
  font-size: 22px;
}

.nav-link.active {
  color: red;
  font-size: 22px;
  font-weight: bold;
}

/* === MENU SANDUÍCHE === */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: all 0.3s ease;
}

/* === HERO FULLSCREEN === */
.hero-banner {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-content {
  position: absolute;
  z-index: 2;
  top: 70%; /* descendo mais na tela */
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  padding: 1rem;
  backdrop-filter: blur(5px);
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-details {
  display: flex;
  gap: 35px;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 400;
  flex-wrap: wrap;
}

.hero-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.5rem;
  border: 1px solid white;
  background-color: transparent;
  color: white;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero-button:hover {
  background-color: red;
  border-color: red;
  color: white;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: white;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  z-index: 3;
  padding: 0 1rem;
  transition: background 0.3s ease;
}

.hero-arrow.left {
  left: 20px;
}

.hero-arrow.right {
  right: 20px;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.6);
}

/* === RESPONSIVO === */
@media (max-width: 768px) {
  .main-nav {
    flex-direction: column;
    height: auto;
    padding: 10px;
  }

  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 10px;
  }

  .nav-left,
  .nav-right {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #000;
    padding: 1rem 0;
    text-align: center;
  }

  .nav-left.open,
  .nav-right.open {
    display: flex;
  }

  .nav-link {
    font-size: 18px;
    padding: 10px 0;
  }

  .menu-toggle {
    display: flex;
    align-self: flex-end;
  }

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

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

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