*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 70px;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #212121;
  background: #ffffff;
  min-height: 100vh;
}

a {
  color: #1a237e;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #0d1442;
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 100;
  transition: box-shadow 0.2s;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}
.logo img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s;
}
.menu-toggle:hover {
  background: #f5f5f5;
}
.menu-toggle .menu-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #424242;
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}
.menu-toggle[aria-expanded=true] .menu-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded=true] .menu-bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded=true] .menu-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.main-nav a {
  font-weight: 500;
  color: #424242;
  text-decoration: none;
}
.main-nav a:hover {
  color: #1a237e;
  text-decoration: none;
}
.main-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: #25d366;
  color: #ffffff !important;
  border-radius: 6px;
  font-weight: 600;
}
.main-nav .nav-cta:hover {
  background: #20bd5a;
  color: #ffffff !important;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(13, 20, 66, 0.92) 0%, rgba(26, 35, 126, 0.88) 50%, rgba(57, 73, 171, 0.82) 100%), url("../images/hero-bg.jpg") center/cover no-repeat;
  background-color: #1a237e;
  padding: 0 1.25rem;
  margin-top: 70px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 20, 66, 0.9) 0%, rgba(26, 35, 126, 0.85) 50%, rgba(57, 73, 171, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  text-align: center;
  color: #ffffff;
}
.hero-content h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 1rem 0;
}
.hero-content .hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.95;
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  text-decoration: none;
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: #25d366;
  color: #ffffff;
}
.btn-primary:hover {
  background: #20bd5a;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
}

.section {
  padding: 4rem 0;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #0d1442;
  margin: 0 0 1rem 0;
  text-align: center;
}

.section-intro {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: #616161;
  font-size: 1.05rem;
  line-height: 1.7;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.card-servico {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 1.75rem;
  border: 1px solid #eeeeee;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card-servico:hover {
  box-shadow: 0 4px 20px rgba(26, 35, 126, 0.15);
  border-color: #e8eaf6;
}
.card-servico h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0d1442;
  margin: 0 0 0.75rem 0;
}
.card-servico p {
  margin: 0 0 0.75rem 0;
  color: #616161;
  font-size: 0.95rem;
  line-height: 1.6;
}
.card-servico p:last-child {
  margin-bottom: 0;
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8eaf6;
  color: #1a237e;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.quem-somos {
  background: #fafafa;
}

.quem-somos-content {
  max-width: 700px;
  margin: 0 auto;
}
.quem-somos-content p {
  color: #616161;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 1rem 0;
}
.quem-somos-content p:last-child {
  margin-bottom: 0;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contato-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contato-item i {
  color: #1a237e;
  font-size: 1.25rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.contato-item strong {
  display: block;
  font-size: 0.9rem;
  color: #424242;
  margin-bottom: 0.25rem;
}
.contato-item p {
  margin: 0;
  color: #616161;
  font-size: 0.95rem;
  line-height: 1.5;
}
.contato-item a {
  text-decoration: none;
}
.contato-item a:hover {
  text-decoration: underline;
}

.contato-form {
  background: #fafafa;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid #eeeeee;
}

.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-weight: 500;
  color: #424242;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1a237e;
  box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #757575;
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-actions {
  margin-top: 1.25rem;
}

.form-whatsapp-hint {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #757575;
  text-align: center;
}

.site-footer {
  background: #0d1442;
  color: rgba(255, 255, 255, 0.9);
  padding: 2rem 0;
  text-align: center;
  font-size: 0.95rem;
}
.site-footer p {
  margin: 0.5rem 0;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
}
.site-footer a:hover {
  color: #ffffff;
}
.site-footer .footer-copy {
  margin-top: 1rem;
  font-size: 0.85rem;
  opacity: 0.8;
}

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.75rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
  z-index: 99;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: #ffffff;
  text-decoration: none;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contato-grid {
    grid-template-columns: 280px 1fr;
  }
}
@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1023px) {
  .menu-toggle {
    display: flex;
  }
  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: auto;
    flex-direction: column;
    align-items: stretch;
    background: #ffffff;
    padding: 1rem 1.25rem;
    box-shadow: 0 4px 20px rgba(26, 35, 126, 0.15);
    gap: 0.5rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s, opacity 0.25s, visibility 0.25s;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .main-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eeeeee;
  }
  .main-nav a:last-of-type {
    border-bottom: none;
  }
  .main-nav .nav-cta {
    justify-content: center;
    margin-top: 0.5rem;
  }
}
.hero:not([style*=background-image]) {
  background-image: none;
}

/*# sourceMappingURL=site-client.css.map */
