/* Estilos Globais */
:root {
  --primary-color: #dc5f00; /* Laranja */
  --secondary-color: #3a3f43; /* Preto-esverdeado */
  --accent-color: #666c7b; /* Azul-acinzentado */
  --light-color: #eeeeee; /* Branco off-white */
  --dark-color: #3a3f43; /* Preto-esverdeado */
  --gray-color: #666c7b; /* Azul-acinzentado */
  --light-gray-color: #f8f9fa;
  --orange-light: #ff7f33; /* Laranja mais claro para hover */
  --blue-gray-light: #8c91a0; /* Azul-acinzentado mais claro */
  --transition: all 0.3s ease;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--secondary-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

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

.btn {
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--light-color);
  font-weight: 600;
}

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

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
}

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

.btn-outline-light {
  color: var(--light-color);
  border-color: var(--light-color);
  font-weight: 600;
}

.btn-outline-light:hover {
  color: var(--secondary-color);
  background-color: var(--light-color);
}

.section-title {
  position: relative;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 15px auto 0;
}

.section-subtitle {
  color: var(--accent-color);
  margin-bottom: 30px;
  font-size: 18px;
}

/* Navbar */
.navbar {
  padding: 15px 0;
  transition: var(--transition);
  background-color: #3a3f43;
  border-bottom: 2px solid var(--primary-color);
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  padding: 8px 15px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.navbar-brand img {
  transition: var(--transition);
}

.navbar-scrolled {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.action-buttons .btn {
  padding: 8px 15px;
  font-size: 14px;
}

.btn-success {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--light-color);
}

.btn-success:hover {
  background-color: var(--blue-gray-light);
  border-color: var(--blue-gray-light);
  color: var(--light-color);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: url('../img/Fundo.jpg') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(58, 63, 67, 0.9), rgba(102, 108, 123, 0.8));
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--light-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section .lead {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 30px;
  color: var(--light-color);
}

.hero-section h1 span {
  color: var(--primary-color);
}

.hero-buttons .btn {
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 12px 30px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-image {
  animation: float 3s ease-in-out infinite;
  max-width: 100%;
  height: auto;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Brands Section */
.brands-section {
  background-color: var(--light-color);
}

.brands-slider {
  padding: 20px 0;
}

.brand-item {
  text-align: center;
  padding: 15px;
  opacity: 0.7;
  transition: var(--transition);
}

.brand-item:hover {
  opacity: 1;
}

.brand-item img {
  max-height: 60px;
  width: auto;
}

/* Products Section */
.products-section {
  background-color: #fff;
}

.product-filter {
  margin-bottom: 30px;
}

.product-filter .nav-link {
  color: var(--dark-color);
  font-weight: 500;
  padding: 10px 25px;
  border-radius: 30px;
  margin: 0 5px;
  transition: var(--transition);
}

.product-filter .nav-link.active {
  background-color: var(--primary-color);
  color: #fff;
}

.product-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-color);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 1;
}

.product-info {
  padding: 20px;
  background-color: #fff;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.product-category {
  color: var(--gray-color);
  font-size: 14px;
  margin-bottom: 15px;
}

.product-footer {
  margin-top: auto;
}

.product-price {
  font-weight: 700;
  font-size: 18px;
  color: var(--primary-color);
}

/* Services Section */
.services-section {
  background-color: var(--light-color);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary-color);
}

.service-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--accent-color);
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.service-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  background-color: var(--light-color);
  color: var(--primary-color);
  font-size: 30px;
  margin: 0 auto 20px;
  transition: var(--transition);
  border: 2px solid var(--primary-color);
}

.service-card:hover .service-icon {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.service-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--secondary-color);
  position: relative;
  padding-bottom: 15px;
}

.service-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.service-description {
  color: var(--accent-color);
  margin-bottom: 20px;
}

/* Coverage Section */
.coverage-section {
  background-color: var(--light-gray-color);
}

.coverage-map {
  text-align: center;
  margin-bottom: 20px;
}

