/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-dark:   #0D5FA3;
  --blue:        #1A7BC4;
  --blue-mid:    #2E9EE0;
  --blue-light:  #EBF5FF;
  --blue-pale:   #F0F8FF;
  --white:       #FFFFFF;
  --text:        #1A2540;
  --text-muted:  #5A6E8A;
  --border:      #D4E8F7;
  --shadow:      0 4px 24px rgba(26,123,196,0.12);
  --shadow-lg:   0 12px 48px rgba(26,123,196,0.18);
  --radius:      14px;
  font-family: "poppins", sans-serif  ;
}




html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-tag.light {
  color: #93c5fd;
  background: rgba(255,255,255,0.12);
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text);
  margin-bottom: 14px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: white;
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all .25s;
  box-shadow: 0 4px 20px rgba(26,123,196,0.3);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,123,196,0.4);
}

.btn-center {
  display: flex;
  justify-content: center;
}

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
#header.scrolled {
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon { flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var();
}
.logo-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all .2s;
}
.nav a:hover { color: var(--blue); background: var(--blue-light); }
.btn-cta-nav {
  background: var(--blue) !important;
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  box-shadow: 0 4px 16px rgba(26,123,196,0.25);
  transition: all .25s !important;
}
.btn-cta-nav:hover {
  background: var(--blue-dark) !important;
  transform: translateY(-1px);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(10,55,110,0.85) 0%,
    rgba(26,123,196,0.65) 55%,
    rgba(46,158,224,0.35) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin-left: calc((100vw - 1160px)/2);
  padding-left: 24px;
  
}



.hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
}
.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: white;
  line-height: 1.15;
  margin-bottom: 22px;
}
.hero-content p {
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--blue-dark);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: all .25s;
}
.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.hero-badges {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 56px;
  margin-left: calc((100vw - 1160px)/2);
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
}
.badge {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 16px;
  padding: 16px 24px;
  text-align: center;
  color: white;
  min-width: 110px;
}
.badge-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.badge-label {
  font-size: 0.75rem;
  opacity: 0.85;
}

@media (max-width: 768px) {

  .btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 12px 18px;
    font-size: 14px;
    font-weight: 500;

    border-radius: 30px;
    width: fit-content;
  }

}

@media (max-width: 768px) {

  .hero-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .badge {
    padding: 12px;
    border-radius: 12px;
    text-align: center;
  }

  .badge-num {
    font-size: 16px;
    font-weight: 600;
  }

  .badge-label {
    font-size: 12px;
    opacity: 0.8;
  }

}



/* ===== FEATURES ===== */
.features {
  padding: 80px 0;
  background: var(--blue-pale);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .25s;
  border-top: 3px solid var(--blue);
}
.feature-card:hover { transform: translateY(-6px); }
.feat-icon {
  font-size: 2.4rem;
  margin-bottom: 0px;
  color: #2563EB; /* azul moderno (recomendado) */
}

.feature-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--blue-dark);
  margin-bottom: 10px;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: white;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  border: 1px solid var(--border);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.service-body {
  padding: 24px;
}
.service-body h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 10px;
}
.service-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.6;
}
.service-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--blue);
  color: white;
  transition: all .2s;
}
.btn-service:hover { background: var(--blue-dark); }
.btn-service.outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-service.outline:hover {
  background: var(--blue-light);
}

/* seção */
.more-services {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

/* card */
.more-box {
  max-width: 500px;
  text-align: center;

  padding: 30px 25px;
  border-radius: 20px;

  background: linear-gradient(
    135deg,
    rgba(46,158,224,0.08),
    rgba(46,158,224,0.02)
  );

  border: 1px solid rgba(46,158,224,0.15);
}

/* tag pequena */
.more-tag {
  display: inline-block;
  font-size: 12px;
  color: #2E9EE0;
  font-weight: 600;
  margin-bottom: 10px;
}

/* título */
.more-box h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

/* detalhe nos ... */
.dot {
  color: #2E9EE0;
}

/* texto */
.more-box p {
  font-size: 15px;
  opacity: 0.75;
  margin-bottom: 10px;
}

/* destaque */
.more-box .highlight {
  font-weight: 600;
  opacity: 1;
  margin-bottom: 20px;
}

/* ===== DIFERENCIAIS ===== */
.diferenciais {
  padding: 100px 0;
  background: var(--blue-pale);
}
.dif-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.dif-image-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.before-after {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ba-img { height: 280px; }
.ba-label {
  position: absolute;
  top: 12px; left: 12px;
  background: white;
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.before-after.after .ba-label {
  background: var(--blue);
  color: white;
}
.dif-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--text);
  margin-bottom: 28px;
  line-height: 1.2;
}
.dif-list {
  margin-bottom: 36px;
}
.dif-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text);
}
.dif-check {
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== FIDELIDADE ===== */
.fidelidade {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-mid) 100%);
  padding: 80px 0;
}
.fid-inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.fid-icon {
  font-size: 4rem;
  flex-shrink: 0;
  margin-top: 8px;
}
.fid-content .section-tag.light {
  color: #93c5fd;
  background: rgba(255,255,255,0.15);
  margin-bottom: 16px;
}
.fid-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: white;
  margin-bottom: 18px;
}
.fid-content p {
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.fid-content strong { color: white; }
.fid-steps {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.fid-step {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 500;
}
.fid-step span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.fidelidade .btn-primary {
  background: white;
  color: var(--blue-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.fidelidade .btn-primary:hover {
  background: #f0f8ff;
  transform: translateY(-2px);
}

/* ===== HISTÓRIA ===== */
.historia {
  padding: 100px 0;
  background: white;
}
.hist-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}
.hist-img-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hist-img-frame img {
  height: 520px;
  object-position: top center;
}
.hist-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--blue);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.hist-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.2;
}
.hist-content p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 18px;
}
.hist-content .btn-primary {
  margin: 16px auto 0;
  display: inline-flex;
}

