/* Estilos para o novo design do Grupo Bona com abordagem de storytelling */
:root {
  --primary-color: #e67e22; /* Laranja */
  --secondary-color: #d35400; /* Laranja escuro */
  --accent-color: #000000; /* Preto */
  --light-color: #ffffff;
  --gray-color: #f5f5f5;
  --dark-gray: #333333;
  --footer-color: #000000; /* Preto */
  --text-color: #333333;
  --section-padding: 100px 0;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.animate {
  opacity: 0;
}

.animate.fadeInUp {
  animation: fadeInUp 0.8s ease forwards;
}

.animate.fadeInLeft {
  animation: fadeInLeft 0.8s ease forwards;
}

.animate.fadeInRight {
  animation: fadeInRight 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

/* Variáveis para cores */
:root {

  --dark-bg: #141414;
  --transition: 0.3s ease;
}

/* Header */
header {
  background-color: var(--dark-bg);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 10px 10px rgba(61, 61, 61, 0.507);
  transition: var(--transition);
}

.new-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo img {
  position: relative;
  left: -250px; /* ou teste com -50px ou até 0 */
  max-height: 50px;
}


.navbar {
  flex: 1;
  text-align: right;
}

.nav-links {
  display: flex;
  gap: 45px;
  list-style: none;
  align-items: center;
  justify-content: flex-end;
}

.nav-links li a {
  right: -200px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--primary-color);
  transition: width 0.3s;
}

.nav-links li a:hover {
  color: var(--primary-color);
}

.nav-links li a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

.mobile-overlay {
  position: fixed;
  top: 70px;
  right: 20px;
  width: 240px;
  max-height: 80vh; /* Limita a altura do menu */
  overflow-y: auto;  /* Habilita scroll vertical se passar do limite */
  background: var(--dark-bg);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  display: none;
  flex-direction: column;
  padding: 20px;
  z-index: 2000;
}


.mobile-overlay.active {
  display: flex;
}

.overlay-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.overlay-links li {
  margin-bottom: 15px;
}

.overlay-links li a {
  color: white;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 600;
  display: block;
  transition: color 0.2s;
}

.overlay-links li a:hover {
  color: var(--primary-color);
}

.close-btn {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 24px;
  color: white;
  cursor: pointer;
}


/* Responsivo */
@media (max-width: 768px) {

   .map-container {
    display: none;
  }

  .photo-container {
     display: none;
  }

  #informacoes-loja p {
    display: none;

  }

  .col-lg-8 { 

    display: none;
  }
 .hero-bg {
    background-position: left -300px top;
  }


  #informacoes-loja p:nth-of-type(1),
  #informacoes-loja p:nth-of-type(4) {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 20px;
    background: var(--dark-bg);
    width: 200px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    padding: 20px;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: block;
  }
}


/* Hero Section - Storytelling Approach */
.hero {
  height: 100vh;
  min-height: 700px;
  background-color: var(--accent-color);
  color: var(--light-color);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
/* Estilo para mobile */
@media (max-width: 768px) {
  .hero {
    height: auto; /* deixa a altura se ajustar ao conteúdo */
    padding: 60px 20px; /* espaço interno */
    background-position: top center; /* opcional */
  }

  .hero-content {
    text-align: center;
  }
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 100%;
  background-position: center;
  opacity: 0.4;
   background-repeat: no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--primary-color);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  font-weight: 300;
}

.btn {
  margin-bottom: 15px; 
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--light-color);
  padding: 15px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--light-color);
  font-size: 2rem;
  animation: pulse 2s infinite;
  cursor: pointer;
}

/* Seções */
section {
  padding: var(--section-padding);
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-color);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--dark-gray);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
}


#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}



.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--primary-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
  margin-bottom: 50px;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--light-color);
  border: 4px solid var(--primary-color);
  border-radius: 50%;
  top: 15px;
  z-index: 1;
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

.timeline-item.left::after {
  right: -12px;
}

.timeline-item.right::after {
  left: -12px;
}

