/* reset */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", sans-serif;
  line-height: 1.6;
  color: #333;
}

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

/* header*/

header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}

/* barra de contato superior */
.top-bar {
  background-color: #29a7d9;
  color: #fff;
  padding: 8px 0;
  font-size: 0.9em;
  border-bottom: 1px solid #ddd;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.contact-info a {
  color: inherit;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
  color: #038c3e;
}

.top-bar .social-links a {
  margin-left: 15px;
  color: #fff;
  text-decoration: none;
}

.top-bar .social-links a:hover {
  color: #038c3e;
}

/* menu navegação */
.main-nav {
  background-color: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.main-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-nav .logo {
  text-decoration: none;
  z-index: 101;
}

.main-nav .logo img {
  height: 65px;
  width: auto;
  vertical-align: middle;
  transition: height 0.3s ease;
}

.main-nav .nav-links {
  list-style: none;
  display: flex;
}

.main-nav .nav-links li {
  margin-left: 25px;
}

.main-nav .nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  padding-bottom: 5px;
  transition: border-bottom 0.2s;
}

.main-nav .nav-links a:hover {
  color: #038c3e;
  border-bottom: 2px solid #038c3e;
}

/* Botão menu HB*/
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
}

.hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #333;
  position: relative;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #333;
  left: 0;
  transition: transform 0.3s ease, top 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

/* Seções */

.section {
  padding: 80px 0;
  background-color: #f9f9f9;
  color: #333;
}

.section-full {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(https://images.unsplash.com/photo-1462396240927-52058a6a84ec?q=80&w=2273&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;

  color: #fff;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.section-gray {
  background-color: #f9f9f9;
}

.section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 3em;
  color: #0477bf;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.section h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100px;
  height: 5px;
  background-color: #29a7d9;
  border-radius: 2.5px;
}

.section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px auto;
  color: #666;
  font-size: 1.3em;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #555;
}

.section-subtitle::after {
  content: "";
  display: table;
  clear: both;
}

.section p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 25px;
  text-align: justify;
}

.kai-zen-image {
  max-width: 60%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.mvv-section {
  margin-top: 60px;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.mvv-section h3 {
  font-size: 2.2em;
  color: #0477bf;
  margin-bottom: 30px;
  text-align: center;
}

.mvv-section h4 {
  font-size: 1.6em;
  color: #038c3e;
  margin-top: 40px;
  margin-bottom: 20px;
}

.mvv-section p strong {
  color: #0477bf;
}

.mvv-section ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.mvv-section ul li {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: #444;
}

.mvv-section ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #038c3e;
  font-weight: bold;
  font-size: 1.2em;
}

.mvv-section ul li strong {
  color: #038c3e;
}

/* Seção de serviços */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.icon-wrapper {
  background-color: #0477bf;
  color: #ffffff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5em;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* títulos dos cartões */
.service-card h3 {
  font-size: 1.8em;
  color: #038c3e;
  margin-bottom: 20px;
}

/* textos dos cartões */
.service-card ul,
.service-card p {
  font-size: 1.05em;
  line-height: 1.7;
  color: #666;
  text-align: left;
  margin-bottom: 0;
  padding: 0 10px;
}

.service-card ul {
  list-style: none;
  padding: 0;
  width: 100%;
}

.service-card ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.service-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #29a7d9;
  font-weight: bold;
}

/* Seção de contato */
.contact-box {
  max-width: 700px;
  margin: 0 auto 40px auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-info-block,
.contact-social-block {
  flex: 1;
  min-width: 250px;
}

.contact-box h3 {
  margin-bottom: 15px;
  color: #333;
}

.info-list {
  list-style: none;
  padding: 0;
}

.info-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.info-list li a {
  text-decoration: none;
  color: #555;
  transition: color 0.3s;
}

.info-list li a:hover {
  color: #038c3e;
  text-decoration: underline;
}

.info-list i {
  font-size: 1.2em;
  color: #007bff;
  margin-right: 15px;
  width: 25px;
  text-align: center;
}

.social-links-contact .social-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #f4f4f4;
  color: #007bff;
  margin-right: 10px;
  font-size: 1.2em;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.social-links-contact .social-icon:hover {
  background-color: #038c3e;
  color: #fff;
}

/* Buttons */

.cta-button {
  display: inline-block;
  background-color: #038c3e;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s;
}

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

/* Footer */

footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}
