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

body, html {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background-color: #FFFFFF;
  padding: 10px 0;
}

.header-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  width: 250px;
}

@media (max-width: 768px) {
  .logo {
    width: 150px;
  }
}

@media (max-width: 480px) {
  .logo {
    width: 120px;
  }
}

/* Hero Section */
.hero {
  background-color: #0055A2; /* Deep Blue */
  text-align: center;
  padding: 80px 0;
  color: #FFFFFF;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 1rem;
  margin: 10px 5px;
}

.btn-primary {
  background-color: #E62E24; /* Red */
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: #b71c1c; /* Darker red */
}

.btn-call {
  background-color: #FFD54F; /* Bright Yellow */
  color: #333; /* Dark text */
}

.btn-call:hover {
  background-color: #FFC107; /* Slightly darker yellow */
}

.btn-whatsapp {
  display: inline-block;
  background-color: #25D366; /* WhatsApp Green */
  color: #FFFFFF;
  padding: 10px 20px;
  margin-top: 15px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #1ebe5d; /* Slightly darker green on hover */
}

.btn-whatsapp i {
  margin-right: 8px;
  color: #FFFFFF;
}

.btn-whatsapp:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.5);
}

/* Responsive adjustments for service-item buttons */
@media (max-width: 768px) {
  .btn-whatsapp {
    width: 100%;
    text-align: center;
  }
}

.btn i {
  margin-right: 8px;
}

/* Why Best Section */
.why-best {
  background-color: #FFD54F; /* Bright Yellow */
  padding: 50px 0;
  text-align: center;
}

.why-best h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #0055A2; /* Deep Blue */
}

.why-best p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.why-best ul {
  list-style-type: none;
  padding: 0;
}

.why-best ul li {
  margin: 10px 0;
  color: #333;
}

/* Services Section */
.services {
  padding: 50px 0;
  background-color: #FFFFFF;
}

.services h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2rem;
  color: #0055A2;
}

.services-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.service-item {
  background-color: #f4f4f4;
  padding: 30px 20px;
  border-radius: 10px;
  flex: 1 1 30%;
  max-width: 30%;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.service-item i {
  color: #0055A2;
  margin-bottom: 15px;
}

.btn-whatsapp i {
  color: #FFFFFF;
}

.service-item h3 {
  margin-bottom: 15px;
  color: #0055A2;
  font-size: 1.5rem;
}

.service-item p {
  margin-bottom: 20px;
  color: #333;
}

@media (max-width: 768px) {
  .service-item {
    flex: 1 1 80%;
    max-width: 80%;
  }
}

/* Find Location Section */
.find-location {
  background-color: #f9f9f9;
  padding: 50px 0;
  text-align: center;
}

.find-location h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #0055A2;
}

.find-location p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.location-list {
  columns: 4;
  column-gap: 20px;
  list-style-type: none;
  padding: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.location-list li {
  margin-bottom: 10px;
  color: #333;
}

@media (max-width: 992px) {
  .location-list {
    columns: 2;
  }
}

@media (max-width: 576px) {
  .location-list {
    columns: 2;
  }
}

/* Footer */
.footer {
  background-color: #0055A2;
  color: #FFFFFF;
  padding: 50px 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-section {
  flex: 1 1 250px;
  margin-bottom: 20px;
}

.footer-section i {
  font-size: 24px;
  margin-right: 10px;
  vertical-align: middle;
}

.footer-section p, .footer-section a {
  color: #FFFFFF;
  margin: 10px 0;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-section h4 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

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

.footer-links li {
  margin: 8px 0;
}

.footer-links li a {
  color: #FFD54F;
  text-decoration: none;
}

.footer-links li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  background-color: #004080;
  padding: 15px 0;
  font-size: 0.9rem;
  margin-top: 20px;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-section {
    flex: 1 1 100%;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  padding: 15px;
  font-size: 24px;
  text-align: center;
  z-index: 1000;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
}

.whatsapp-float i {
  vertical-align: middle;
}

/* Media Queries */
@media (max-width: 768px) {
  .contact-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .btn i {
    margin-right: 10px;
  }
}

/* ... (CSS existente permanece o mesmo) ... */

/* Navbar Styles */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #0055A2; /* Deep Blue */
}

.nav-buttons {
  display: flex;
  gap: 10px;
}

.nav-buttons .btn {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.nav-buttons .btn i {
  margin-right: 5px;
}

/* Ajustes para Botões no Header */
.header .btn-call {
  background-color: #FFD54F;
  color: #333;
}

.header .btn-call:hover {
  background-color: #FFC107;
}

.header .btn-whatsapp {
  background-color: #25D366;
  color: #FFFFFF;
}

.header .btn-whatsapp:hover {
  background-color: #1ebe5d;
}

.header .btn-whatsapp i {
  color: #FFFFFF;
}

/* Responsividade do Menu de Navegação */
@media (max-width: 992px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .nav-buttons {
    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  .nav-buttons .btn {
    padding: 10px;
    font-size: 0.8rem;
  }
}

