/* Hidráulica Marques - Estilos Customizados */

:root {
  --primary-blue: #4682B4;
  --primary-dark: #3B3B3F;
  --primary-red: #DC3545;
  --light-gray: #F8F9FA;
  --medium-gray: #6C757D;
  --border-color: #E6E6E6;
  /* blog */
  --bm-bg: #ffffff;
  --bm-muted: #6c757d;
  --bm-border: #e9ecef;
  --bm-primary: #4682B4; /* alinhado ao tema */
  --bm-accent: #f8f9fa;
  --bm-radius: 10px;
}

/* Reset e Base */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--primary-dark);
}

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

/* Header */
.navbar-brand {
  font-weight: 700;
  color: var(--primary-dark) !important;
}

.navbar-brand .subtitle {
  font-size: 0.8rem;
  color: var(--medium-gray);
  font-weight: 400;
}

.navbar-nav .nav-link {
  color: var(--primary-dark) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-blue) !important;
}

.btn-primary-custom {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: #3a6d96;
  border-color: #3a6d96;
  transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
}


.hero-section-pro {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 40px 0;
}

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

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

.badge-experience {
  background-color: #e3f2fd;
  color: var(--primary-blue);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

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

.text-red {
  color: var(--primary-red);
}

/* Trust Section */
.trust-section {
  padding: 80px 0;
  background-color: white;
}

.trust-item {
  text-align: center;
  padding: 2rem 1rem;
}

.trust-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon.blue {
  background-color: #e3f2fd;
}

.trust-icon.green {
  background-color: #e8f5e8;
}

.trust-icon.orange {
  background-color: #fff3e0;
}

.trust-icon img {
  width: 80px;
  height: 80px;
}


.container-top{
text-align: center;
justify-content: center;
margin-top: 6rem;
margin-bottom: 8rem;
} 

.container-eng{
text-align: center;
justify-content: center;
margin-top: 4rem;
margin-bottom: 2rem;
} 

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--medium-gray);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: white;
  border-radius: 6px;
  padding: 2rem;
  height: 100%;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon.blue {
  background-color: #e3f2fd;
  color: var(--primary-blue);
}

.service-icon.red {
  background-color: #ffebee;
  color: var(--primary-red);
}

.service-icon.green {
  background-color: #e8f5e8;
  color: #28a745;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-description {
  color: var(--medium-gray);
  margin-bottom: 1.5rem;
}

