/********** HTML **********/

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/********** BODY **********/

body {
  margin: 0;
  Font-family: 'Roboto', sans-serif;
  background-color: #ffffff;
  overflow-x: hidden;
  padding: 0;
}

/* LINE */

hr {
  border: 0; 
  height: 2px;  
  background-color: #333; 
  margin: 0px 0;  
}


/**** 	       Top Header css    ****/

.top-header {
  background: #333;
  font-size: 1.05rem;
  color: var(--primary-color); 
  height: 60px;
  color: #d4d4d4;
}

.top-header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 100px;
}

.top-header .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-header .left-column,
.top-header .right-column {
  display: flex;     
  align-items: center;
}

.top-header .left-column {
  flex: 1;
}

.top-header .right-column {
  margin-left: 0;
}

.top-header ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.top-header .right-column ul li + li {
  margin-left: 10px;
}

.top-header a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

.top-header a i {
  margin-right: 6px;
  font-size: 1rem;
}

.top-header a:hover {
  color: white; 
}

/********** HEADER **********/

header {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  width: 100%;
  height: 80px;
}

/* LOGO */

.logo {
  display: flex;
  align-items: center;
  margin-left: 10%;
}
.logo img {
  max-width: 180px;
  height: auto;
}

/* MOBILE MENU BUTTON */

