/* Reset e base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Montserrat', Arial, sans-serif !important;
  background: linear-gradient(135deg, #f3f6fd 0%, #e9f0fb 100%);
  color: #222;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: 100vw;
  overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; max-width: 100vw; overflow-x: hidden; }

/* Header */
.header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  height: 70px;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 1rem;
}
.logo { display: flex; align-items: center; gap: 0.5rem; font-size: 1.5rem; font-weight: 700; color: #2563eb; text-decoration: none; }
.logo img { height: 38px; }
.nav ul { display: flex; gap: 1.2rem; list-style: none; align-items: center; }
.nav a { color: #222; text-decoration: none; font-weight: 500; font-size: 1rem; transition: color 0.2s; padding: 0.5rem 0.7rem; border-radius: 18px; }
.nav a:hover, .nav a.active { color: #2563eb; background: #f3f4f6; }
.btn-menu { background: #2563eb; color: #fff !important; border-radius: 20px; padding: 0.5rem 1.2rem; margin-left: 0.5rem; }
.btn-menu:hover { background: #1d4ed8; }
.whatsapp-float { background: #25d366; color: #fff; border-radius: 50%; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-left: 1.5rem; transition: background 0.2s, transform 0.2s; text-decoration: none; position: fixed; right: 20px; bottom: 20px; z-index: 2000; box-shadow: 0 4px 12px rgba(0,0,0,0.18); }
.whatsapp-float:hover { background: #128c7e; transform: scale(1.08); }

/* Banner Home */
.banner-home {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #2563eb 60%, #3b82f6 100%);
  min-height: 80vh;
  padding-top: 6rem;
  padding-bottom: 2rem;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 8px 32px rgba(37,99,235,0.10);
}
.banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem 0 1rem;
}
.banner-logo {
  height: 70px;
  margin-bottom: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  background: #fff;
  padding: 0.5rem 1.2rem;
}
.banner-home h1 {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.slogan {
  font-size: 1.15rem;
  margin-bottom: 2.2rem;
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-weight: 500;
}
.banner-actions {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-button {
  display: inline-block;
  background: #f59e0b;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 32px;
  padding: 1.2rem 2.5rem;
  font-size: 1.2rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  margin-bottom: 0.5rem;
}
.cta-button:hover {
  background: #d97706;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 24px rgba(0,0,0,0.13);
}
.whatsapp-cta {
  background: #25d366;
}
.whatsapp-cta:hover {
  background: #128c7e;
}
.banner-img { flex: 1 1 300px; display: flex; align-items: center; justify-content: center; }
.banner-img img { max-width: 350px; border-radius: 18px; box-shadow: 0 4px 16px rgba(37,99,235,0.13); }

/* Footer profissional */
.footer {
  flex-shrink: 0;
  width: 100vw;
  left: 0;
  right: 0;
  background: #101828;
  color: #fff;
  border-radius: 0 0 0 0;
  box-shadow: 0 -2px 18px rgba(37,99,235,0.10);
  padding: 2.5rem 1.5rem 1.2rem 1.5rem;
  margin-top: 0;
  border-top: 4px solid #2563eb44;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.footer-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 1.2rem auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  align-items: flex-start;
}
.footer-info h3, .footer-contact h4, .footer-social h4 {
  color: #fff;
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  letter-spacing: 0.02em;
}
.footer-info p, .footer-contact p, .footer-social p, .footer-contact li, .footer-social li, .footer-bottom {
  color: #fff !important;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-contact ul, .footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.social-icons {
  display: flex;
  gap: 1.5rem;
  margin: 1rem 0 0.5rem 0;
  justify-content: center;
}
.social-icons a {
  color: #fff;
  font-size: 2.1rem;
  transition: color 0.2s, transform 0.2s;
  opacity: 0.92;
}
.social-icons a:hover {
  color: #25d366;
  transform: scale(1.18) rotate(-6deg);
  opacity: 1;
}
.footer-bottom {
  width: 100%;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #2563eb;
  font-size: 1.08rem;
  color: #fff;
  letter-spacing: 0.01em;
  font-family: 'Montserrat', Arial, sans-serif;
}
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
}
@media (max-width: 600px) {
  .footer {
    padding: 1.5rem 0.5rem 0.7rem 0.5rem;
    border-radius: 0;
  }
  .footer-content { gap: 0.7rem; }
  .footer-info h3, .footer-contact h4, .footer-social h4 { font-size: 1rem; }
  .footer-bottom { font-size: 0.97rem; }
}

/* Responsividade */
@media (max-width: 900px) {
  .header .container { flex-direction: row; gap: 0.5rem; align-items: center; height: 70px; }
  .nav ul { flex-direction: row; gap: 0.5rem; width: auto; }
  .nav a { font-size: 0.97rem; padding: 0.5rem 0.5rem; }
  .footer-content { grid-template-columns: 1fr; gap: 1rem; }
  .banner-home { flex-direction: column; text-align: center; }
  .banner-content { text-align: center; }
  .menu-toggle {
    display: block;
  }
  .nav ul {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100vw;
    background: #fff;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    z-index: 999;
    padding: 1rem 0;
  }
  .nav.open ul {
    display: flex;
  }
  .nav a {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 0;
    border-bottom: 1px solid #f3f4f6;
  }
  .btn-menu { margin: 0.5rem 2rem; }
}
@media (max-width: 600px) {
  .header .container { padding: 0 0.5rem; }
  .logo { font-size: 1.1rem; }
  .nav ul { gap: 0.2rem; }
  .nav a { font-size: 0.93rem; padding: 0.4rem 0.3rem; }
  .banner-home h1 { font-size: 1.3rem; }
  .banner-logo { height: 48px; margin-bottom: 1.2rem; }
  .cta-button { font-size: 1rem; padding: 1rem 1.2rem; }
  .banner-content { padding: 1rem; }
  .banner-img img { max-width: 90vw; }
  .footer { padding: 2rem 0.5rem 1rem 0.5rem; }
  .footer-info h3 { font-size: 1.1rem; }
  .footer-bottom { font-size: 0.95rem; }
}

/* Botão WhatsApp Flutuante fixo no canto direito inferior */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

.main-content {
  flex: 1 0 auto;
  padding-top: 80px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #2563eb;
  cursor: pointer;
  margin-left: auto;
}

.como-realizado-section {
  background: #fff;
  max-width: 600px;
  margin: 2rem auto;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: 'Montserrat', Arial, sans-serif !important;
}
.como-realizado-content h2 {
  color: #2563eb;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif !important;
}
.como-realizado-content p, .como-realizado-content ul.check-list li {
  font-size: 1.08rem;
  margin-bottom: 0.7rem;
  color: #222;
  font-family: 'Montserrat', Arial, sans-serif !important;
}
.como-realizado-content ul.check-list {
  margin: 1rem 0 1.5rem 0;
  padding-left: 1.2rem;
  list-style: none;
}
.como-realizado-content ul.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  color: #222;
  font-weight: 500;
}
.como-realizado-content ul.check-list li:before {
  content: '\2714';
  color: #25d366;
  position: absolute;
  left: 0;
  font-size: 1.1rem;
}
.como-realizado-img {
  width: 100%;
  text-align: center;
}
.como-realizado-img img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-top: 1.5rem;
}
@media (max-width: 600px) {
  .como-realizado-section {
    padding: 1.2rem 0.5rem;
    max-width: 100%;
  }
  .como-realizado-content h2 { font-size: 1.3rem; }
}

.checklist-section {
  background: #fff;
  max-width: 600px;
  margin: 2rem auto;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.checklist-content h2 {
  color: #2563eb;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif !important;
}
.checklist-blue {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.checklist-blue li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.8rem;
  color: #222;
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-weight: 500;
}
.checklist-blue li:before {
  content: '\2714';
  color: #2563eb;
  position: absolute;
  left: 0;
  font-size: 1.3rem;
  top: 0.1rem;
}
@media (max-width: 600px) {
  .checklist-section {
    padding: 1.2rem 0.5rem;
    max-width: 100%;
  }
  .checklist-content h2 { font-size: 1.1rem; }
}

.dicas-section {
  background: #fff;
  max-width: 700px;
  margin: 2rem auto;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 2.5rem 1.5rem 2rem 1.5rem;
}
.dicas-title {
  text-align: center;
  margin-bottom: 2rem;
}
.dicas-title h2 {
  color: #2563eb;
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  font-family: 'Montserrat', Arial, sans-serif !important;
  margin-bottom: 0.5rem;
}
.dicas-title p {
  background: #fff;
  color: #2563eb;
  font-size: 1.1rem;
  font-weight: 600;
  display: inline-block;
  padding: 0.3rem 1.2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(37,99,235,0.07);
  font-family: 'Montserrat', Arial, sans-serif !important;
}
.dicas-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.dica-card {
  background: #f9fafb;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(37,99,235,0.07);
  padding: 1.2rem 1rem 1rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  min-height: 120px;
}
.dica-num {
  background: #2563eb;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(37,99,235,0.13);
  position: absolute;
  left: -19px;
  top: -19px;
  border: 4px solid #fff;
}
.dica-card strong {
  color: #2563eb;
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, sans-serif !important;
  display: block;
  margin-bottom: 0.3rem;
}
.dica-card p {
  color: #222;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif !important;
  margin: 0;
}
@media (max-width: 700px) {
  .dicas-section { padding: 1.2rem 0.5rem; max-width: 100%; }
  .dicas-cards { grid-template-columns: 1fr; gap: 1.2rem; }
  .dica-num { left: 10px; top: -19px; }
}

.dicas-img-center {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0 2.2rem 0;
}
.dicas-img {
  max-width: 95vw;
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(37,99,235,0.10);
}
@media (max-width: 700px) {
  .dicas-img { max-height: 180px; border-radius: 12px; }
  .dicas-img-center { margin: 1rem 0 1.5rem 0; }
}

.porque-escolher-section {
  max-width: 700px;
  margin: 2.5rem auto 2rem auto;
  padding: 2rem 1rem 2.5rem 1rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.porque-title {
  text-align: center;
  color: #2856a6;
  font-size: 2.1rem;
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.porque-underline {
  width: 60px;
  height: 4px;
  background: #2856a6;
  margin: 0 auto 2.2rem auto;
  border-radius: 2px;
}
.porque-cards {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}
.porque-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.5rem;
}
.porque-icon {
  margin-bottom: 0.7rem;
}
.porque-card h3 {
  color: #222;
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.porque-card p {
  color: #666;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif !important;
  margin: 0;
}
@media (max-width: 700px) {
  .porque-escolher-section { padding: 1.2rem 0.3rem; max-width: 100%; }
  .porque-title { font-size: 1.4rem; }
  .porque-underline { margin-bottom: 1.2rem; }
  .porque-cards { gap: 1.3rem; }
  .porque-card h3 { font-size: 1.05rem; }
  .porque-card p { font-size: 0.97rem; }
}

/* Melhorias gerais de espaçamento e containers */
section, .dicas-img-center, .footer, .header {
  margin-bottom: 2.5rem;
}
@media (max-width: 700px) {
  section, .dicas-img-center, .footer, .header {
    margin-bottom: 1.5rem;
  }
}

.container, .main-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Títulos e textos */
h1, h2, h3 {
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-weight: 800;
  color: #2563eb;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.2rem; margin-bottom: 1.2rem; }
h2 { font-size: 1.7rem; margin-bottom: 1.2rem; }
h3 { font-size: 1.18rem; margin-bottom: 0.5rem; }
@media (max-width: 700px) {
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.1rem; }
  h3 { font-size: 1rem; }
}

p, li {
  font-family: 'Montserrat', Arial, sans-serif !important;
  color: #222;
  font-size: 1.08rem;
  line-height: 1.7;
}

/* Suavizar fundos e uniformizar bordas */
section, .dicas-section, .checklist-section, .porque-escolher-section, .footer {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(37,99,235,0.08);
  margin-bottom: 2.5rem;
}

/* Espaçamento entre cards e grids */
.porque-cards, .dicas-cards {
  gap: 2rem;
}
@media (max-width: 700px) {
  .porque-cards, .dicas-cards { gap: 1.1rem; }
}

/* Imagens responsivas */
img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Botões e links */
.cta-button, .whatsapp-cta, .btn-menu {
  background: linear-gradient(90deg, #25d366 60%, #22c55e 100%);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 32px;
  padding: 1.2rem 2.5rem;
  font-size: 1.2rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  margin-bottom: 0.5rem;
  outline: none;
}
.cta-button:hover, .whatsapp-cta:hover, .btn-menu:hover {
  background: linear-gradient(90deg, #22c55e 60%, #25d366 100%);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 24px rgba(0,0,0,0.13);
}
.cta-button:focus, .whatsapp-cta:focus, .btn-menu:focus {
  box-shadow: 0 0 0 3px #2563eb44;
}

/* Footer aprimorado */
.footer {
  background: linear-gradient(120deg, #2563eb 60%, #3b82f6 100%);
  color: #fff;
  border-radius: 0 0 22px 22px;
  box-shadow: 0 -2px 12px rgba(37,99,235,0.07);
  padding: 2.5rem 1rem 1.5rem 1rem;
}
.footer-content { gap: 2.5rem; }
.footer-info h3, .footer-contact h4, .footer-social h4 { color: #fff; }
.footer-bottom { color: #e0e7ef; }

/* Header aprimorado */
.header { box-shadow: 0 2px 12px rgba(37,99,235,0.07); }
.nav a:focus { outline: 2px solid #2563eb; }

/* Acessibilidade */
a, button { outline-color: #2563eb; outline-width: 2px; transition: box-shadow 0.2s; }

/* Pequenos ajustes de contraste */
.porque-card p, .dica-card p, .checklist-blue li, .como-realizado-content p, .como-realizado-content ul.check-list li {
  color: #444;
}

/* Suavizar transições em cards */
.porque-card, .dica-card {
  transition: box-shadow 0.2s, transform 0.2s;
}
.porque-card:hover, .dica-card:hover {
  box-shadow: 0 8px 32px rgba(37,99,235,0.13);
  transform: translateY(-4px) scale(1.04);
}

/* Hero image topo */
.hero-img-top {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.2rem;
}
.hero-main-img {
  max-width: 180px;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(37,99,235,0.13);
  object-fit: cover;
}
@media (max-width: 700px) {
  .hero-main-img { max-width: 110px; border-radius: 12px; }
  .hero-img-top { margin-bottom: 0.7rem; }
}

/* Hero subtitle */
.hero-subtitle {
  color: #e0e7ef;
  background: rgba(37,99,235,0.13);
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-weight: 500;
  border-radius: 12px;
  padding: 0.6rem 1.5rem;
  margin-top: 1.1rem;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(37,99,235,0.07);
  text-shadow: 0 1px 4px rgba(37,99,235,0.10);
}
@media (max-width: 700px) {
  .hero-subtitle { font-size: 1rem; padding: 0.4rem 0.7rem; }
}

.hero-img-center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0 1.1rem 0;
}
@media (max-width: 700px) {
  .hero-img-center { margin: 0.7rem 0 0.7rem 0; }
}

/* Cards e seções */
section, .dicas-section, .checklist-section, .porque-escolher-section, .footer {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(37,99,235,0.08);
  margin-bottom: 2.5rem;
}
.porque-card, .dica-card {
  background: #f9fafb;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(37,99,235,0.10);
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  transition: box-shadow 0.2s, transform 0.2s;
  margin-bottom: 0.5rem;
}
.porque-card:hover, .dica-card:hover {
  box-shadow: 0 8px 32px rgba(37,99,235,0.13);
  transform: translateY(-4px) scale(1.04);
}
.porque-icon, .dica-num {
  background: linear-gradient(135deg, #2563eb 60%, #3b82f6 100%);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(37,99,235,0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
  font-weight: 700;
  border: 4px solid #fff;
}
.porque-icon svg { width: 28px; height: 28px; }
.dica-num { font-size: 1.3rem; }

/* Tipografia aprimorada */
h1, h2, h3 {
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-weight: 800;
  color: #2563eb;
  letter-spacing: 0.01em;
}
h2 { font-size: 1.7rem; margin-bottom: 1.2rem; }
h3 { font-size: 1.18rem; margin-bottom: 0.5rem; }
.porque-title, .dicas-title h2 {
  color: #2563eb;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}
.porque-underline {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #2563eb 60%, #3b82f6 100%);
  margin: 0 auto 2.2rem auto;
  border-radius: 2px;
}
p, li {
  font-family: 'Montserrat', Arial, sans-serif !important;
  color: #222;
  font-size: 1.08rem;
  line-height: 1.7;
}
.porque-card p, .dica-card p, .checklist-blue li, .como-realizado-content p, .como-realizado-content ul.check-list li {
  color: #444;
}

/* Separadores suaves entre seções */
section + section, .dicas-section + .dicas-img-center, .dicas-img-center + section {
  border-top: 1.5px solid #e9f0fb;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
}
@media (max-width: 700px) {
  .hero-section { padding: 1.2rem 0.3rem; border-radius: 12px; }
  .hero-content h1 { font-size: 1.4rem; }
  .hero-main-img { max-width: 110px; border-radius: 12px; }
  .hero-img-center { margin: 0.7rem 0 0.7rem 0; }
  section, .dicas-section, .checklist-section, .porque-escolher-section, .footer {
    border-radius: 12px;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 8px rgba(37,99,235,0.07);
  }
  .porque-title, .dicas-title h2 { font-size: 1.2rem; }
  .porque-underline { margin-bottom: 1.2rem; }
  .porque-cards, .dicas-cards { gap: 1.1rem; }
  .porque-card h3 { font-size: 1.05rem; }
  .porque-card p { font-size: 0.97rem; }
}

/* Transições suaves e acessibilidade */
a, button { outline-color: #2563eb; outline-width: 2px; transition: box-shadow 0.2s; }
.nav a:focus { outline: 2px solid #2563eb; }

.hero-img-full {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  margin: 2.5rem 0 1.5rem 0;
  overflow: hidden;
  padding-top: 90px;
}
.hero-main-img-full {
  max-width: 420px;
  width: 100%;
  height: auto;
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(37,99,235,0.18);
  transition: box-shadow 0.3s, transform 0.3s;
  display: block;
}
.hero-main-img-full:hover {
  box-shadow: 0 16px 48px rgba(37,99,235,0.22);
  transform: scale(1.03) rotate(-2deg);
}
@media (max-width: 700px) {
  .hero-main-img-full { max-width: 96vw; border-radius: 16px; }
  .hero-img-full { margin: 1.2rem 0 1rem 0; padding-top: 80px; }
}

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}
body {
  box-sizing: border-box;
}
.main-content, .container {
  max-width: 100vw;
  overflow-x: hidden;
}

body, h1, h2, h3, h4, h5, h6, p, li, a, button, input, textarea, .logo, .footer, .cta-button, .btn-menu, .hero-main-img-full, .hero-main-img, .porque-card, .dica-card, .checklist-section, .dicas-section, .footer-content, .footer-info, .footer-contact, .footer-social, .footer-bottom, .nav, .header, .main-content, .container, strong, b {
  font-family: 'Montserrat', Arial, sans-serif !important;
}

.quem-somos-section {
  background: linear-gradient(135deg, #f3f6fd 60%, #e9f0fb 100%);
  max-width: 700px;
  margin: 2.2rem auto 2.5rem auto;
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(37,99,235,0.08);
  padding: 2.5rem 1.7rem 2.2rem 1.7rem;
  text-align: center;
  border: 1.5px solid #2563eb22;
}
.quem-somos-title {
  color: #2563eb;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 8px rgba(37,99,235,0.08);
}
.quem-somos-text {
  color: #222b3a;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 600px;
  font-family: 'Montserrat', Arial, sans-serif;
  text-align: justify;
}
.quem-somos-text p {
  margin-bottom: 1.2em;
}
.quem-somos-text .emoji {
  font-size: 2.1rem;
  display: block;
  margin: 1.2rem auto 0.7rem auto;
}
@media (max-width: 700px) {
  .quem-somos-section { padding: 1.2rem 0.5rem; max-width: 100%; }
  .quem-somos-title { font-size: 1.3rem; }
  .quem-somos-text { font-size: 1rem; }
}

.footer.novo-footer {
  background: #101828;
  color: #fff;
  padding: 2.5rem 1rem 1.2rem 1rem;
  border-radius: 0 0 0 0;
  box-shadow: 0 -2px 18px rgba(37,99,235,0.10);
  border-top: 4px solid #2563eb44;
  text-align: center;
}
.footer-novo-content {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.footer-novo-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 0.3rem;
  display: block;
}
.footer-novo-slogan {
  color: #cbd5e1;
  font-size: 1.08rem;
  margin-bottom: 0.7rem;
  font-weight: 500;
}
.footer-novo-contact {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
}
.footer-novo-contact i {
  color: #2563eb;
  margin-right: 0.5em;
}
.footer-novo-copy {
  color: #cbd5e1;
  font-size: 0.98rem;
  margin-top: 0.7rem;
}
.footer-novo-address {
  color: #fff;
  font-size: 1.05rem;
  margin: 0.5rem 0 0.2rem 0;
  font-family: 'Montserrat', Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}
.footer-novo-address i {
  color: #2563eb;
  font-size: 1.1em;
}
@media (max-width: 600px) {
  .footer-novo-content { padding: 0 0.2rem; }
  .footer-novo-logo { font-size: 1.1rem; }
  .footer-novo-slogan { font-size: 0.97rem; }
  .footer-novo-contact { font-size: 0.97rem; }
  .footer-novo-copy { font-size: 0.93rem; }
  .footer-novo-address { font-size: 0.97rem; }
}

.orcamento-btn-center {
  display: flex;
  justify-content: center;
  margin: 2rem 0 1.5rem 0;
}
.orcamento-btn {
  background: linear-gradient(90deg, #25d366 60%, #22c55e 100%);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  border: none;
  border-radius: 32px;
  padding: 1rem 2.2rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,99,235,0.10);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  outline: none;
  display: inline-block;
}
.orcamento-btn:hover, .orcamento-btn:focus {
  background: linear-gradient(90deg, #22c55e 60%, #25d366 100%);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(37,99,235,0.13);
}
@media (max-width: 700px) {
  .orcamento-btn { font-size: 1rem; padding: 0.8rem 1.2rem; }
  .orcamento-btn-center { margin: 1.2rem 0 1rem 0; }
} 