.timeline-content {
  padding: 20px 30px;
  background-color: var(--gray-color);
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.timeline-content h3 {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.timeline-content p {
  margin-bottom: 0;
}

.timeline-year {
  position: absolute;
  top: -40px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.timeline-item.left .timeline-year {
  right: 20px;
}

.timeline-item.right .timeline-year {
  left: 20px;
}

/* Missão, Visão e Valores */
.mission-vision {
  background-color: var(--gray-color);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mission-card {
  background-color: var(--light-color);
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: var(--transition);
  border-top: 4px solid var(--primary-color);
}

.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.mission-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.mission-card h3 {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.mission-card p {
  color: var(--dark-gray);
}

/* Serviços */
.services {
  background-color: var(--light-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Empurra o botão para o final */
  background-color: var(--light-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  border-top: 4px solid var(--primary-color);
  min-height: 100%; /* Garante altura consistente na grid */
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 30px;
}
.service-content p {
  flex-grow: 1;
  color: var(--dark-gray);
  margin-bottom: 20px;
}

.service-content h3 {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.service-content p {
  color: var(--dark-gray);
  margin-bottom: 20px;
}

/* Nossas Lojas */
.stores {
  background-color: var(--gray-color);
}

.stores-map {
  height: 500px;
  background-color: #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-top: 50px;
  position: relative;
}

/* Equipe */
.team {
  background-color: var(--light-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  background-color: var(--light-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  max-width: 360px;
  width: 100%; /* Garante que se ajuste até 300px */
  word-wrap: break-word; /* Quebra palavras longas */
  text-align: center;
  font-size: 15px;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-member img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}



.team-info {
  padding: 20px;
  text-align: center;
}

.team-info h3 {
  font-size: 1.3rem;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.team-info p {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: var(--gray-color);
  color: var(--accent-color);
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
}

/* Propagandas e Promoções */
.promotions {
  background-color: var(--accent-color);
  color: var(--light-color);
  padding: 80px 0;
}

.promotions .section-title h2 {
  color: var(--light-color);
}

.promotions .section-title p {
  color: rgba(255, 255, 255, 0.8);
}

.promotions-slider {
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}

.promotion-slide {
  background-color: var(--light-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.promotion-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.promotion-content {
  padding: 30px;
  color: var(--text-color);
}

.promotion-content h3 {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.promotion-content p {
  margin-bottom: 20px;
}

.promotion-price {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 1.2rem;
}

.new-price {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.slider-nav:hover {
  background-color: var(--secondary-color);
}

.slider-prev {
  left: -25px;
}

.slider-next {
  right: -25px;
}

/* Trabalhe Conosco */
.careers {
  background-color: var(--gray-color);
}

.job-listings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.job-card {
  background-color: var(--light-color);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  border-left: 5px solid var(--primary-color);
  max-width: 500px;
}

.job-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.job-card h3 {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.job-card p {
  margin-bottom: 20px;
  color: var(--dark-gray);
}

.job-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  color: var(--dark-gray);
}

.job-meta i {
  color: var(--primary-color);
}

/* Contato */
.contact {
  background-color: var(--light-color);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.contact-info h3 {
  font-size: 1.8rem;
  color: var(--accent-color);
  margin-bottom: 30px;
}

.contact-details {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 1.2rem;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.contact-text p {
  color: var(--dark-gray);
}

.contact-form {
  background-color: var(--light-color);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--accent-color);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.2);
  outline: none;
}

textarea.form-control {
  height: 150px;
  resize: vertical;
}

/* Footer */
footer {
  background-color: var(--footer-color);
  color: var(--light-color);
  padding: 80px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-col p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-links i {
  color: var(--primary-color);
  font-size: 0.8rem;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--light-color);
  border-radius: 50%;
  transition: var(--transition);
  font-size: 1.2rem;
}

.footer-social a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
}

/* Responsividade */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .mission-vision-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  .timeline-item.left, .timeline-item.right {
    left: 0;
  }
  
  .timeline::after {
    left: 31px;
  }
  
  .timeline-item.left::after, .timeline-item.right::after {
    left: 20px;
  }
  
  .timeline-item.left .timeline-year, .timeline-item.right .timeline-year {
    left: 70px;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 15px 20px;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--light-color);
    box-shadow: 0 5px 10px rgba(255, 45, 45, 0.1);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.4s ease;
  }
  
  nav.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  
  nav ul {
    flex-direction: column;
    padding: 20px 0;
  }
  
  nav ul li {
    margin: 0;
    text-align: center;
  }
  
  nav ul li a {
    display: block;
    padding: 12px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .slider-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .section-title p {
    font-size: 1rem;
  }
  
  .timeline-content {
    padding: 15px;
  }
  
  .timeline-content h3 {
    font-size: 1.3rem;
  }
  
  .contact-form {
    padding: 25px;
  }
}


.stores-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.map-container {
  flex: 1;
}

.photo-container {
  flex: 1;
  text-align: center;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
}

.store-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  width: 120px;
  text-align: center;
}

.store-icon {
  width: 25px;
  height: 25px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.store-btn:hover .store-icon {
  transform: scale(1.1);
}

.store-name {
  margin-top: 8px;
  font-size: 13px;
  font-weight: bold;
  color: #333;
}


.stores-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  background-color: #f0f0f0;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin: 20px auto;
  width: 100%;

}

.map-container {
  flex: 1 1 500px;
  max-width: 600px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  border-radius: 16px;
}

.map-container iframe{
  width: 100%;
  display: block;
  border: none;
  height: 300px;
  border-radius: 16px;
}



.team-tabs {
  text-align: center;
  margin-bottom: 20px;
}
.tab-button {
  background-color: #eee;
  border: none;
  padding: 10px 20px;
  margin: 0 5px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
}
.tab-button.active {
  background-color: #007bff;
  color: white;
}
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

