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

:root {
  --bg: #f5f6f8;
  --paper: #ffffff;
  --ink: #1c252e;
  --muted: #607080;
  --brand: #0e5f63;
  --brand-2: #0b4d50;
  --accent: #c9a24d;
  --shadow-md: 0 12px 30px rgba(14, 36, 48, 0.12);
  --shadow-lg: 0 20px 50px rgba(14, 36, 48, 0.18);
  --radius: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, #edf6ff 0%, transparent 38%),
    radial-gradient(circle at 92% 20%, #f8efe1 0%, transparent 34%),
    var(--bg);
  line-height: 1.65;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: linear-gradient(135deg, rgba(10, 62, 67, 0.95), rgba(16, 83, 88, 0.93));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
}

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

.logo {
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.logo-extra img {
  height: 40px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.24s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 1.25rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid #eceff3;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 12px;
}

.mobile-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--brand);
  font-weight: 600;
}

.mobile-nav a:hover {
  background: #eef8f8;
  text-decoration: none;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 82px 0 68px;
  background: linear-gradient(125deg, #e7f2ff 0%, #f5f9fb 55%, #ffffff 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  right: -140px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 77, 0.18), rgba(201, 162, 77, 0));
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 44px;
  align-items: center;
}

.hero-text h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #103947;
}

.hero-subtitle {
  max-width: 600px;
  font-size: 1.06rem;
  color: #456173;
  margin-bottom: 18px;
}

.hero-support-text {
  color: #4f6676;
  font-size: 0.96rem;
  margin-top: 18px;
}

.hero-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #1f9f62, #198754);
  box-shadow: 0 10px 24px rgba(30, 140, 84, 0.28);
}

.btn-primary:hover {
  filter: brightness(1.03);
}

.btn-outline {
  color: #114b58;
  background: #fff;
  border: 1px solid rgba(17, 75, 88, 0.22);
  box-shadow: 0 8px 20px rgba(16, 63, 75, 0.1);
}

/* WhatsApp premium button style (official color direction + icon) */
.whatsapp-premium {
  --wa-green: #25d366;
  --wa-green-dark: #128c7e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--wa-green), var(--wa-green-dark));
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 10px 24px rgba(18, 140, 126, 0.34);
}

.whatsapp-premium::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M19.11 17.21c-.27-.14-1.6-.79-1.85-.88-.25-.09-.43-.14-.61.14-.18.27-.7.88-.86 1.05-.16.18-.32.2-.59.07-.27-.14-1.13-.42-2.16-1.35-.8-.71-1.33-1.59-1.49-1.86-.16-.27-.02-.41.12-.54.13-.13.27-.32.41-.48.14-.16.18-.27.27-.45.09-.18.05-.34-.02-.48-.07-.14-.61-1.47-.84-2.02-.22-.52-.44-.45-.61-.46-.16-.01-.34-.01-.52-.01-.18 0-.48.07-.73.34-.25.27-.95.93-.95 2.27 0 1.34.98 2.64 1.12 2.82.14.18 1.92 2.93 4.65 4.11.65.28 1.16.45 1.56.58.66.21 1.26.18 1.73.11.53-.08 1.6-.65 1.83-1.28.23-.63.23-1.17.16-1.28-.07-.11-.25-.18-.52-.32zM16 3.2C8.94 3.2 3.2 8.94 3.2 16c0 2.49.72 4.9 2.08 6.96L3 29l6.2-2.24A12.75 12.75 0 0 0 16 28.8c7.06 0 12.8-5.74 12.8-12.8S23.06 3.2 16 3.2zm0 23.28c-2.11 0-4.18-.57-5.99-1.65l-.43-.26-3.68 1.33 1.35-3.59-.28-.46A10.28 10.28 0 0 1 5.72 16c0-5.67 4.61-10.28 10.28-10.28 2.75 0 5.33 1.07 7.27 3.01A10.2 10.2 0 0 1 26.28 16c0 5.67-4.61 10.28-10.28 10.28z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.whatsapp-premium:hover {
  text-decoration: none;
  filter: brightness(1.04);
}

