/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #2c5f8d;
  --light-gray: #f5f7fa;
  --white: #ffffff;
  --yellow-highlight: #fdb913;
  --dark-text: #1a1a1a;
  --medium-gray: #6b7280;
  --light-blue: #e8f1f8;
  --shadow: rgba(0, 0, 0, 0.1);
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Navbar */
.navbar {
  transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none !important;
    background-color: var(--light-gray);
}

.navbar.scrolled {
  background-color: var(--white) !important;
  box-shadow: 0 2px 10px var(--shadow);
}

.brand-icon {
  font-size: 2rem;
  color: var(--primary-blue);
}

.brand-text {
  font-size: 1.25rem;
  color: var(--dark-text);
}

.brand-text strong {
  color: var(--primary-blue);
}

.navbar-nav .nav-link {
  color: var(--primary-blue);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: white;
}

.btn-primary {
  background-color: #25d366;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 8px
}

.btn-primary:hover {
  background-color: var(--yellow-highlight);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 141, 0.3);
  color: var(--primary-blue);
}

.btn-outline-primary {
  border-color: none;
  background-color: #25d366;
  color: white;
}

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

/* Hero Section */
.hero-section {
  padding: 150px 0 100px;
  background: var(--primary-blue);
}

.badge-experience {
  display: inline-block;
  background-color: var(--yellow-highlight);
  color: var(--primary-blue);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--light-gray);
  margin-bottom: 2rem;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--yellow-highlight);
}

.feature-item i {
  color: var(--yellow-highlight);
  font-size: 1.25rem;
}

.hero-image {
  border-radius: 20px;
  box-shadow: 0 20px 40px var(--shadow);
  width: 90%;
  height: auto;
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background-color: var(--white);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--medium-gray);
  max-width: 600px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px var(--shadow);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(44, 95, 141, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--yellow-highlight);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--medium-gray);
  margin: 0;
}

/* Appliances Section */
.appliances-section {
  padding: 100px 0;
  background-color: var(--light-gray);
}

.appliance-card {
  background: var(--white);
  padding: 2rem 1rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 3px 15px var(--shadow);
}

.appliance-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(44, 95, 141, 0.2);
}

.appliance-card i {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.appliance-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-text);
  margin: 0;
}

/* Adicionando estilos para cards de produtos com imagens */
.appliance-card-image {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 3px 15px var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.appliance-card-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(44, 95, 141, 0.2);
}

.appliance-card-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.appliance-card-image h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-text);
  margin: 0;
}

.appliance-card-image i {
  font-size: 4rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

/* About Section */
.about-section {
  padding: 100px 0;
  background-color: var(--primary-blue);
}

.about-section .section-title{
  color: var(--yellow-highlight);
}

.about-text {
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 2rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: start;
}

.feature-icon-small {
  width: 50px;
  height: 50px;
  background: var(--yellow-highlight);
  color: var(--primary-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.about-feature-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--yellow-highlight);
  margin-bottom: 0.5rem;
}

.about-feature-item p {
  color: var(--medium-gray);
  margin: 0;
}

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

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow);
  height: 100%;
}

.stars {
  color: var(--yellow-highlight);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-card p {
  color: var(--medium-gray);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author strong {
  display: block;
  color: var(--dark-text);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  color: var(--medium-gray);
  font-size: 0.875rem;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background-color: var(--primary-blue);
}

.contact-section .section-title{
  color: var(--yellow-highlight);
}

.contact-section .section-subtitle{
  color: var(--white);
}

.contact-card {
  background: var(--light-gray);
  padding: 3rem 2rem;
  border-radius: 15px;
  text-align: center;
  height: 100%;
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: var(--yellow-highlight);
  color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.contact-card h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: var(--medium-gray);
  margin-bottom: 1.5rem;
}

.contact-link {
  color: var(--primary-blue);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.125rem;
}

.contact-link:hover {
  text-decoration: underline;
}

/* Map Section */
.map-section {
  padding: 0;
}

.map-info {
  padding: 4rem 3rem;
  background-color: var(--light-blue);
  height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.map-info h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.info-item strong {
  display: block;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.25rem;
}

.info-item p {
  color: var(--medium-gray);
  margin: 0;
}

.highlight-box {
  background: var(--yellow-highlight);
  padding: 1.5rem;
  border-radius: 10px;
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.highlight-box i {
  font-size: 1.5rem;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.highlight-box strong {
  display: block;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.25rem;
}

.highlight-box p {
  color: var(--primary-blue);
  margin: 0;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #1e4363 100%);
  color: var(--white);
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-section .btn-light {
  background: #25d366;
  color: white;
  border: none;
  font-weight: 600;
}

.cta-section .btn-light:hover {
  background: var(--yellow-highlight);
  color: var(--primary-blue);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background-color: white;
  color: var(--primary-blue);
  padding: 4rem 0 2rem;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

.footer p {
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--yellow-highlight);
  color: var(--dark-text);
  transform: translateY(-3px);
}

.footer h6 {
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--primary-blue);
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--yellow-highlight);
}

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

.footer-contact li {
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-contact i {
  color: var(--yellow-highlight);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0 1.5rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: var(--white);
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  color: var(--white);
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-blue);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

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

.back-to-top:hover {
  background-color: #1e4363;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.25rem;
  }

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

  .map-info {
    height: auto;
    padding: 3rem 2rem;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 120px 0 60px;
  }

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

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

  .hero-cta .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }

  .hero-cta .btn:last-child {
    margin-bottom: 0;
  }

  .services-section,
  .appliances-section,
  .about-section,
  .testimonials-section,
  .contact-section {
    padding: 60px 0;
  }

  .cta-section h2 {
    font-size: 1.75rem;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }

  .back-to-top {
    bottom: 85px;
    right: 20px;
  }
}

/* AOS Animation Initialization */
[data-aos] {
  pointer-events: auto;
}
