:root {
  --color-primary: #324697;
  --color-primary-dark: #0b1d2c;
  --color-accent: #1a4f7a;
  --color-surface: #f6f8fb;
  --color-white: #ffffff;
  --color-text: #12202e;
  --color-text-soft: #5f6d7a;
  --color-border: rgba(18, 48, 74, 0.103);
  --shadow-soft: 0 18px 40px rgba(7, 24, 38, 0.12);
  --shadow-strong: 0 24px 60px rgba(5, 17, 28, 0.24);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --header-height: 82px;
  --container: min(1120px, calc(100% - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(74, 18, 18, 0.164), transparent 28%),
    linear-gradient(180deg, #f7f9fc 0%, #ffffff 38%, #f4f7fa 100%);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: currentColor;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.section-heading.left {
  margin-bottom: 0;
}

.section-heading h2,
.about-copy h2,
.cta-box h2,
.hero-copy h1 {
  margin: 0.9rem 0 1rem;
  font-family: "Merriweather", serif;
  line-height: 1.15;
}

.section-heading p,
.about-copy p,
.cta-box p,
.hero-copy p {
  margin: 0;
  color: var(--color-text-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.5rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #18456a, #0d2740);
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.096);
  backdrop-filter: blur(14px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  background: rgba(152, 184, 209, 0.849);
  box-shadow: 0 12px 32px rgba(9, 22, 34, 0.22);
  backdrop-filter: blur(16px);
}

.header-content {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}


.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  width: 105px;
  height: 155px;
  background-color: #631f1f00;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}
.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain; 
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-size: 1.5rem;
  color: var(--color-surface);
}

.logo-text small {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.72);
}

.menu-toggle {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--color-white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav {
  position: fixed;
  top: calc(var(--header-height) - 0.25rem);
  left: 1rem;
  right: 1rem;
  display: grid;
  gap: 0.3rem;
  padding: 1rem;
  background: rgba(10, 24, 37, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  transform: scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav.is-open {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.nav a {
  color: var(--color-white);
  padding: 0.85rem 1rem;
  border-radius: 0.9rem;
  font-weight: 700;
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  margin-top: 0.45rem;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(119, 137, 156, 0) 0%, rgba(7, 20, 33, 0) 38%, rgba(7, 20, 33, 0) 100%),
    url("images/ChatGPT\ Image\ 28\ de\ mai.\ de\ 2026\ 00_49_59.png") center/cover;
  color: var(--color-white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(38, 103, 153, 0.35), transparent 26%),
    linear-gradient(180deg, rgba(9, 24, 36, 0.08), rgba(9, 24, 36, 0.2));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  padding-top: calc(var(--header-height) + 2.5rem);
  padding-bottom: 3rem;
}

.hero-copy {
  max-width: 40rem;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 7vw, 4.6rem);
  max-width: 12ch;
}

.hero-copy p {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.hero-badges {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 1.7rem 0 0;
}

.hero-badges li {
  position: relative;
  padding-left: 1.4rem;
  color: rgba(255, 255, 255, 0.84);
}

.hero-badges li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #78b7ec;
}

.hero-highlight {
  display: flex;
  align-items: end;
}

.highlight-panel {
  max-width: 24rem;
  margin-left: auto;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-strong);
}

.panel-kicker {
  margin: 0;
  color: #9cc7ec;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.highlight-panel h2 {
  margin: 0.8rem 0;
  font-size: 1.4rem;
  line-height: 1.25;
}

.highlight-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.stats {
  position: relative;
  margin-top: -3rem;
}

.stats-grid,
.treatments-grid,
.about-points,
.differentials-list,
.footer-grid {
  display: grid;
  gap: 1rem;
}

.stat-card,
.treatment-card,
.about-points article,
.testimonial-card,
.cta-box,
.gallery-item,
.differentials-list article {
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.stat-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
}

.stat-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 2rem;
  color: var(--color-primary);
}

.stat-card span {
  color: var(--color-text-soft);
}

.about-grid,
.differentials-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.about-points article,
.treatment-card,
.differentials-list article {
  padding: 1.45rem;
  border-radius: var(--radius-md);
  background: var(--color-white);
}

.about-points article i,
.treatment-card i,
.differentials-list article i {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(18, 48, 74, 0.08);
  color: var(--color-primary);
  font-size: 1.1rem;
}

.about-points h3,
.treatment-card h3 {
  margin: 0 0 0.5rem;
}

.about-points p,
.treatment-card p {
  margin: 0;
  color: var(--color-text-soft);
}

.treatments {
  background: linear-gradient(180deg, rgba(18, 48, 74, 0.03), rgba(18, 48, 74, 0.01));
}

.differentials-list article {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 800;
}

.differentials-list article i {
  margin-bottom: 0;
  flex-shrink: 0;
}

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

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  height: 525px;
  background: #d8e0e8;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.testimonial-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}

.slider-track {
  width: 100%;
}

.testimonial-card {
  display: none;
  width: 100%;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fcfcfc, #f7f9fc);
  box-sizing: border-box;
}

.testimonial-card.active {
  display: block;
}

.testimonial-card p {
  margin: 0 0 1.2rem;
  font-size: 1.08rem;
  color: var(--color-text);
  line-height: 1.7;
  overflow-wrap: break-word;
  word-break: break-word;
}

.testimonial-card strong {
  color: var(--color-accent);
}

.slider-btn {
  width: 3.1rem;
  height: 3.1rem;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.slider-dots button {
  width: 0.75rem;
  height: 0.75rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(18, 48, 74, 0.2);
  cursor: pointer;
}

.slider-dots button.active {
  background: var(--color-primary);
}
.slider-btn img {
  width: 25px;   
  height: 25px;
}

.cta-box {
  display: grid;
  gap: 1.6rem;
  padding: 2rem;
  border-radius: calc(var(--radius-lg) + 4px);
  background:
    linear-gradient(135deg, rgba(10, 25, 38, 0.96), rgba(18, 48, 74, 0.9)),
    url("https://images.unsplash.com/photo-1519824145371-296894a0daa9?auto=format&fit=crop&w=1200&q=80") center/cover;
  color: var(--color-white);
}

.cta-box p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 34rem;
}

.footer {
  background: #0c1722;
  color: rgba(255, 255, 255, 0.9);
  padding-top: 3rem;
}

.footer-grid {
  padding-bottom: 2rem;
}

.footer h3,
.footer h4 {
  margin-top: 0;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.7);
}

