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

@font-face {
  font-family: "Anthrope"; 
  src: url("../fonts/Anthrope.ttf");
}

@font-face {
  font-family: "Caesar Dressing"; 
  src: url("../fonts/CaesarDressing-Regular.ttf");
}

@font-face {
  font-family: "Hellbone"; 
  src: url("../fonts/Hellbone.otf");
}

@font-face {
  font-family: "Kaira"; 
  src: url("../fonts/Kaira.ttf");
}

@font-face {
  font-family: "Martyric"; 
  src: url("../fonts/Martyric_PersonalUse.ttf");
}

body {
  font-family: "Caesar Dressing";
  background: #1a1a1a;
  background-image: url('../imagens/backgrond.png');
  background-position: center;
  background-size: cover;
  background-size: 100% auto;
  background-repeat: repeat;
  color: #fff;
  min-height: 100vh;
}

/* Header Styles */
.header {
  background: rgba(0, 0, 0, 0);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(3px);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  flex-direction: row;
}

.logo h1 {
  font-family: "Hellbone";
  font-size: 1.5rem;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #DDD231;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-icons a {
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}

.nav-icons a svg {
  stroke: currentColor;
  transition: stroke 0.3s;
}

.nav-icons a:hover {
  color: #DDD231;
}

.nav-icons a:hover svg {
  stroke: #DDD231;
}

/* Hero Section */
.hero {
  
  position: relative;
  overflow: hidden;
  min-height: 130vh;
  width: 100%;
  background-image: url('../imagens/inicio/hero-backgrond.png');
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;
  justify-content: left;
  align-items: center;
}

