* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* Topbar com transição */
.topbar {
  background-color: #0047ab;
  padding: 0.5rem 0;
  color: #fff;
  font-size: 0.9rem;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  transition: transform 0.3s ease;
}

.topbar.hide {
  transform: translateY(-100%);
}

/* Header sempre fixo */
header {
  background-color: #ffffff;
  padding: 1rem;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0, 71, 171, 0.1);
  position: fixed;
  top: 40px; /* Altura do topbar */
  left: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Header ajusta posição quando topbar está escondido */
header.top {
  top: 0;
}

header.scrolled {
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 71, 171, 0.15);
}

body {
  padding-top: 140px; /* Altura do header + topbar */
}

.topbar {
  background-color: #0047ab;
  padding: 0.5rem 0;
  color: #fff;
  font-size: 0.9rem;
  width: 100%;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
}

.contact-header {
  color: white;
}

.contact-header a {
  color: #0047ab;
  font-weight: 600;
  text-decoration: none;
  margin-left: 1rem;
  transition: color 0.3s;
}

.contact-header a:hover {
  color: #003380;
}

.hero {
  background: url("../images/banner_mc_protecao.webp");
  background-size: cover;
  background-position: center;
  height: 800px;
  display: flex;
  align-items: center;
}

@supports not (background-image: url("../images/banner_mc_protecao.webp")) {
  .hero {
    background: url("../images/banner_mc_protecao.jpg");
    background-size: cover;
    background-position: center;
  }
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  color: white;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.cta-button {
  background-color: #0047ab;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.3s;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

.cta-button:hover {
  background-color: #003380;
}

.features {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  background-color: #f5f5f5;
  border-radius: 10px;
}

.feature-card i {
  font-size: 3rem;
  color: #0047ab;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .hero {
    height: 400px;
    background-position: 75% center;
  }

  .hero-content {
    text-align: left;
    padding: 2rem;
    max-width: 80%;
  }

  .hero h1 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  }

  .cta-button {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero {
    background-position: 80% center;
  }

  .hero-content {
    max-width: 90%;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

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

.main-menu {
  margin: 0 20px;
}

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

.main-menu a {
  text-decoration: none;
  color: #0047ab;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

.main-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #0047ab;
  transition: width 0.3s;
}

.main-menu a:hover {
  color: #003380;
}

.main-menu a:hover::after {
  width: 100%;
}

/* Ajuste para responsividade do menu */
@media (max-width: 1024px) {
  .header-content {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .main-menu {
    order: 3;
    width: 100%;
    margin: 1rem 0;
  }

  .main-menu ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .main-menu {
    display: none; /* Para telas muito pequenas, você pode querer implementar um menu hambúrguer */
  }

  /* ... outros estilos mobile existentes ... */
}

/* Seção Sobre */
.about-section {
  padding: 6rem 2rem;
  background-color: #f8f9fa;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-content {
  padding-right: 2rem;
}

.section-tag {
  color: #0047ab;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: block;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.about-content h2 {
  color: #0047ab;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}

.about-content h3 {
  color: #333;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}

.about-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.benefits-list {
  list-style: none;
  margin-bottom: 2rem;
}

.benefits-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  color: #333;
}

.benefits-list i {
  color: #0047ab;
  margin-right: 1rem;
  font-size: 1.2rem;
}

/* Responsividade */
@media (max-width: 968px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-content {
    padding-right: 0;
  }

  .about-content h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 4rem 1rem;
  }

  .about-content h2 {
    font-size: 1.5rem;
  }

  .about-content h3 {
    font-size: 1.2rem;
  }
}

/* Seção Galeria */
.gallery-section {
  padding: 6rem 2rem;
  background-color: #fff;
}

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

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  color: #0047ab;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: #666;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Responsividade da Galeria */
@media (max-width: 968px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item img {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 220px;
  }
}

/* Botões Flutuantes */
.float-button {
  position: fixed;
  width: 60px;
  height: 60px;
  right: 40px;
  background-color: #0047ab;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 24px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.float-button:hover {
  transform: scale(1.1);
  color: #fff;
}

#btnTop {
  bottom: 40px; /* Alterado: agora está abaixo do WhatsApp */
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#btnTop.show {
  opacity: 1;
  visibility: visible;
}

.whatsapp-button {
  bottom: 120px; /* Alterado: agora está acima */
  background-color: #25d366;
  animation: pulse 2s infinite;
}

/* Efeito Pulse para o WhatsApp */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Ajuste para mobile */
@media (max-width: 768px) {
  .float-button {
    width: 50px;
    height: 50px;
    right: 20px;
    font-size: 20px;
  }

  .whatsapp-button {
    bottom: 90px; /* Ajustado para mobile */
  }

  #btnTop {
    bottom: 20px;
  }
}

/* Seção CTA */
.cta-section {
  background: linear-gradient(rgba(0, 71, 171, 0.85), rgba(0, 71, 171, 0.85)), url("../images/bg-cta.jpg");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  padding: 6rem 2rem;
  position: relative;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .cta-button {
  padding: 1.2rem 3rem;
  font-size: 1.3rem;
  text-transform: uppercase;
  background-color: #25d366;
  border: 2px solid #fff;
}

.cta-section .cta-button:hover {
  background-color: #22c55e;
  transform: translateY(-2px);
}

.cta-section .cta-button i {
  margin-left: 10px;
}

/* Responsividade do CTA */
@media (max-width: 768px) {
  .cta-section {
    padding: 4rem 1rem;
    background-attachment: scroll;
  }

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

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

  .cta-section .cta-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
}

/* Footer */
.footer {
  background-color: #f8f9fa;
  padding-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h3 {
  color: #0047ab;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-column p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column ul li a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #0047ab;
}

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

.social-links a {
  color: #0047ab;
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.social-links a:hover {
  transform: translateY(-3px);
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
}

.contact-info i {
  color: #0047ab;
  width: 20px;
}

.footer-bottom {
  background-color: #0047ab;
  padding: 1.5rem 0;
  color: #fff;
}

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

.footer-bottom a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

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

.footer-logo {
  margin-bottom: 1.5rem;
}

/* Responsividade do Footer */
@media (max-width: 968px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

/* Seção FAQ */
.faq-section {
  padding: 6rem 2rem;
  background: linear-gradient(rgba(0, 71, 171, 0.92), rgba(0, 71, 171, 0.92)), url("../images/bg-cta.webp");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  position: relative;
}

/* Ajuste para dispositivos que não suportam webp */
@supports not (background-image: url("../images/bg-cta.webp")) {
  .faq-section {
    background: linear-gradient(rgba(0, 71, 171, 0.92), rgba(0, 71, 171, 0.92)), url("../images/bg-cta.jpg");
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
  }
}

/* Ajuste para mobile (onde fixed attachment pode causar problemas) */
@media (max-width: 768px) {
  .faq-section {
    background-attachment: scroll;
  }
}

/* Mantenha o resto dos estilos do FAQ, apenas ajustando algumas cores */
.faq-section .section-header h2,
.faq-section .section-tag,
.faq-section .section-header p {
  color: #fff;
}

.faq-question {
  background: rgba(255, 255, 255, 0.98);
}

.faq-answer {
  background: rgba(255, 255, 255, 0.95);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-accordion {
  margin-top: 3rem;
}

.faq-item {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  text-align: left;
  background: #fff;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  color: #0047ab;
  font-weight: 600;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: #f8f9fa;
}

.faq-item.active .faq-question {
  background-color: #f8f9fa;
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: #fff;
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 1000px;
}

.faq-answer p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.faq-answer ul {
  list-style: none;
  padding-left: 1rem;
}

.faq-answer ul li {
  color: #666;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.faq-answer ul li:before {
  content: "•";
  color: #0047ab;
  position: absolute;
  left: 0;
}

/* Responsividade do FAQ */
@media (max-width: 768px) {
  .faq-section {
    padding: 4rem 1rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 1.2rem;
  }

  .faq-item.active .faq-answer {
    padding: 1.2rem;
  }
}

/* Menu Mobile */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #0047ab;
  margin: 6px 0;
  transition: all 0.3s ease;
}

/* Classe para quando o menu estiver aberto */
.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .main-menu {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #fff;
    padding: 80px 20px 20px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .main-menu.active {
    right: 0;
  }

  .main-menu ul {
    flex-direction: column;
    gap: 1rem;
  }

  .main-menu ul li {
    width: 100%;
  }

  .main-menu a {
    display: block;
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
  }

  /* Overlay para quando o menu estiver aberto */
  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .menu-overlay.active {
    display: block;
  }

  /* Ajuste no header para mobile */
  .header-content {
    justify-content: space-between;
  }

  .contact-header {
    display: none; /* Os contatos vão para dentro do menu mobile */
  }
}

/* Topbar */
.topbar {
  background-color: #0047ab;
  padding: 0.5rem 0;
  color: #fff;
  font-size: 0.9rem;
  width: 100%;
}

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

.topbar-info {
  display: flex;
  align-items: center;
}

.topbar-info i {
  margin-right: 0.5rem;
  color: #ffd700; /* Dourado para o ícone de prêmio */
}

.topbar-contact {
  display: flex;
  gap: 1.5rem;
}

.topbar-contact a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: opacity 0.3s;
}

.topbar-contact a:hover {
  opacity: 0.8;
}

.topbar-contact i {
  margin-right: 0.5rem;
}

/* Responsividade do Topbar */
@media (max-width: 768px) {
  .topbar-content {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding: 0.8rem 1rem;
  }

  .topbar-contact {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .topbar-info span {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .topbar-contact {
    flex-direction: column;
    gap: 0.3rem;
  }

  .topbar-contact a {
    line-height: 1.4;
  }
}

/* Seção de Depoimentos */
.testimonials-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.rating {
  color: #ffd700;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.client-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.client-info strong {
  color: #333;
}

.client-info span {
  color: #666;
  font-size: 14px;
}

/* Seção de Mapa */
.map-section {
  padding: 80px 0;
}

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

.map-container iframe {
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Seção de Preços e Pagamento */
.pricing-section {
  padding: 80px 0;
  background-color: #0047ab;
}

.pricing-section .section-header h2,
.pricing-section .section-tag,
.pricing-section .section-header p {
  color: #fff;
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.payment-card {
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.payment-card:hover {
  transform: translateY(-5px);
}

.payment-card i {
  font-size: 40px;
  color: #0047ab;
  margin-bottom: 20px;
}

.payment-card h3 {
  color: #0047ab;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.payment-card p {
  color: #666;
  font-size: 16px;
}

/* Responsividade */
@media (max-width: 768px) {
  .testimonials-grid,
  .payment-options {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }

  .testimonial-card,
  .payment-card {
    padding: 20px;
  }

  .map-container {
    padding: 0 15px;
  }

  .map-container iframe {
    height: 350px;
  }
}

/* Ajustes no Footer */
.footer .contact-info li {
  margin-bottom: 15px;
  line-height: 1.5;
}

.footer .contact-info i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.footer .contact-info br + i {
  margin-left: 30px;
}

/* Atualização na seção de Depoimentos */
.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 15px;
}

.client-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #0047ab;
}

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

.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.rating {
  color: #ffd700;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
  color: #666;
}

.client-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.client-info strong {
  color: #333;
  font-size: 18px;
}

.client-info span {
  color: #666;
  font-size: 14px;
}

/* Responsividade */
@media (max-width: 768px) {
  .client-avatar {
    width: 60px;
    height: 60px;
  }

  .testimonial-card {
    padding: 20px;
  }
}

/* Ajuste para o header fixo */
.st-header-top-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #0047ab;
  z-index: 1001;
}

.st-header-menu-area {
  position: fixed;
  top: 40px; /* Altura da topbar */
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-sticky {
  padding: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 71, 171, 0.1);
}

.header-sticky.sticky {
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 71, 171, 0.15);
}

/* Ajuste no padding do body para compensar o header fixo */
body {
  padding-top: 140px; /* Altura do header + topbar */
}

/* Ajuste para mobile */
@media (max-width: 768px) {
  body {
    padding-top: 120px;
  }

  .topbar-content {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding: 0.8rem 1rem;
  }

  .topbar-contact {
    justify-content: center;
  }

  /* Ajuste na altura do topbar para mobile */
  .topbar {
    height: 80px;
    padding: 0;
  }

  /* Ajuste na posição do header para mobile */
  header {
    top: 80px;
  }

  /* Ajuste no padding do body */
  body {
    padding-top: 140px;
  }
}

/* Ajuste para telas ainda menores */
@media (max-width: 480px) {
  .topbar-info span {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .topbar-contact {
    flex-direction: column;
    gap: 0.3rem;
  }

  .topbar-contact a {
    line-height: 1.4;
  }
}

/* Remove os estilos de fixação que adicionamos anteriormente */
.st-header-top-area,
.st-header-menu-area,
.header-sticky {
  position: static;
}

/* Ajuste no tamanho do logo */
.logo img {
  height: 110px; /* Aumentado de 90px para 110px */
  width: auto;
}

/* Ajuste para mobile */
@media (max-width: 768px) {
  .logo img {
    height: 90px; /* Um pouco menor no mobile para não ocupar muito espaço */
  }
}

/* Ajuste nas cores do footer */
.footer-column ul li {
  color: #666; /* Mesma cor dos outros textos */
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.footer-column ul li:hover {
  color: #0047ab;
}

/* Mantém os links com o estilo atual */
.footer-column ul li a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #0047ab;
}

/* Ajuste específico para a lista de contato */
.footer-column .contact-info li {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}