.footer a {
  display: block;
  margin-bottom: 0.45rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  padding: 1rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 999;
  width: 3.8rem;
  height: 3.8rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #06640b00, #daf1e300);
  color: var(--color-white);
  box-shadow: 0 18px 35px rgba(17, 153, 71, 0.089);
  font-size: 1.6rem;
}

.media (min-width: 720px) {
  .section {
    padding: 6rem 0;
  }

  .stats-grid,
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-points,
  .treatments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-box {
    grid-template-columns: 1.4fr auto;
    align-items: center;
  }
}

.media (min-width: 980px) {
  .menu-toggle {
    display: none;
  }

  .nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.85rem 1rem;
  }

  .nav-cta {
    margin-top: 0;
    margin-left: 0.65rem;
  }

  .hero-grid,
  .about-grid,
  .differentials-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
  }
}

.media (max-width: 719px) {
  .section-heading h2,
  .about-copy h2,
  .cta-box h2 {
    font-size: 1.85rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-top: calc(var(--header-height) + 3.5rem);
  }

  .highlight-panel {
    margin-left: 0;
  }

  .testimonial-slider {
    grid-template-columns: 1fr;
  }

  .slider-btn {
    display: none;
  }

  .slider-track {
    min-height: 20rem;
  }
  
  
}
.galeria {
  display: flex;             
  gap: 10px;
  overflow-x: auto;           
  scroll-behavior: smooth;
  padding: 20px;

  max-width: 1000px;
  margin: 0 auto;
}

.galeria img {
  width: 200px;               
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.3s;

  flex-shrink: 0;             
}

.galeria img:hover {
  transform: scale(1.05);
}

.mapa {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.mapa iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

@media (max-width: 768px) {
  .mapa iframe {
    height: 300px;
  }
}


.infinite-slider {
  width: 100%;
  overflow: hidden; 
  padding: 2.5rem 0;
  position: relative;
  cursor: grab;
  user-select: none; 
}

.infinite-slider:active {
  cursor: grabbing;
}

.infinite-track {
  display: flex;
  width: max-content;
  gap: 20px;
  padding: 0 20px;
  will-change: transform;
}

.slider-item {
  margin: 0;
  width: 380px; 
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none; 
}

.slider-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}


.testimonial-card {
  display: none;
}
.testimonial-card.active {
  display: block;
}