.hist-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ===== DEPOIMENTOS ===== */
.depoimentos {
  padding: 100px 0;
  background: var(--blue-pale);
}
.dep-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.dep-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform .25s;
  border-left: 4px solid var(--blue);
}
.dep-card:hover { transform: translateY(-4px); }
.dep-stars {
  color: #F59E0B;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.dep-card > p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.dep-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.dep-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dep-author strong {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
}
.dep-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== TABELA DE PREÇOS ===== */
.tabela {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 100px 0;
}
.tab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.tab-content .section-tag.light { margin-bottom: 16px; }
.tab-content h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: white;
  line-height: 1.15;
  margin-bottom: 18px;
}
.tab-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.tab-benefits {
  margin-bottom: 0;
}
.tab-benefits li {
  color: rgba(255,255,255,0.88);
  padding: 8px 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tab-form {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--blue-pale);
  transition: border-color .2s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: white;
}
.btn-form {
  width: 100%;
  padding: 15px;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s;
  box-shadow: 0 4px 20px rgba(26,123,196,0.3);
}
.btn-form:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,123,196,0.4);
}

/* ===== FOOTER ===== */
.footer {
  background: #0B2A4A;
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 18px;
  margin-bottom: 24px;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
}
.social-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}
.footer-col h4 {
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color .2s;
}
.footer-col ul li a:hover { color: #93c5fd; }
.contact-list li {
  color: rgba(255,255,255,0.6) !important;
  font-size: 0.88rem !important;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.contact-list li::before { content: none !important; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(26,123,196,0.35);
  opacity: 0;
  transform: translateY(20px);
  transition: all .3s;
  z-index: 999;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .dif-grid { grid-template-columns: 1fr; gap: 40px; }
  .hist-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .tab-grid { grid-template-columns: 1fr; gap: 40px; }
  .fid-inner { flex-direction: column; gap: 28px; }
  .hero-content { margin-left: 0; }
  .hero-badges { margin-left: 0; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .nav {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  }
  .nav.open { display: flex; }
  .nav a {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 1rem;
  }
  .btn-cta-nav { text-align: center; margin-top: 8px; }

  .hero { padding: 100px 24px 60px; min-height: auto; }
  .hero-content h1 { font-size: 2rem; }
  .hero-badges { gap: 10px; }
  .badge { padding: 12px 16px; min-width: 80px; }
  .badge-num { font-size: 1.4rem; }

  .features-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .dif-image-area { grid-template-columns: 1fr 1fr; }
  .ba-img { height: 180px; }

  .dep-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .tab-form { padding: 28px 20px; }
  .hist-img-frame img { height: 320px; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-badges { justify-content: center; }
  .service-actions { flex-direction: column; }
  .btn-service { justify-content: center; }
  .dif-image-area { grid-template-columns: 1fr; }
  .ba-img { height: 220px; }
  .fid-steps { flex-direction: column; }
  .features { padding: 56px 0; }
  .services, .diferenciais, .historia, .depoimentos, .tabela { padding: 72px 0; }
}

/************************AJUSTES PARTICULARES GPT********************/

.logo-area {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px; /* controla o tamanho */
  width: auto;
  display: block;
  border-radius: 50%;
}

.btn-hero {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
}

/* ===== MOBILE AJUSTES (DO ZERO) ===== */
@media (max-width: 768px) {
  .hero {
  padding: 100px 20px 50px;
  min-height: auto;
}

.hero-content {
  margin-left: 0;
  padding-left: 0;
  max-width: 100%;
}

.hero-content h1 {
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 18px;
  max-width: 100%;
}

.btn-hero {
  padding: 12px 18px;
  font-size: 14px;
  border-radius: 30px;
}

.hero-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.badge {
  padding: 12px;
  border-radius: 12px;
}

.badge-num {
  font-size: 16px;
}

.badge-label {
  font-size: 12px;
}

.hero-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* botão principal (azul) */
.btn-primary-hero {
  background: linear-gradient(135deg, #2E9EE0, #1A7BC4);
  color: white;
  padding: 14px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 6px 20px rgba(46,158,224,0.4);
  transition: 0.3s;
}

.btn-primary-hero:hover {
  transform: translateY(-2px);
}

/* botão secundário */
.btn-secondary-hero {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  background: linear-gradient(135deg, #2E9EE0, #1A7BC4);
  border: 1.5px solid rgba(46,158,224,0.4);
  color: white;
  padding: 14px 20px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 14px;
  backdrop-filter: blur(6px);
}

.hero-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 260px; /* controla o tamanho */
  height: 48px; /* deixa todos iguais */

  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;

  text-align: center;
}

.btn-primary-hero {
  background: var(--blue);
  color: white;
  box-shadow: 0 6px 20px rgba(26,123,196,0.35);
}

.btn-secondary-hero {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.6);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

}