.menu-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}
.navbar-toggle {
  display: none; 
  background: none;
  border: none;
  cursor: pointer;
  padding: 15px;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #000000;
  margin: 4px 0;
  border-radius: 2px;
}
.navbar-collapse {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.navbar-nav {
  display: flex;
  list-style: none;
  gap: 15px;
  white-space: nowrap; 
  margin-right: 40px;
}
.navbar-nav li {
  padding: 7px;
  border-radius: 5px;
}

.navbar-nav li a {
  text-decoration: none;
  color: #000000;
}

.btn-small {
  background-color: rgb(255, 255, 255);
  padding: 6px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.btn-small:hover {
  background-color: #b1b1b1;
}

/* Estilo apenas para o botão de ligar */
.btn-call {
  background-color: #fea603;
  padding: 14px;
  border-radius: 6px;
  font-size: 20px;
  transition: background-color 0.3s ease;
}

.btn-call:hover {
  background-color: #b1b1b1;
}

.btn-whats {
  background-color: rgba(78, 179, 10, 0.992);
  padding: 14px;
  border-radius: 6px;
  font-size: 20px;
  transition: background-color 0.3s ease;
}

.btn-whats:hover {
  background-color: #b1b1b1;
}

/********** BANNER **********/

.banner {
  position: relative;
  width: 100%;
  height: 500px;
  background: url('/images/banner.jpg') no-repeat left center/cover;
}

.content-banner {
  position: absolute;
  top: 200px;            
  right: 15vw;           
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
  transform: none;      
}

/* Formulário no banner */
.banner-form {
  display: none;
  flex-direction: column;
  gap: 10px;
  background: rgba(255, 255, 255, 0.582);
  padding: 20px;
  border-radius: 8px;
  max-width: 350px;
  width: 88%;
  margin-bottom: 20px;
  align-items: center;
  border: 1px solid #00000063;
}

.banner-form input,
.banner-form textarea {
  width: 80%;
  padding: 10px 12px;
  border: 1px solid #000000;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
}

.banner-form textarea {
  resize: vertical;
  min-height: 80px;
}

.banner-form input:focus,
.banner-form textarea:focus {
  outline: none;
  border-color: var(--color-primary, #007BFF);
}

.btn-submit {
  background-color: var(--color-primary, #000000);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color .3s;
}

.btn-submit:hover {
  background-color: var(--color-primary-dark, #0056b3);
}

.btn-banner-contact {
  display: flex;
  width: 100%;
  height: 55px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(90deg, #fea603, #6fc400ab, rgba(78, 179, 10, 0.992));
  transition: all 0.6s ease;
  position: relative;
}

.btn-banner-contact .btn {
  flex: 1;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  color: #000000;
  font-weight: 600;
  transition: all 0.8s ease;
  overflow: hidden;
  white-space: nowrap;
}

.btn i {
  margin-right: 6px;
}

.btn-phone {
  border-radius: 8px 0 0 8px;
  background-color: transparent;
}

.btn-whatsapp {
  border-radius: 0 8px 8px 0;
  background-color: transparent;
}

/* Hover no botão de telefone */
.btn-banner-contact.hover-phone .btn-phone {
  flex: 1;
  width: 100%;
  background-color: #fea603;
  color: #000;
}
.btn-banner-contact.hover-phone .btn-whatsapp {
  flex: 0;
  width: 0;
  padding: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

/* Hover no botão de WhatsApp */
.btn-banner-contact.hover-whatsapp .btn-whatsapp {
  flex: 1;
  width: 100%;
  background-color: rgba(78, 179, 10, 0.992);
  color: #000;
}
.btn-banner-contact.hover-whatsapp .btn-phone {
  flex: 0;
  width: 0;
  padding: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.btn-banner-directions {
  width: 350px;
}

.btn-banner-directions .btn {
  width: 100%;
  height: 55px;
  background-color: #007bff;
  color: rgb(0, 0, 0);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.8s ease;
  overflow: hidden;
}

.btn-banner-directions .btn:hover { background-color: #b1b1b1; }

/********** SERVICES **********/

/* SERVICES */
.services {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 80px;
  background-color: #ffffff;
  flex-wrap: wrap;
}

/* PRODUCTS */
.product {
  width: 90%;
  max-width: 28%;
  text-align: center;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  padding: 0px;
  border-radius: 10px;
  background-color: rgb(0, 0, 0);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
}
.product img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  transition: transform 0.3s ease; 
}
.product img:hover {
  transform: scale(1.05); 
}
.product h4 {
  font-size: 14px;
  color: #ffffff;
  margin: 15px 10px; 
  flex-grow: 1; 
  text-decoration: none;
}

/* BUDJET BUTTON */
.btn-budget {
  display: inline-block;
  text-decoration: none;
  background-color: rgba(78, 179, 10, 0.992);
  color: rgb(0, 0, 0);
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 12px;
  transition: background-color 0.3s ease;
  margin: 10px; 
}
.btn-budget:hover {
  background-color: #b1b1b1;
}

/********** ABOUT THE STORE **********/

.about-section {
  display: flex;
  align-items: center;
  padding: 30px 40px; 
  justify-content: flex-start; 
  background-color: #ffffff;
  padding-left: 10%;
}
.about-section img {
  width: 650px;  
  height: 450px;  
  object-fit: cover; 
  border-radius: 20px;
  margin-right: 100px;  
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5); /* sombra suave */
  object-fit: cover; 
  transition: transform 0.3s ease; 
}
.about-section img:hover { 
  transform: scale(1.10);
}
.about-section .text {
  width: 850px; 
  flex-direction: column;
  justify-content: center;  
}
.about-section h2 {
  font-size: 35px;
  margin-bottom: 10px;  
  color: #000000;
}
.about-section h3 {
  font-size: 23px;
  margin-bottom: 10px;  
  color: #2b2b2b;
}
.about-section p {
  font-size: 18px;
  color: #414141;
  line-height: 1.6;
}
.about-section-link {
  text-decoration: underline; 
  color: inherit;
}
.about-section-link:hover {
  color: rgba(78, 179, 10, 0.992);
}

.btn-whats-about-section {
  display: inline-flex;          
  align-items: center;              
  gap: 10px;                      
  text-decoration: none;
  background-color: rgba(78, 179, 10, 0.992);
  color: white;
  padding: 16px 25px;
  border-radius: 4px;
  font-size: 20px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  margin-top: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.btn-whats-about-section i {
  font-size: 22px;
  line-height: 1;
}

.btn-whats-about-section:hover {
  background-color: #b1b1b1;
}

/********** FEATURES **********/

.features {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; 
  padding: 40px;
  flex-wrap: wrap;
}
.feature {
  display: flex;
  align-items: flex-start; 
  gap: 15px; 
  max-width: 30%; 
  margin-bottom: 20px; 
}
.feature-icon {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-top: 25px;
}
.feature-text {
  display: flex;
  flex-direction: column;
}
.feature-text h4 {
  margin-bottom: 10px;
  font-size: 20px;
}
.feature-text p {
  margin-top: 0;
  font-size: 16px;
}

/********** PARTNER STORES **********/

.partner-stores {
  background-color: #000000; 
  color: #ffffff;
  padding: 60px;
  text-align: center;
}
.partner-stores h3 a {
  color: inherit; 
  transition: color 0.3s ease;
}
.partner-stores h3 a:hover {
  color: #E1306C; 
  text-decoration: underline;
}
.partner-stores h2 {
  font-size: 30px; 
  margin-bottom: 20px; 
  margin-top: -15px;
}
/* STORE */
.store-container {
  display: flex; 
}
.store {
  display: flex;
  width: 50%; 
}
.store img {
  max-width: 120px; 
  height: auto;
  margin: 10px 30px; 
}
.store-details {
  text-align: left; 
}
.store-details h3 {
  font-size: 18px; 
  margin-bottom: 5px;
}
.store-details p {
  font-size: 14px; 
  margin-bottom: 5px;
}

/**********  MAP  **********/

.location {
  text-align: center;
}
.map-container {
  display: flex; 
  justify-content: center; 
  align-items: center;
  width: 100%; 
  height: 450px; 
  margin: 0 auto; 
}
iframe {
  width: 100%; 
  height: 100%; 
  border: 0px; 
}

/**********  WHATSAPP FLOAT BUTTON  **********/
.whatsapp-float {
  position: fixed; 
  bottom: 30px; 
  right: 40px; 
  z-index: 100; 
  width: 60px;
  height: 60px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3); 
  border-radius: 50%; 
  overflow: hidden; 
}
.whatsapp-float img {
  width: 100%; 
  height: 100%;
  object-fit: cover; 
}
.whatsapp-float:hover {
  transform: scale(1.3); 
  transition: transform 0.2s ease-in-out; 
}

/**********  FOOTER  **********/
.footer {
  padding-top: 30px;
  background-color: #ffffff; 
  font-family: Arial, sans-serif;
  color: #000000b2;
  text-align: center;
}
.footer-container {
   display: flex;
  justify-content: space-between;
  align-items: flex-start; 
  max-width: 1000px;
  margin: 0 auto;
}

/* FOOTER LOGO */
.footer-logo {
  display: flex;
  flex-direction: column; 
  align-items: center;
  margin-bottom: 5px; 
  margin-right: 50px;
}

.footer-logo p {
  display: block;
  width: 200px;           
  margin-top: 2px;        
  text-align: center;    
  white-space: normal;     
}

.footer-logo img {
  width: 200px;
  margin-bottom: 1px; 
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 10px; 
}
.social-icons a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}
.social-icons a:hover {
  color: #000000; 
}
/* FOOTER INFO */
.footer-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex: 1; 
  margin-left: 20px; 
}
.info-item {
  text-align: left;
  margin: 0px;
  max-width: 250px;
}
.info-item h3 {
  font-size: 1.2rem;
  color: #000;
  margin-bottom: 20px;
}
.info-item p,
.info-item a {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #000000;
  text-decoration: none;
}
.info-item a:hover {
  color: #555; 
}
.footer p {
  margin-top: 20px;
  font-size: 0.85rem;
  color: #525252;
}

.footer-description {
  background-color:rgb(53, 53, 53);
  padding: 20px 100px;
  margin-top: 20px ;
}

.footer-description p {
  color: #eeeeee;
}
/*****  FIXED FOOTER (MOBILE)  *****/
.fixed-footer {
  display: none;
}

/********************  MEDIA QUERIES 768px ********************/
@media (max-width: 800px) {
  /*****  HTML , BODY  *****/
  html, body {
    overflow-x: hidden; 
    width: 100%; 
    margin: 0; 
    padding: 0; 
  }
  /*****  UNIVERSAL SELECTOR  *****/
  * {
    box-sizing: border-box; 
  }

  .header {
    display: flex;
  }

  /***** NAVBAR TOGGLE (HAMBURGER BUTTON) *****/
  .navbar-toggle {
    display: block;
    cursor: pointer;  
    margin-left: 25%;
  }
  .navbar-toggle .icon-bar {
    width: 25px;
    height: 5px;
    background-color: rgba(78, 179, 10, 0.992);
    border-radius: 2px;
  }

  /***** NAVBAR COLLAPSE (NAVIGATION MENU) *****/
  .navbar-collapse {
    display: none;
    position: absolute;
    top: 80px;
    right: 0;
    background-color: #fff;
    padding: 10px 0;
    z-index: 1000;
    width: 90%;
    max-width: 300px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);

  }
  .navbar-collapse.active {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .banner-form {
    display: none;
  }

  /***** NAVBAR NAV (MENU ITEMS) *****/
  .navbar-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .navbar-nav li {
    width: 100%;
    text-align: center;
    padding: 0;
  }

  /* Botões pequenos (Serviços, Cidades, etc.) */
  .btn-small {
    display: block;
    width: 90%;
    max-width: 180px;
    margin: 0 auto;
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.992);
    color: #000;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    transition: background-color 0.3s;
  }
  .btn-small:hover {
    background-color: #6fc92e;
  }

  /* Botão de Ligar */
  .btn-call {
    display: block;
    width: 90%;
    max-width: 260px;
    margin: 0 auto;
    padding: 12px 0;
    background-color: #fea603;
    color: #000;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    transition: background-color 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }
  .btn-call i {
    font-size: 20px;
  }
  .btn-call:hover {
    background-color: #e5a004;
  }

  /* Botão de WhatsApp */
  .btn-whats {
    display: block;
    width: 90%;
    max-width: 260px;
    margin: 0 auto;
    padding: 12px 0;
    background-color: rgba(78, 179, 10, 0.992);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    transition: background-color 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }
  .btn-whats i {
    font-size: 20px;
  }
  .btn-whats:hover {
    background-color: #6fc92e;
  }

  .btn-whats-intern-pages {
  max-width: 280px;
  height: 30px;
}
  .btn-whats-intern-pages i {
    padding: 10px;
  }

  .intro-blog .texto .btn-whats-intern-pages {
    height: 50px;
    width: 400px;
  }

  /*****  LOGO ADJUSTMENTS FOR MOBILE  *****/
  .logo img {
    max-width: 160px;
  }
  /*****  BANNER LAYOUT ADJUSTMENTS  *****/
  .banner {
    background-image: url('/images/banner-mobile.jpg');
    background-position: left; 
    background-size: cover;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .content-banner {
    position: absolute;
    top: 550px;  
    left: 50%;  
    transform: translate(-50%, -50%);  
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .btn-banner-contact{
    width: 60%; 
    max-width: 350px; 
    height: 40px;
  }
  .btn-banner-directions {
    width: 60%;
    max-width: 350px; 
  }
  .btn-banner-directions .btn{
    height: 40px;
  }
  .btn {
    font-size: 14px; 
  }
  /*****  SERVICES SECTION ADJUSTMENTS  *****/
  .services {
    padding: 20px; 
    gap: 10px; 
  }
  /*****  PRODUCT LAYOUT ADJUSTMENTS  *****/
  .product {
    width: calc(50% - 10px); 
    max-width: calc(50% - 10px); 
    box-sizing: border-box; 
  }
  .product img {
    height: 100px; 
  }
  .product h4 {
    font-size: 12px; 
    margin: 10px 5px; 
  }
  .btn-budget {
    padding: 8px 16px; 
    font-size: 9px; 
  }
  /*****  WHATSAPP FLOAT BUTTON ADJUSTMENTS  *****/
  .whatsapp-float {
    display: none; 
  }
  /*****  ABOUT SECTION ADJUSTMENTS  *****/
  .about-section {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    padding: 10px;
  }
  .about-section img {
    width: 100%;
    height: auto; 
    margin: 0; 
    border-radius: 20px; 
    box-shadow: #000;
  }
  .about-section .text {
    width: 90%;
    margin-top: 20px; 
    text-align: center; 
  }
  .about-section h2 {
    font-size: 30px; 
  }
  .about-section h3 {
    font-size: 20px; 
  }
  .about-section p {
    font-size: 16px; 
    line-height: 1.4; 
  }
  /*****  FEATURES SECTION ADJUSTMENTS  *****/
  .features {
    padding: 20px; 
    display: flex;
    justify-content: left; 
  }
  .feature {
    max-width: 100%;
    margin-bottom: 20px; 
  }
  .feature-icon {
    width: 40px; 
    height: 40px;
  }
  .feature-text h4 {
    font-size: 18px; 
    margin-bottom: 5px; 
  }
  .feature-text p {
    font-size: 14px;
    margin-top: 0; 
  }
  /*****  STORE CONTAINER ADJUSTMENTS  *****/
  .partner-stores{
    padding: 50px 2px;
  }
  .store-container {
    flex-direction: column; 
    align-items: center;
  }
  .store {
    width: 100%; 
    margin-bottom: 20px; 
    margin-left: -30px; 
  }
  .store img {
    max-width: 125px; 
    height: auto; 
    margin-right: 10px; 
  }
  /*****  FOOTER ADJUSTMENTS  *****/
  .footer-container {
    flex-direction: column; 
    align-items: center; 
    text-align: center; 
    white-space: nowrap;
  }
  .footer-logo {
    margin-right: 0; 
  }
  .footer-info {
    justify-content: center;
    margin-left: 0;
    flex-direction: column; 
  }
  .info-item {
    max-width: 100%; 
    margin-bottom: 10px; 
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
  .footer p {
    margin-top: 20px; 
    font-size: 0.75rem; 
  }
  .rights {
    margin-bottom: 50px;
  }
  /*****  FIXED FOOTER BUTTONS  *****/
  .fixed-footer {
    position: fixed; 
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  }
  .fixed-btn-call,
  .fixed-btn-whatsapp {
    flex: 1; 
    text-align: center;
    padding: 15px 0; 
    font-size: 16px; 
    font-weight: bold; 
    color: rgb(0, 0, 0); 
    text-decoration: none; 
    display: flex;
    justify-content: center; 
    align-items: center;
  }
  .fixed-btn-call {
    background-color: #fea603; 
  }
  .fixed-btn-whatsapp {
    background-color: rgba(78, 179, 10, 0.992);; 
  }
  .fixed-btn-call i,
  .btn-whatsapp i {
    margin-right: 8px;
  }
}

@media (max-width: 1200px) and (min-width: 800px) {
  /***** NAVBAR TOGGLE (HAMBURGER BUTTON) *****/
  .navbar-toggle {
    display: block;
    cursor: pointer;
    margin-left: 40%; 
  }
  .navbar-toggle .icon-bar {
    width: 25px;
    height: 5px;
    background-color: rgba(78, 179, 10, 0.992);
    border-radius: 2px;
  }

  /***** NAVBAR COLLAPSE (NAVIGATION MENU) *****/
  .navbar-collapse {
    display: none;
    position: absolute;
    top: 80px;
    right: 0;
    background-color: #fff;
    padding: 10px 0;
    z-index: 1000;
    width: 90%;
    max-width: 300px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);

  }
  .navbar-collapse.active {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /***** NAVBAR NAV (MENU ITEMS) *****/
  .navbar-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 0;
  }
  .navbar-nav li {
    width: 100%;
    text-align: center;
    padding: 0;
  }

  /* Botões pequenos (Serviços, Cidades, etc.) */
  .btn-small {
    display: block;
    width: 90%;
    max-width: 180px;
    margin: 0 auto;
    padding: 10px 0;
    background-color: rgba(78, 179, 10, 0.992);
    color: #000;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    transition: background-color 0.3s;
  }
  .btn-small:hover {
    background-color: #6fc92e;
  }

  /* Botão de Ligar */
  .btn-call {
    display: block;
    width: 90%;
    max-width: 260px;
    margin: 0 auto;
    padding: 12px 0;
    background-color: #fea603;
    color: #000;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    transition: background-color 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }
  .btn-call i {
    font-size: 20px;
  }
  .btn-call:hover {
    background-color: #e5a004;
  }

  /* Botão de WhatsApp */
  .btn-whats {
    display: block;
    width: 90%;
    max-width: 260px;
    margin: 0 auto;
    padding: 12px 0;
    background-color: rgba(78, 179, 10, 0.992);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    transition: background-color 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }
  .btn-whats i {
    font-size: 20px;
  }
  .btn-whats:hover {
    background-color: #6fc92e;
  }

  .banner {
    background-position: left; 
    background-size: cover;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .content-banner {
    position: absolute;
    top: 550px;  
    left: 50%;  
    transform: translate(-50%, -50%);  
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 42%;
  }
  .banner-form {
    display: none;
  }
}
 
/* ==================================================
   INTERNAL PAGES STYLESHEET
   ==================================================
   Organização:
   1. Listagens (grid)
   2. Breadcrumb
   3. Conteúdo principal (intro)
   4. Detalhe container (duas colunas)
   5. Sidebar
   6. Cards genéricos (cidades, serviços, blog)
   7. Carrossel
   8. Misc
*/

/* ----------------------------------
   1. LISTAGENS (GRID DE ITENS)
------------------------------------*/
.lista-cidades,
.lista-nichos,
.lista-servicos,
.lista-blog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
  list-style: none;
  margin: 0;
}
.lista-cidades li,
.lista-nichos li,
.lista-servicos li,
.lista-blog li {
  background: #fff;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
}
.lista-cidades img,
.lista-nichos img,
.lista-servicos img,
.lista-blog img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}
.lista-cidades a,
.lista-nichos a,
.lista-servicos a,
.lista-blog a {
  text-decoration: none;
  color: inherit;
  font-weight: bold;
}

/* ----------------------------------
   2. BREADCRUMB
------------------------------------*/
.breadcrumb {
  font-size: 1.2rem;
  margin: 1rem 0 0 60px;
}
.breadcrumb a {
  color: #015a01;
  text-decoration: none;
}
.breadcrumb span {
  color: #555;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

/* ----------------------------------
   3.1 CONTEÚDO PRINCIPAL (INTRO) - CIDADE
------------------------------------*/
.intro-city {
  display: flex;
  align-items: flex-start;
  padding: 40px 60px;
}
.intro-city .texto {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.intro-city .texto h1 {
  font-size: 2.4rem;
  color: #222;
  margin-top: 20px;
  margin-bottom: 15px;
}

.intro-city .texto h3 {
  font-size: 2.4rem;
  color: #222;
  margin-bottom: 20px;
}

.intro-city .texto p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin: 5px;
}
.intro-city .texto .btn-whats-intern-pages {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6em 0.5em;
  font-size: 1.5rem;
  background-color: rgba(78, 179, 10, 0.992);
  color: #000;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color .2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  margin-top: 20px;
}
.intro-city .texto .btn-whats-intern-pages i {
  padding: 10px;
}
.intro-city .texto .btn-whats-intern-pages:hover {
  background-color: #b1b1b1;
}
.intro-city img {
  flex: 1;
  width: 100%;
  height: 350px; /* Tamanho fixo */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-top: 4px solid #4a90e2;;
  object-fit: cover;
}

/* ----------------------------------
   3.2 CONTEÚDO PRINCIPAL (INTRO) - SERVIÇO
------------------------------------*/
.intro-service {
  display: flex;
  align-items: flex-start;
  padding: 40px 60px;
}
.intro-service .texto {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.intro-service .texto h1 {
  font-size: 2.4rem;
  color: #222;
  margin-top: 20px;
  margin-bottom: 15px;
}

.intro-service .texto h3 {
  font-size: 2.4rem;
  color: #222;
  margin-bottom: 20px;
}

.intro-service .texto p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin: 5px;
}
.intro-service .texto .btn-whats-intern-pages {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6em 0.5em;
  font-size: 1.5rem;
  background-color: rgba(78, 179, 10, 0.992);
  color: #000;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color .2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  margin-top: 20px;
}
.intro-service .texto .btn-whats-intern-pages i {
  padding: 10px;
}
.intro-service .texto .btn-whats-intern-pages:hover {
  background-color: #b1b1b1;
}
.intro-service img {
  flex: 1;
  width: 100%;
  height: 350px; /* Tamanho fixo */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-top: 4px solid #f5a623;
  object-fit: cover;
}

/* ----------------------------------
   3.3 CONTEÚDO PRINCIPAL (INTRO) - SERVIÇO + CIDADE
------------------------------------*/
.intro-service-city {
  display: flex;
  align-items: flex-start;
  padding: 40px 60px;
}
.intro-service-city .texto {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.intro-service-city .texto h1 {
  font-size: 2.4rem;
  color: #222;
  margin-top: 20px;
  margin-bottom: 15px;
}

.intro-service-city .texto h3 {
  font-size: 2.4rem;
  color: #222;
  margin-bottom: 20px;
}

.intro-service-city .texto p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin: 5px;
}
.intro-service-city .texto .btn-whats-intern-pages {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6em 0.5em;
  font-size: 1.5rem;
  background-color: rgba(78, 179, 10, 0.992);
  color: #000;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color .2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  margin-top: 20px;
}
.intro-service-city .texto .btn-whats-intern-pages i {
  padding: 10px;
}
.intro-service-city .texto .btn-whats-intern-pages:hover {
  background-color: #b1b1b1;
}
.intro-service-city img {
  flex: 1;
  width: 100%;
  height: 350px; /* Tamanho fixo */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-top: 4px solid #f5a623;
  object-fit: cover;
}

/* ----------------------------------
   3.4 CONTEÚDO PRINCIPAL (INTRO) - POST BLOG
------------------------------------*/
.intro-blog {
  display: flex;
  align-items: flex-start;
  padding: 40px 60px;
}
.intro-blog .texto {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.intro-blog .texto h1 {
  font-size: 2.4rem;
  color: #222;
  margin-top: 20px;
  margin-bottom: 15px;
}

.intro-blog .texto h3 {
  font-size: 2.4rem;
  color: #222;
  margin-bottom: 20px;
}

.intro-blog .texto p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin: 5px;
}
.intro-blog .texto .btn-whats-intern-pages {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6em 0.5em;
  font-size: 1.5rem;
  background-color: rgba(78, 179, 10, 0.992);
  color: #000;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color .2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  margin-top: 20px;
}
.intro-blog .texto .btn-whats-intern-pages i {
  padding: 10px;
}
.intro-blog .texto .btn-whats-intern-pages:hover {
  background-color: #b1b1b1;
}
.intro-blog img {
  flex: 1;
  width: 100%;
  height: 350px; /* Tamanho fixo */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-top: 4px solid #9301a0;
  object-fit: cover;
}

/* ----------------------------------
   4. DETALHE CONTAINER (DUAS COLUNAS)
------------------------------------*/
.detail-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  margin: 40px auto;
  max-width: 1200px;
  padding: 0 20px;
}
.detail-main {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.detail-main .intro-city {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
}

.detail-main .intro-service {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
}

.detail-main .intro-service-city {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
}
.detail-main .intro-blog {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
}


/* ----------------------------------
   5. SIDEBAR
------------------------------------*/
.detail-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
/* Formulário no sidebar */
.detail-sidebar .detalhe-form {
  display: flex;
  flex-direction: column;
}
.detail-sidebar .detalhe-form input,
.detail-sidebar .detalhe-form textarea,
.detail-sidebar .detalhe-form .btn-submit {
  width: 100%;
  box-sizing: border-box;
}
/* Contatos no sidebar */
.sidebar-contacts h2,
.sidebar-cards h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.sidebar-contacts .btn,
.sidebar-cards .card {
  margin-bottom: 10px;
}
.sidebar-contacts .btn:last-child,
.sidebar-cards .card:last-child {
  margin-bottom: 0;

}
/* Cards grid no sidebar */
.detail-sidebar .cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

/* 1) Aumenta a altura do textarea e dá scroll interno se estourar */

.box-form {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 30px;
  width: 350px;
}

.sidebar-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: #ecececa1;                     /* tom mais claro e suave */
  box-shadow: 0 6px 16px rgba(0,0,0,0.08); /* sombra mais suave */
  padding: 24px;
  border-radius: 12px;                     /* cantos mais arredondados */
  max-width: 350px;
  margin: 0 auto;
  
}

.sidebar-form input,
.sidebar-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #ddd;
  border-radius: 8px;
  background: #fff;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.sidebar-form h1 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  margin-left: 6px;
  color: #333;
  font-weight: 600;
}

.sidebar-form input:hover,
.sidebar-form textarea:hover {
  border-color: #ccc;
}

.sidebar-form input:focus,
.sidebar-form textarea:focus {
  outline: none;
  border-color: var(--color-primary, #4ae24a);
  box-shadow: 0 0 8px rgba(74, 226, 74, 0.3);
}

.sidebar-form textarea {
  min-height: 120px;
  resize: vertical;
}

.sidebar-form .btn-submit {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  font-weight: 600;
  background-color: rgba(78, 179, 10, 0.992);
  color: #000;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color .2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.sidebar-form .btn-submit:hover {
  background: #aaaaaa;
  transition: background-color .2s;
}

.sidebar-form .btn-submit:active {
  transform: translateY(0);
}

/* 4) Contatos rápidos como botões full-width */
.sidebar-contacts {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 350px;
  padding: 20px 20px;
}

.sidebar-contacts .separator {
  height: 3px;
  background: linear-gradient(90deg, #52cc00, #33ccff);
  border-radius: 4px;
  width: 40%;
  margin-bottom: 10px;
}
.sidebar-contacts h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  margin-left: 6px;
  color: #333;
  font-weight: 600;
}
.sidebar-contacts .contact-btn {
  display: flex;
  align-items: left;
  gap: 10px;
  width: 90%;
  padding: 12px;
  border-radius: 5px;
  font-size: 1rem;
  text-decoration: none;
  color: #000000;
  transition: background-color .3s;
}

/* Cores específicas para cada tipo de contato */

.sidebar-contacts .btn-orange.contact-btn:hover {
  background: #fea603;
}

.sidebar-contacts .btn-blue.contact-btn:hover {
  background: #0072ec;
}

.sidebar-contacts .btn-green.contact-btn:hover {
  background: rgba(78, 179, 10, 0.992);
}

/* Ícones ajustados */
.sidebar-contacts .contact-btn i {
  font-size: 1.2rem;
}

.sidebar-services {
  padding: 20px 16px;
  border-radius: 12px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.sidebar-services h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  margin-left: 6px;
  color: #333;
  font-weight: 600;
}

.sidebar-services .separator {
  height: 3px;
  background: linear-gradient(90deg, #52cc00, #33ccff);
  margin: 8px 0 20px 0;
  border-radius: 4px;
  width: 40%;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-list li + li {
  margin-top: 10px;
}

.services-list a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  text-decoration: none;
  color: #222;
  font-size: 1.05rem;
  background-color: #ffffff;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.services-list a:hover {
  background-color: #e6f0ff;
  color: #0056b3;
  box-shadow: 0 2px 6px rgba(0, 102, 204, 0.1);
}

/* ULTIMOS POSTS DO BLOG SIDEBAR */

.sidebar-blog-posts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-blog-post {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 10px;
  transition: background 0.2s ease;
  text-decoration: none;
}

.sidebar-blog-post :hover {
  background-color: #e6f0ff;
  color: #0056b3;
  box-shadow: 0 2px 6px rgba(0, 102, 204, 0.1);
}


.sidebar-
blog-post a:hover {
  background-color: #e6f0ff;
  color: #0056b3;
  box-shadow: 0 2px 6px rgba(0, 102, 204, 0.1);
}

.sidebar-blog-post img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

.sidebar-blog-post-title {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  text-decoration: none;
  color: #222;
  font-size: 1.05rem;
  background-color: #ffffff;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);

}

/* ----------------------------------
   6. CARDS GENÉRICOS
------------------------------------*/
.servicos-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  padding: 40px 60px;
}
.card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
}
.card__image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}
.card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card__title {
  margin: 15px;
  font-size: 1.1rem;
  color: #333;
}
.card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.btn-servico {
  display: inline-block;
  background-color: #007BFF;
  color: #fff;
  padding: 10px 15px;
  margin: 15px auto 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
  font-size: 14px;
}
.btn-servico:hover {
  background-color: #0056b3;
}
.card--cidade {
  border-top: 4px solid #4a90e2;
}
.card--servico {
  border-top: 4px solid #f5a623;
}
.card--blog {
  border-top: 4px solid #e94e77; /* cor de destaque para blog */
}
.card--blog .card__summary {
  margin: 0 15px 15px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* ----------------------------------
   7. CARROSSEL
------------------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 45px;
  margin: 40px 50px;
}
.serv-card {
  width: calc(33.333% - 30px);
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}
.serv-card:hover {
  transform: translateY(-5px);
}
.serv-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.serv-card h3 {
  font-size: 1.1rem;
  color: #333;
  margin: 15px;
  flex-grow: 1;
}
.serv-card .btn-servico {
  display: inline-block;
  background-color: #007BFF;
  color: white;
  padding: 10px 15px;
  margin: 15px auto 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s;
}
.serv-card .btn-servico:hover {
  background-color: #0056b3;
}
.card--servico {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  text-align: center;
  border-top: 4px solid #f5a623;
}
.card--servico:hover {
  transform: translateY(-5px);
}
.card--servico .card__link img,
.card--servico img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.card--servico .card__title,
.card--servico h3 {
  margin: 15px;
  font-size: 1.1rem;
  color: #333;
  flex-grow: 1;
}

.card--servico .card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.card--servico .btn-servico {
  background-color: #f5a623;
  color: #fff;
  padding: 10px 15px;
  margin: 15px auto 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.875rem;
  transition: background-color 0.3s;
}
.card--servico .btn-servico:hover {
  background-color: #d4881c;
}

.btn-whats-intern-pages {
  max-width: 280px;
  height: 30px;
}
.btn-whats-intern-pages i {
  padding: 10px;
}

/* wrapper do carrossel com setas */
.carousel-wrapper {
  position: relative;
  padding: 0 60px; /* espaço para as setas */
}

/* flex rolável com snap */
.carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 20px 0;
}

/* tamanho fixo dos items */
.carousel__item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  max-width: 280px;   /* ajuste conforme desejar */
}

/* setas */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;               /* só mostra no desktop */
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: background 0.2s, transform 0.2s;
  z-index: 10;
}

.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }

.carousel-arrow i {
  font-size: 1.2rem;
  color: #fff;
}

.carousel-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}


