
:root {
  --teal: #4fa79b;
  --teal-dark: #174a56;
  --teal-deep: #0e5c6d;
  --mint: #eaf6f3;
  --gold: #c8a15a;
  --text: #2f2f2f;
  --muted: #6b6b6b;
  --bg: #f7fbfa;
  --white: #ffffff;
  --line: #dcebe7;
  --shadow: 0 14px 40px rgba(23, 74, 86, 0.10);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: .25s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover { background: var(--teal-deep); }

.btn-secondary {
  background: transparent;
  color: var(--teal-dark);
  border-color: rgba(23, 74, 86, .18);
}

.btn-secondary:hover { background: var(--white); }

.section {
  padding: 80px 0;
}

.section-title {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  color: var(--teal-dark);
}

.section-subtitle {
  margin: 0 0 36px;
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(247, 251, 250, 0.88);
  border-bottom: 1px solid rgba(23, 74, 86, 0.08);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 200px;
  height: 70px;
  object-fit: contain;
}

.brand-text strong {
  display: block;
  color: var(--teal-dark);
  font-size: 22px;
  line-height: 1;
}

.brand-text span {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  margin-top: 6px;
}

.brand-text small {
  display: block;
  color: var(--teal-deep);
  margin-top: 4px;
  font-size: 12px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.menu a:not(.btn) {
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 15px;
}

.hero {
  padding: 48px 0 72px;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(79,167,155,.18), rgba(79,167,155,0));
  pointer-events: none;
}

.hero::before {
  width: 360px;
  height: 360px;
  top: -100px;
  right: -80px;
}

.hero::after {
  width: 260px;
  height: 260px;
  left: -100px;
  bottom: -40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: .98;
  color: var(--teal-dark);
}

.hero h1 span { color: var(--teal); }

.hero p {
  margin: 0 0 28px;
  font-size: 19px;
  color: var(--muted);
  max-width: 640px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--teal-dark);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.hero-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f0f8f6 100%);
  border: 1px solid rgba(79,167,155,.16);
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.hero-card .photo {
  width: 100%;
  border-radius: 26px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  background: #dcebe7;
}

.hero-floating {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(23, 74, 86, 0.08);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(23, 74, 86, 0.08);
}

.hero-floating strong {
  display: block;
  color: var(--teal-dark);
  font-size: 18px;
  margin-bottom: 6px;
}

.hero-floating span {
  color: var(--muted);
  font-size: 14px;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.card h3 {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 22px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.about-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 30px;
  align-items: start;
}

.about-photo {
  background: linear-gradient(180deg, #ffffff 0%, #eef8f5 100%);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.about-photo img {
  border-radius: 22px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
  background: #dcebe7;
}

.about-content {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.about-content p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.mini-box {
  background: var(--mint);
  border-radius: 18px;
  padding: 20px;
}

.mini-box strong {
  display: block;
  color: var(--teal-dark);
  margin-bottom: 8px;
  font-size: 16px;
}

.mini-box span {
  color: var(--muted);
  font-size: 14px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: start;
}

.service-panel,
.steps-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 34px;
}

.service-panel p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border-radius: 18px;
  background: var(--mint);
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--teal-dark);
  font-weight: 800;
  font-size: 20px;
  border: 1px solid var(--line);
}

.step h4 {
  margin: 0 0 6px;
  color: var(--teal-dark);
  font-size: 18px;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.list li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
  font-weight: 600;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 10px;
  top: -1px;
  color: var(--teal);
  font-size: 20px;
  line-height: 1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 28px;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 28px;
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.price-card::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.price-card h3 {
  margin: 10px 0 10px;
  color: var(--teal-dark);
  font-size: 24px;
}

.price {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.price small {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

.price-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.contact-box {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items: stretch;
}

.contact-card,
.payment-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 30px;
}

.contact-card h3,
.payment-card h3 {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 28px;
}

.contact-card p,
.payment-card p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 17px;
}

.phone {
  display: inline-block;
  margin-top: 8px;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--teal-dark);
  font-weight: 800;
  line-height: 1.1;
}

.payments {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.payment-tag {
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--mint);
  color: var(--teal-dark);
  font-weight: 800;
  border: 1px solid rgba(79,167,155,.18);
}

.footer {
  padding: 34px 0 48px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.footer strong { color: var(--teal-dark); }

@media (max-width: 1040px) {
  .hero-grid,
  .about-grid,
  .service-grid,
  .contact-box,
  .cards-3,
  .pricing-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .hero-card { max-width: 640px; margin: 0 auto; }
}

@media (max-width: 760px) {

  /* HEADER MOBILE */
  .nav {
    padding: 14px 0;
    justify-content: center;
    align-items: center;
    flex-direction: row;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .brand img {
    width: 180px;
    height: auto;
  }

  /* esconder menu */
  .menu {
    display: none;
  }

  /* resto do layout */
  .section { padding: 64px 0; }

  .hero { padding-top: 24px; }

  .hero h1 { 
    font-size: clamp(34px, 12vw, 52px); 
  }

  .hero p,
  .about-content p,
  .service-panel p,
  .section-subtitle {
    font-size: 16px;
  }

  .card,
  .about-content,
  .about-photo,
  .service-panel,
  .steps-panel,
  .contact-card,
  .payment-card,
  .price-card { 
    padding: 22px; 
  }

  .phone { 
    font-size: 30px; 
  }
}

.whatsapp-float {
  width: 50px;
  height: 50px;
  background-color: #4dc247;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: white;
  position: fixed;
  bottom: 15px;
  right: 15px;
  animation: pulse-whatsapp 1.5s infinite ease-in-out;
  box-shadow: rgb(0 0 0 / 40%) 2px 2px 6px;
  z-index: 9999;
}

.whatsapp-float a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.whatsapp-float i {
  color: #fff;
  font-size: 1.2em;
}

/* Animação de brilho mais destacado */
@keyframes pulse-whatsapp {
  0% {
    box-shadow:
      0 0 6px rgba(77, 194, 71, 0.6),
      0 0 12px rgba(77, 194, 71, 0.5),
      0 0 20px rgba(77, 194, 71, 0.4);
  }
  50% {
    box-shadow:
      0 0 12px rgba(77, 194, 71, 0.9),
      0 0 25px rgba(77, 194, 71, 0.8),
      0 0 40px rgba(77, 194, 71, 0.7);
  }
  100% {
    box-shadow:
      0 0 6px rgba(77, 194, 71, 0.6),
      0 0 12px rgba(77, 194, 71, 0.5),
      0 0 20px rgba(77, 194, 71, 0.4);
  }
}

/* LOGIN MODAL */

.modal-login{

display:none;

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,0.4);

justify-content:center;
align-items:center;

z-index:9999;

}

.modal-box{

background:#fff;

padding:40px;

border-radius:16px;

width:350px;

box-shadow:0 10px 30px rgba(0,0,0,0.2);

position:relative;

}

.modal-box h2{

margin-top:0;

color:var(--teal-dark);

}

.modal-box input{

width:100%;

padding:12px;

margin-bottom:15px;

border:1px solid #ccc;

border-radius:8px;

}

.close{

position:absolute;

right:15px;
top:10px;

font-size:22px;

cursor:pointer;

}