.city-select,
.hero,
.hero-card,
.hero-content,
.search-box {
  position: relative;
}
.about-image,
.hero,
.store-card,
.store-image {
  overflow: hidden;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Inter, sans-serif;
  color: #263238;
  background: #f7faf9;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button,
input,
select {
  font: inherit;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
:root {
  --green: #00b6ad;
  --green-dark: #009c95;
  --green-light: #e8f7f1;
  --blue: #e95e08;
  --accent: #20c997;
  --dark: #172b25;
  --text: #263238;
  --muted: #667085;
  --white: #ffffff;
  --background: #f7faf9;
  --border: #e4e9e7;
  --shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
  --radius: 18px;
}
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.navbar {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.logo,
.nav-menu {
  align-items: center;
  display: flex;
  justify-content: space-evenly;
}
.logo {
  gap: 12px;
}
.logo img {
  height: 120px;
  width: auto;
  padding-bottom: 0.5rem;
}
.nav-menu {
  gap: 30px;
  list-style: none;
}
.btn,
.nav-actions {
  align-items: center;
}
.nav-menu a {
  font-size: 14px;
  font-weight: 600;
  color: #344054;
  transition: 0.2s;
}
.nav-menu a:hover {
  color: var(--green);
}
.nav-actions {
  display: flex;
  gap: 10px;
}
.mobile-menu {
  display: none;
  border: 0;
  background: 0 0;
  font-size: 28px;
  cursor: pointer;
}
.btn {
  display: inline-flex;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-large {
  width: 40%;
  margin-bottom: 0.5rem;
  display: inline-flex;
  justify-content: center;
  gap: 8px;
  padding: 5px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 8px 20px rgba(8, 127, 91, 0.18);
}

.btn-danger {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 8px 20px rgba(8, 127, 91, 0.18);
}

.btn-primary:hover {
  background: var(--green-dark);
}
.btn-outline {
  color: var(--green);
  background: #fff;
  border-color: #b9ddd0;
}
.btn-outline:hover {
  background: var(--green-light);
}
.btn-whatsapp {
  color: #fff;
  background: #25d366;
}
.hero {
  background: radial-gradient(circle at 90% 15%, rgba(0, 182, 173, 0.45), transparent 35%),
    radial-gradient(circle at 10% 85%, rgba(0, 182, 173, 0.25), transparent 40%),
    linear-gradient(135deg, #005f5a 0%, #008f88 45%, #00b6ad 75%, #00cfc5 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  right: -200px;
  bottom: -250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.hero-content {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  padding: 70px 0;
}
.hero-tag {
  display: inline-flex;
  padding: 8px 14px;
  margin-bottom: 20px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 13px;
  font-weight: 600;
}
.section-label,
.store-number {
  font-weight: 800;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 680px;
  font-size: clamp(38px, 5vw, 64px);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 25px;
  letter-spacing: -2px;
}
.doctor .section-label,
.hero h1 span,
footer a:hover {
  color: #ff6f15;
}
.hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  margin-bottom: 30px;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-buttons .btn-outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}
.hero-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  padding: 30px;
  backdrop-filter: blur(10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}
.about,
.feature,
.features,
.products {
  background: #fff;
}
.hero-card img {
  padding: 2.5rem 0;
  width: 100%;
  max-height: 380px;
  object-fit: contain;
}
.about-image img,
.doctor-image img,
.products-banner img,
.store-image img {
  width: 100%;
  object-fit: initial;
}
.hero-card-info {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.hero-stat strong {
  display: block;
  font-size: 28px;
  color: #fff;
}
.hero-stat span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}
section {
  padding: 90px 0;
}
.section-header {
  max-width: 720px;
  margin: 0 auto 45px;
  text-align: center;
}
.section-label {
  color: var(--green);
  font-size: 13px;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.section-title {
  color: var(--dark);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 15px;
}
.section-description {
  color: var(--muted);
  font-size: 16px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: 0.25s;
}
.feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.feature-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 14px;
  color: var(--green);
  background: var(--green-light);
  font-size: 24px;
}
.feature h3 {
  margin-bottom: 8px;
  font-size: 17px;
}
.contact-card p,
.feature p,
.value-card p {
  color: var(--muted);
  font-size: 14px;
}
.contact,
.stores {
  background: var(--background);
}
.store-filters {
  display: grid;
  grid-template-columns: 1fr 230px;
  gap: 15px;
  margin-bottom: 35px;
}
.city-select select,
.search-box input {
  width: 100%;
  height: 55px;
  padding: 0 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  outline: 0;
  color: var(--text);
  transition: 0.2s;
}
.city-select select:focus,
.search-box input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(8, 127, 91, 0.08);
}
.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.store-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: 0.25s;
}
.store-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.store-image {
  height: 210px;
  background: #e8efec;
}
.store-image img {
  height: 100%;
  transition: transform 0.4s;
}
.store-card:hover .store-image img {
  transform: scale(1.05);
}
.store-content {
  padding: 22px;
}
.store-number {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 9px;
  border-radius: 20px;
  color: var(--green);
  background: var(--green-light);
  font-size: 11px;
}
.store-content h3 {
  color: var(--dark);
  font-size: 19px;
  margin-bottom: 10px;
}
.store-address {
  min-height: 50px;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 16px;
}
.store-contact {
  color: #475467;
  font-size: 13px;
  margin-bottom: 20px;
}
.store-actions {
  display: flex;
  gap: 8px;
}
.store-actions .btn {
  flex: 1;
  padding: 10px 8px;
  font-size: 12px;
}
.no-results {
  display: none;
  padding: 50px;
  text-align: center;
  color: var(--muted);
  background: #fff;
  border-radius: var(--radius);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.timeline,
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.about-image {
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.about-image img {
  height: 450px;
}
.about-text h2 {
  color: var(--dark);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  margin-bottom: 20px;
}
.about-text p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 18px;
}
.timeline {
  gap: 15px;
  margin-top: 30px;
}
.timeline-item {
  padding: 20px;
  background: var(--green-light);
  border-radius: 14px;
}
.timeline-item strong {
  display: block;
  color: var(--green);
  font-size: 25px;
  margin-bottom: 5px;
}
.timeline-item span {
  color: var(--muted);
  font-size: 12px;
}
.values {
  background: linear-gradient(135deg, #f0faf6, #fff);
}
.values-grid {
  gap: 25px;
}
.doctor-grid,
.products-banner {
  display: grid;
  grid-template-columns: 2fr 1fr;
}
.value-card {
  padding: 35px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.doctor-image,
.products-banner {
  overflow: hidden;
  border-radius: 25px;
}
.value-card h3 {
  color: var(--green);
  font-size: 22px;
  margin-bottom: 12px;
}
.value-card ul {
  padding-left: 20px;
  color: var(--muted);
  font-size: 14px;
}
.doctor p,
footer {
  color: rgba(255, 255, 255, 0.75);
}
.value-card li {
  margin-bottom: 5px;
}

.doctor .section-label {
  color: #fff;
}

.doctor h2 {
  color: #fff;
}

.nav-hidden {
  display: none;
}

.doctor {
  position: relative;
  overflow: hidden;
  background: radial-gradient(
      circle at 78% 45%,
      rgba(0, 205, 195, 0.35) 0%,
      rgba(0, 170, 162, 0.15) 35%,
      transparent 65%
    ),
    linear-gradient(105deg, #006660 0%, #008c84 35%, #00aaa2 70%, #00c0b7 100%);
}

.doctor-grid {
  gap: 60px;
  align-items: center;
}
.doctor-image {
  background: rgb(255, 255, 255);
}
.doctor-image img {
  height: 420px;
}
.doctor h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  margin-bottom: 20px;
}
.doctor p {
  margin-bottom: 25px;
}
.products-banner {
  background: #f0f4f2;
}
.products-banner img {
  height: 380px;
}
.products-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
}
.products-content h2 {
  font-size: 36px;
  line-height: 1.15;
  margin-bottom: 15px;
}
.products-content p {
  color: var(--muted);
  margin-bottom: 25px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-card {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.contact-card span {
  display: block;
  color: var(--green);
  font-size: 28px;
  margin-bottom: 15px;
}
.contact-card h3,
footer a {
  margin-bottom: 8px;
}
footer {
  background: #10251f;
  padding: 60px 0 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 45px;
}
.footer-logo img {
  width: 170px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}
footer h3 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 15px;
}
footer a,
footer p {
  font-size: 13px;
}
footer a {
  display: block;
  transition: 0.2s;
}
.footer-bottom {
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
}
@media (max-width: 1000px) {
  .nav-menu {
    gap: 15px;
  }
  .nav-actions .btn-outline {
    display: none;
  }
  .about-grid,
  .doctor-grid,
  .hero-content,
  .products-banner {
    grid-template-columns: 1fr;
  }
  .hero-card {
    max-width: 600px;
  }
  .feature-grid,
  .footer-grid,
  .store-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .nav-hidden {
    display: block;
  }

  .nav-actions,
  .nav-menu {
    display: none;
  }
  .container {
    width: min(100% - 28px, 1180px);
  }
  section {
    padding: 65px 0;
  }
  .navbar {
    height: 70px;
  }
  .logo img {
    height: 45px;
  }
  .nav-menu {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 76px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-menu li {
    border-bottom: 1px solid var(--border);
  }
  .nav-menu a {
    display: block;
    padding: 16px;
  }
  .mobile-menu {
    display: block;
  }
  .hero-content {
    min-height: auto;
    padding: 70px 0;
  }
  .hero h1 {
    letter-spacing: -1px;
  }
  .hero-card {
    padding: 20px;
  }
  .contact-grid,
  .feature-grid,
  .footer-grid,
  .store-filters,
  .store-grid,
  .timeline,
  .values-grid {
    grid-template-columns: 1fr;
  }
  .store-image {
    height: 230px;
  }
  .about-image img,
  .doctor-image img {
    height: 300px;
  }
  .products-content {
    padding: 30px;
  }
  .products-content h2 {
    font-size: 30px;
  }
  .footer-bottom {
    flex-direction: column;
  }
}