/* ----------------------------------
   8. MISCELLANEOUS
------------------------------------*/
.section-title {
  font-size: 2rem;
  margin: 40px 60px 20px;
  color: #222;
  text-align: center;
}
@media (max-width: 900px) {
  .detail-container { grid-template-columns: 1fr; }
  .lista-cidades,
  .lista-nichos,
  .lista-servicos,
  .lista-blog { grid-template-columns: repeat(2,1fr); }
  .top-header .right-column { 
    display: none }
}
@media (max-width: 600px) {
  .lista-cidades,
  .lista-nichos,
  .lista-servicos,
  .lista-blog { grid-template-columns: 1fr; }
  .intro { flex-direction: column; gap: 20px; padding: 20px; }
  .top-header .right-column { 
    display: none }
}




/* -------------------------------
        MEDIA INTERNAL PAGES
---------------------------------*/
@media (max-width: 800px) {
  .lista-cidades,
  .lista-nichos,
  .lista-servicos {
    grid-template-columns: repeat(2, 1fr);
  }
  .servicos-container__card {
    width: calc(50% - 20px);
  }
  .serv-card {
    width: calc(50% - 30px);
  }
  .intro {
    flex-direction: column;
    align-items: center;     
    padding: 20px;           
  }
  .intro .texto {
    width: 100%;
    align-items: center;     
    text-align: center;     
  }
  .intro .texto .btn-whats-intern-pages {
    margin: 0.8em ;   
    height: 50px;

  }
  .intro img {
    margin-top: 10px;
    max-width: 100%;
    flex: none;             
  }
   .carousel {
    padding: 0 20px 40px;
  }
  .carousel-arrow {
    display: none;
  }
  .carousel-wrapper {
  position: relative;
  padding: 0 10px; /* espaço para as setas */
}

.top-header-container {
  padding: 10px 15px;
  align-items: center;
  justify-content: center;
}

.top-header .row {
    justify-content: center;
  }

  .top-header .left-column {
    justify-content: center;
  }

  .top-header .left-column ul {
    justify-content: center;
    text-align: center;
  }

.top-header .right-column { 
    display: none }

.top-header a {
  font-size: 12px;
}
}


@media (max-width: 1200px) and (min-width: 800px) {
  .intro {
    flex-direction: column-reverse;
    padding: 20px;
  }
  .intro .texto {
    margin-top: 20px;
  }
  .intro {
    flex-direction: column;
    align-items: center;     
    padding: 20px;          
  }
  .intro .texto {
    width: 100%;
    align-items: center;    
    text-align: center;     
  }
  .intro .texto .btn-whats-intern-pages {
    margin: 0.8em auto; 
    height: 35px;
  }
  .intro img {
    margin-top: 20px;
    max-width: 100%;
    flex: none;            
  }
   .carousel {
    padding: 0 20px 40px;
  }
}


/* -------------------------------
   TÍTULOS CENTRAIS EM SEÇÕES
---------------------------------*/
.page-section.cidades-list h1,
.page-section.servicos-list h1,
.page-section.blog-list h1 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #222;
}