.service-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.service-list li {
  color: var(--medium-gray);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.service-list li:before {
  content: "•";
  color: var(--primary-blue);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background-color: white;
}

.stats-item {
  text-align: center;
  margin-bottom: 2rem;
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.stats-label {
  color: var(--medium-gray);
  font-weight: 500;
}

/* Portfolio Section */
.portfolio-section {
  padding: 40px 0;
  background-color: var(--light-gray);
}

.portfolio-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.portfolio-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.portfolio-content {
  padding: 1.5rem;
}

.portfolio-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.portfolio-description {
  color: var(--medium-gray);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.badge-category {
  background-color: #e9ecef;
  color: var(--primary-dark);
  font-size: 0.8rem;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background-color: white;
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-icon.blue {
  background-color: #e3f2fd;
  color: var(--primary-blue);
}

.contact-icon.green {
  background-color: #e8f5e8;
  color: #28a745;
}

.contact-icon.red {
  background-color: #ffebee;
  color: var(--primary-red);
}

.contact-icon.orange {
  background-color: #fff3e0;
  color: #fd7e14;
}

.contact-details h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-details h4 {
  font-weight: 400;
  margin-bottom: 0.5rem;
}

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

.emergency-box {
  background-color: #ffebee;
  border: 1px solid #ffcdd2;
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.emergency-box h5 {
  color: #c62828;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.emergency-box p {
  color: #d32f2f;
  margin-bottom: 0.5rem;
}

.emergency-phone {
  color: #c62828;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Form Styles */
.form-control {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(70, 130, 180, 0.25);
}

.form-label {
  font-weight: 500;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  background-color: #212529;
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer a {
  color: #adb5bd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

.footer-brand {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-brand .icon {
  width: 32px;
  height: 32px;
  background-color: var(--primary-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
}

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

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

.footer-bottom {
  border-top: 1px solid #495057;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  color: #adb5bd;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .stats-number {
    font-size: 2rem;
  }
  
  .navbar-nav {
    text-align: center;
    margin-top: 1rem;
  }
  
  .hero-section,
  .trust-section,
  .services-section,
  .about-section,
  .portfolio-section,
  .contact-section
  .bm-blog-section {
    padding: 80px 0;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-primary-custom {
  color: var(--primary-blue) !important;
}

.bg-primary-custom {
  background-color: var(--primary-blue) !important;
}

.border-primary-custom {
  border-color: var(--primary-blue) !important;
}
.divHistoria{
  margin-bottom: 10px;
}

.faq-section {
  background-color: #f7f7f7;
  padding: 60px 20px;
}

.faq-section .section-title {
  font-size: 2rem;
  color: var(--primary-color, #005baa);
  text-align: center;
  margin-bottom: 10px;
}

.faq-section .section-subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 40px;
}

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

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  background: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background-color: var(--primary-light, #eaf4ff);
}

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

.faq-answer p {
  margin: 15px 0;
  color: #555;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 20px 15px;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 40px 15px;
  }

  .faq-question {
    font-size: 0.95rem;
  }
}
/*  blog */
.bm-blog-section{
  background:var(--bm-accent);
  border-radius:var(--bm-radius);
  padding: 40px 0;
}

/* Header */
.bm-title{font-size:1.75rem;font-weight:700;color:var(--bm-primary);margin-bottom:0.25rem}
.bm-subtitle{color:var(--bm-muted);margin-bottom:1rem}

/* Cards */
.bm-card{
  background:var(--bm-bg);
  border:1px solid var(--bm-border);
  border-radius:8px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  height:100%;
  box-shadow:0 6px 18px rgba(0,0,0,0.04);
}
.bm-card-image{
  height:150px;background-size:cover;background-position:center;background-repeat:no-repeat;
}
.bm-card-body{flex:1;padding:16px}
.bm-card-title{margin:0 0 .5rem 0;color:#212529;font-size:1.05rem}
.bm-card-excerpt{font-size:0.95rem;color:var(--bm-muted);margin-bottom:1rem}
.bm-card .badge{font-size:.75rem;padding:.4em .6em}

/* Grid item wrapper */
#bm-posts article{display:flex;flex-direction:column;height:100%}

/* Toolbar */
.bm-toolbar .bm-search .form-control{min-width:220px}

/* Sidebar */
.bm-aside-card{background:var(--bm-bg);border:1px solid var(--bm-border);border-radius:8px}
.bm-category-link{color:var(--bm-primary);text-decoration:none}
.bm-category-link:hover{text-decoration:underline}

/* Buttons */
.btn-primary{background:var(--bm-primary);border-color:var(--bm-primary)}
.btn-outline-primary{color:var(--bm-primary);border-color:var(--bm-primary)}

/* Modal */
#bmModalBody img{max-width:100%;height:auto;margin-bottom:1rem}
#bmModalBody p{color:var(--bm-muted);line-height:1.6}

/* Responsive tweaks */
@media (max-width:991px){
  .bm-card-image{height:180px}
}

/* Small helpers */
.bm-read-time{color:var(--bm-muted);font-size:.875rem}
.bm-blog-section *{box-sizing:border-box}

/* ================================
   BOTÃO FLUTUANTE WHATSAPP
   ================================ */

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.whatsapp-float.show {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-float a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float a:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}

.whatsapp-float img {
  width: 56px;
  height: 56px;
  border-radius: 50px
 /*ilter: brightness(0) invert(1);*/
}


/* Fonte do Blog */

.txtfontemodal{
  font-size: smaller;

}


/* Responsivo */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 15px;
    left: 15px;
  }
  .whatsapp-float a {
    width: 50px;
    height: 50px;
  }
  .whatsapp-float img {
    width: 25px;
    height: 25px;
  }
}