.hero-photo-frame {
  width: min(340px, 90%);
  margin-inline: auto;
  border-radius: 36px;
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 26px 52px rgba(16, 57, 71, 0.2), 0 8px 20px rgba(16, 57, 71, 0.14);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(250, 244, 231, 0.95));
}

.hero-photo-frame img,
.hero-portrait {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 28px;
  display: block;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.hero-image {
  position: relative;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 10% 8% -6% 8%;
  border-radius: 42px;
  z-index: -1;
  background: radial-gradient(circle at 30% 25%, rgba(201, 162, 77, 0.22), rgba(201, 162, 77, 0));
}

.section {
  padding: 72px 0;
}

.section-light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 248, 251, 0.88));
}

.section-muted {
  background:
    radial-gradient(circle at 8% 18%, rgba(14, 95, 99, 0.08), transparent 42%),
    #f1f4f7;
}

.section-header {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-header h2 {
  margin: 0 0 10px;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  color: #16384a;
  letter-spacing: -0.2px;
}

.section-header p {
  margin: 0;
  color: var(--muted);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(12, 50, 60, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #153c4f;
  line-height: 1.28;
}

.card p {
  margin-top: 0;
  color: #5b6f7d;
}

.card-image {
  border-radius: 12px;
  overflow: hidden;
  margin: -4px -4px 14px;
  aspect-ratio: 16 / 10;
  background: #dce7ee;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Prioriza o topo do enquadramento (rosto) nos cards */
  object-position: center 13%;
  display: block;
  transform: scale(1.01);
  transition: transform 0.35s ease;
}

.card:hover .card-image img {
  transform: scale(1.06);
}

.info-box {
  position: relative;
  margin-top: 6px;
  padding: 28px 30px;
  border-radius: 18px;
  color: #f3fbfd;
  background: linear-gradient(145deg, #0f2f33, #11545a 58%, #167177 100%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.info-box::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.17), transparent 66%);
}

.info-box h3 {
  margin: 0 0 16px;
  color: #fff;
}

.info-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.info-box li {
  position: relative;
  padding-left: 28px;
  color: rgba(246, 253, 255, 0.95);
}

.info-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, #f0d58a 35%, #c9a24d 80%);
  box-shadow: 0 0 10px rgba(240, 213, 138, 0.5);
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0b5d5a;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.link-more:hover {
  text-decoration: none;
  color: #094844;
  border-color: #0a4f4b;
}

.map-wrapper {
  margin-top: 30px;
}

.map-wrapper h3 {
  color: #173d50;
}

.map-embed {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.site-footer {
  background: linear-gradient(180deg, #18252f, #141d24);
  color: #d7dee3;
  padding: 30px 0;
  text-align: center;
  font-size: 0.9rem;
}

.footer-small {
  opacity: 0.88;
}

.footer-agency {
  margin-top: 18px;
}

.footer-agency a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e6c06b;
  font-size: 13px;
  text-decoration: none;
}

.footer-agency-logo {
  width: auto;
  height: 24px;
  border-radius: 6px;
}

.whatsapp-floating {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: linear-gradient(135deg, #22c55e, #13a34a);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(8, 60, 33, 0.35);
  z-index: 200;
}

.whatsapp-floating.whatsapp-premium {
  padding: 12px 18px;
}

.whatsapp-floating:hover {
  filter: brightness(1.03);
  text-decoration: none;
}

.instagram-floating {
  position: fixed;
  right: 18px;
  bottom: 88px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 62%, #285aeb 92%);
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 201;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.instagram-floating:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

@media (max-width: 1040px) {
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .hero-content,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 64px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-subtitle,
  .hero-support-text {
    margin-inline: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .section {
    padding: 58px 0;
  }

  .instagram-floating {
    right: 14px;
    bottom: 84px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-floating {
    right: 14px;
    bottom: 14px;
  }
}