.coverage-map img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.region-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.region-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.region-icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: var(--light-color);
  color: var(--primary-color);
  font-size: 20px;
  text-align: center;
  margin-bottom: 15px;
}

.region-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.region-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.region-list li {
  padding: 5px 0;
  border-bottom: 1px dashed #eee;
  color: var(--gray-color);
}

.region-list li:last-child {
  border-bottom: none;
}

/* About Section */
.about-section {
  background-color: #fff;
}

.about-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-description {
  color: var(--gray-color);
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.7;
}

.about-feature {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.about-feature i {
  color: var(--primary-color);
  font-size: 18px;
  margin-right: 10px;
}

.about-feature span {
  font-weight: 500;
  color: var(--dark-color);
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--light-gray-color);
}

.testimonial-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  margin-bottom: 20px;
  font-style: italic;
  color: var(--gray-color);
  position: relative;
}

.testimonial-content::before {
  content: '\201C';
  font-size: 60px;
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
  top: -20px;
  left: -10px;
}

.testimonial-avatar img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-right: 15px;
}

.author-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.author-rating i {
  color: #ffc107;
  font-size: 14px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
  color: var(--light-color);
  text-align: center;
  padding: 60px 0;
  border-top: 5px solid var(--primary-color);
  border-bottom: 5px solid var(--primary-color);
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Section */
.contact-section {
  background-color: var(--light-color);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary-color);
}

.contact-item {
  display: flex;
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: var(--light-color);
  color: var(--primary-color);
  font-size: 20px;
  text-align: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.contact-text p {
  color: var(--gray-color);
  margin-bottom: 0;
}

.contact-social h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.social-icons {
  display: flex;
}

.social-icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background-color: var(--light-color);
  color: var(--primary-color);
  font-size: 16px;
  text-align: center;
  margin-right: 10px;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.contact-form {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control, .form-select {
  height: 50px;
  border-radius: 5px;
  border: 1px solid #e1e1e1;
  padding: 10px 15px;
  font-size: 15px;
}

textarea.form-control {
  height: auto;
}

.form-control:focus, .form-select:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Map Section */
.map-container {
  height: 450px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
.footer {
  background-color: var(--secondary-color);
  color: var(--light-color);
  font-size: 15px;
  border-top: 5px solid var(--primary-color);
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-description {
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer-title {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--light-color);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.footer-contact li i {
  color: var(--primary-color);
  margin-right: 10px;
  margin-top: 5px;
}

.footer-social {
  margin-top: 20px;
}

.footer-social .social-icon {
  background-color: var(--accent-color);
  color: var(--light-color);
}

.footer-social .social-icon:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.copyright {
  margin-bottom: 0;
}

.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
}

.footer-bottom-links li {
  margin-left: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: #fff;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  font-size: 20px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: #25d366;
  color: #fff;
  text-align: center;
  font-size: 30px;
  z-index: 99;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.whatsapp-button:hover {
  background-color: #128c7e;
  color: #fff;
  transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
  .hero-section h1 {
    font-size: 3rem;
  }
}

@media (max-width: 991.98px) {
  .navbar {
    padding: 10px 0;
    background-color: var(--secondary-color);
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section {
    height: auto;
    padding: 120px 0 80px;
  }
  
  .cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section .lead {
    font-size: 1rem;
  }
  
  .product-filter .nav-link {
    padding: 8px 15px;
    margin-bottom: 10px;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
  
  .footer-bottom-links {
    justify-content: flex-start;
    margin-top: 10px;
  }
  
  .footer-bottom-links li {
    margin-left: 0;
    margin-right: 20px;
  }
}

@media (max-width: 575.98px) {
  .hero-section h1 {
    font-size: 1.8rem;
  }
  
  .btn {
    padding: 8px 20px;
    font-size: 13px;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .back-to-top,
  .whatsapp-button {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
  }
  
  .whatsapp-button {
    font-size: 24px;
  }
}