.hero-content {
  
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.quality-badge {
  font-family: "Hellbone";
  background: #ddd231;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 40px;
  font-size: 4rem;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 2rem;
}

.hero-title {
  font-family: "Anthrope"; 
  letter-spacing: 5px;
  font-size: 3rem;
  line-height: 1.2;
  color: #ff5202;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

@keyframes flame {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Objetivos Section */
.objetivos {
  
  text-align: center;
}

.section-title {
  font-family: "Martyric"; 
  font-size: 3rem;
  margin-bottom: 3rem;
  margin-top: 2rem;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.objetivos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(auto, 1fr));
  gap: 0;
  margin: 0 auto;
}

.objetivo-link {
  text-decoration: none;
  color: inherit;
}

.objetivo-card {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 0px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column-reverse;
  
}


.objetivo-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.objetivo-card h3 {
  padding: 1rem;
  font-size: 2.7rem;
  color: #fff;
  background: rgb(0, 0, 0);
  font-family: "Metal Mania", cursive;
}

/* Revendedores Section */

.revendedores-title {
  font-family: "Kaira"; 
  font-size: 5rem;
  position: relative;
  top: -5rem;
  
  color: #cecece;
  text-align: center;
  -webkit-text-stroke-width: 1px; /* Largura da borda */
  -webkit-text-stroke-color: black; /* Cor da borda */
}
.revendedores {
  padding: 4rem 2rem;
  background: rgba(0, 0, 0, 0.5);
}

.revendedores-content {
  
  margin: 0 auto;
}

.intro-text {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: #fff;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.info-item {
  background: rgba(0, 0, 0, 0.7);
  padding: 2rem;
  border-radius: 10px;
  border: 7px solid #ffffff;
  max-width: 100%;
}

.info-item h3 {
  color: #DDD231;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.info-item p {
  line-height: 1.6;
  color: #ccc;
   text-align: center;
   font-size: 25px;
}

/* Auth Pages */
.auth-main {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.auth-container {
  width: 100%;
  max-width: 400px;
}

.auth-form-container {
  background: rgba(128, 128, 128, 0.9);
  padding: 3rem;
  
  border-radius: 10px 60px 60px 60px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.auth-form-container h2 {
  
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #fff;
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #fff;
  font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  color: #333;
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.auth-btn,
.save-btn {
  width: 100%;
  padding: 1rem;
  background: #d6d326;
  color: #000;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  font-family: "Caesar Dressing";
}

.auth-btn:hover,
.save-btn:hover {
  background: #a8b821;
}

.auth-link {
  margin-top: 1rem;
  color: #ccc;
  font-family: "", cursive;
  font-family: "Caesar Dressing";
}

.auth-link a {
  color: #DDD231;
  text-decoration: none;
  font-family: "Caesar Dressing";
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-nav-overlay.active {
    transform: translateX(0);
}

.close-btn-container {
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.close-btn {
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
}

.mobile-nav-menu {
    list-style: none;
    text-align: center;
}

.mobile-nav-menu li {
    margin-bottom: 2rem;
}

.mobile-nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 2rem;
    font-family: 'Caesar Dressing', cursive;
    transition: color 0.3s;
}

.mobile-nav-menu a:hover {
    color: #DDD231;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* Catálogo */
.catalogo-main {
  padding: 2rem;
  min-height: calc(100vh - 80px);
}

.catalogo-container {
  
  margin: 0 auto;
  display: grid;
  flex-direction: row;
  grid-template-columns: 250px 1fr;
  gap: 2rem;
}

.filters {
  background: rgb(146, 146, 146);
  padding: 2rem;
  border-radius: 10px;
  height: 80vh;
  position: sticky;
  top: 80px;
  font-family: Arial, Helvetica, sans-serif;
}

.filters h3 {
  color: #DDD231;
  margin-bottom: 1.5rem;
  font-family: Arial, Helvetica, sans-serif;
}

.price-filter,
.category-filter {
  margin-bottom: 2rem;
  font-family: Arial, Helvetica, sans-serif;
}

.category-filter h4 {
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 1rem;
}

.category-filter label {
  display: block;
  margin-bottom: 0.5rem;
  color: #ccc;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
}

.category-filter input[type="checkbox"] {
  margin-right: 0.5rem;
}

.products-section {
  background: rgba(0, 0, 0, 0);
  padding: 2rem;
  border-radius: 10px;
  
}

.page-title {
  font-family: "Martyric"; 
  font-size: 2.5rem;
  color: #ff0040;
  text-align: left;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 2rem;
}

.product-card {
  background: rgb(250, 250, 250);
  border-radius: 30px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-info {
  padding: 1rem;
}

.product-info h3 {
  color: #000000;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-family: Arial, Helvetica, sans-serif;
}

.product-price {
  color: #000000;
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  font-family: Arial, Helvetica, sans-serif;
}

.product-btn {
  width: 100%;
  padding: 0.8rem;
  background: #4caf50;
  color: #fff;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  font-family: Arial, Helvetica, sans-serif;
}

.product-btn:hover {
  background: #45a049;
}

/* Carrinho */

.checkout-form{
  font-family: Arial, Helvetica, sans-serif;
}

.carrinho-main {
  padding: 2rem;
  min-height: calc(100vh - 80px);
}

.carrinho-container {
  
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.carrinho-section,
.checkout-section {
  background: #919798;
  padding: 2rem;
  border-radius: 30px;
  height: fit-content;
}

.carrinho-section h2,
.checkout-section h2 {
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  margin-bottom: 1.5rem;
  text-align: center;
}

.carrinho-section h2{
  text-align: left;
}

.carrinho-table {

  
  overflow: hidden;
}


.cart-item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 1rem;
  margin-bottom: 1rem;
  align-items: center;
  border-radius: 20px;
  background-color: #CECECE;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.205);
}


.item-info {
  font-family: Arial, Helvetica, sans-serif;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-direction: row;
}

.cart-item-quantity{
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  flex-direction: row;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quantity-btn {
  font-family: Arial, Helvetica, sans-serif;
  background: #00000000;
  color: #000000;
  border: none;
  width: 40px;
  height: 40px;
  
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-input{
  width: 40px;
  height: 40px;
  border-radius: 7px;
  border: none;
  text-align: center;
  background-color: #ececec;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.flex-item-price{
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  flex-direction: row;
}
.item-price {
  font-family: Arial, Helvetica, sans-serif;
  color: #000000;

}

.cart-summary {
  padding: 1rem;
  background: rgba(0, 0, 0, 0);
  border-radius: 20px;
  
}

.coupon-section {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  align-items: center;
}

.coupon-section span {
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  font-weight: bold;
}

.coupon-section input {
  flex: 1;
  padding: 0.5rem;
  border: none;
  border-radius: 5px;
}

.coupon-section button {
  font-family: Arial, Helvetica, sans-serif;
  padding: 0.5rem 1rem;
  background: #ffffff;
  color: #000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.totals {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.subtotal,
.total {
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  justify-content: space-between;
  color: #e7e7e7;
}

.total {
  
  font-size: 1.2rem;
  border-top: 2px solid #d3d3d3;
  padding-top: 0.5rem;
}

.checkout-btn {
  
  width: 100%;
  padding: 1rem;
  background: #26d669;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  font-family: Arial, Helvetica, sans-serif;
  margin-top: 1rem;
}

.checkout-btn:hover {
  background: #45a049;
}

/* Perfil */
.perfil-main {
  padding: 2rem;
  min-height: calc(100vh - 80px);
}

.perfil-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
}

.perfil-sidebar {
  background: rgba(0, 0, 0, 0.7);
  padding: 2rem;
  border-radius: 10px;
  border: 2px solid #666;
  height: fit-content;
}

.perfil-info {
  text-align: center;
  margin-bottom: 2rem;
}

.perfil-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 3px solid #DDD231;
}

.perfil-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.perfil-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-btn {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
  font-family: "Metal Mania", cursive;
  text-align: left;
}

.nav-btn:hover,
.nav-btn.active {
  background: #DDD231;
  color: #000;
}

.logout-btn {
  background: #ff4444 !important;
  margin-top: 1rem;
}

.logout-btn:hover {
  background: #cc3333 !important;
}

.perfil-content {
  background: rgba(0, 0, 0, 0.7);
  padding: 2rem;
  border-radius: 10px;
  border: 2px solid #666;
}

.content-section {
  display: none;
}

.content-section.active {
  display: block;
}

.content-section h2 {
  color: #DDD231;
  margin-bottom: 2rem;
}

.historico-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.historico-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 5px;
  border-left: 4px solid #DDD231;
}

.historico-item h4 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.historico-item p {
  color: #ccc;
  margin-bottom: 0.25rem;
}

/* Biografia Page */
.biografia-main {
  padding: 4rem 2rem;
  min-height: calc(100vh - 80px);
}

.biografia-container {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.biografia-container h1 {
  text-align: center;
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.biografia-content {
  background: rgba(255, 255, 255, 0);
  padding: 3rem;
  border-radius: 10px;
  
  text-align: left;
}

.biografia-content p {
  text-align: center;
  font-size: 1.7rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #ccc;
}


/* Estilos dos Modais de Pagamento e Sucesso */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: #919798;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    color: #fff;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

.close-modal-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s;
    font-family: Arial, Helvetica, sans-serif;
}

.close-modal-btn:hover {
    color: #ffffff;
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

#payment-form .form-group {
    margin-bottom: 1rem;
    text-align: left;
}

#payment-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

#payment-form input {
    width: 100%;
    padding: 0.8rem;
    border-radius: 5px;
    border: 1px solid #555;
    background: #ffffff;
    color: #000000;
    font-size: 1rem;
    font-family: Arial, Helvetica, sans-serif;
}

#payment-form .form-row {
    display: flex;
    gap: 1rem;
}

#payment-form .form-row .form-group {
    flex: 1;
}

.btn-pagar {
    background: #26d669;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    width: 100%;
    margin-top: 1rem;
    transition: background-color 0.3s;
    font-family: Arial, Helvetica, sans-serif;
}



/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    gap: 1rem;
    padding: 1rem;
  }

  .nav-menu {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .hero {
  
    
    min-height: 40vh;
    width: 100%;
    background-image: url('../imagens/inicio/hero-backgrond.png');
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: flex;
    justify-content: left;
    align-items: center;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: left;
  }

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

  .quality-badge {
    font-family: "Hellbone";
    background: #ddd231;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    font-size: 1.2rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 2rem;
  }

  .revendedores-title {
  font-size: 2.4rem;
  top: -3.4rem;
}

  .objetivos-grid {
    grid-template-columns: 1fr;
  }

  .catalogo-container {
    grid-template-columns: 1fr;
    place-items: center;
    
  }

  .filters {
    order: 1;
  }

  .filters {
  background: rgb(146, 146, 146);
  padding: 1rem;
  border-radius: 10px;
  height: auto;
  width: 80%;
  position: static;
}

  .products-section {
    order: 2;
  }

  .carrinho-container {
    grid-template-columns: 1fr;
  }

  .perfil-container {
    grid-template-columns: 1fr;
  }


  .cart-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .coupon-section {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 480px) {
  .logo h1 {
    font-size: 1.2rem;
  }

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

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

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

  .biografia-container h1 {
    font-size: 2rem;
  }

  .auth-form-container {
    padding: 2rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }
}
