/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  /* Colors */
  --primary-color: #1BA3A3;
  --primary-color-dark: #158B8B;
  --primary-color-light: #E6F7F7;
  --secondary-color: #2C5F5F;
  --accent-color: #FF6B6B;
  --text-color: #2C3E50;
  --text-color-light: #7F8C8D;
  --white-color: #FFFFFF;
  --light-color: #F8F9FA;
  --border-color: #E9ECEF;
  --shadow-color: rgba(44, 95, 95, 0.1);
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  
  /* Typography */
  --body-font: 'Poppins', sans-serif;
  --biggest-font-size: 3rem;
  --h1-font-size: 2.5rem;
  --h2-font-size: 2rem;
  --h3-font-size: 1.5rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.75rem;
  
  /* Font Weight */
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;
  
  /* Margins */
  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-25: 1.25rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;
  
  /* Z-index */
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
  
  /* Transitions */
  --transition: all 0.3s ease;
  --transition-fast: all 0.2s ease;
  --transition-slow: all 0.5s ease;
  
  /* Border Radius */
  --border-radius: 0.5rem;
  --border-radius-large: 1rem;
  --border-radius-circle: 50%;
  
  /* Shadows */
  --shadow-light: 0 2px 8px var(--shadow-color);
  --shadow-medium: 0 4px 16px var(--shadow-color);
  --shadow-large: 0 8px 32px var(--shadow-color);
}

/* ===== RESPONSIVE TYPOGRAPHY ===== */
@media screen and (max-width: 992px) {
  :root {
    --biggest-font-size: 2.5rem;
    --h1-font-size: 2rem;
    --h2-font-size: 1.75rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 0.938rem;
    --small-font-size: 0.813rem;
    --smaller-font-size: 0.75rem;
  }
}

/* ===== BASE ===== */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  font-weight: var(--font-regular);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white-color);
}

h1, h2, h3, h4 {
  color: var(--text-color);
  font-weight: var(--font-semi-bold);
  line-height: 1.2;
}

ul {
  list-style: none;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
}

input, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

/* ===== REUSABLE CSS CLASSES ===== */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.section {
  padding: 4rem 0;
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__subtitle {
  display: block;
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--mb-0-5);
}

.section__title {
  font-size: var(--h1-font-size);
  font-weight: var(--font-bold);
  color: var(--text-color);
  line-height: 1.2;
}

.section__title {
  font-size: var(--h2-font-size);
  font-weight: var(--font-bold);
  color: var(--text-color);
  margin-bottom: var(--mb-1);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: var(--primary-color);
  color: var(--white-color);
  font-weight: var(--font-medium);
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: var(--normal-font-size);
  box-shadow: 0 4px 12px rgba(27, 163, 163, 0.3);
}

.btn:hover {
  background: var(--primary-color-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(27, 163, 163, 0.4);
}

.btn--large {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: var(--font-semi-bold);
  box-shadow: 0 6px 20px rgba(27, 163, 163, 0.3);
}

.btn--large:hover {
  box-shadow: 0 10px 30px rgba(27, 163, 163, 0.4);
}

.btn--secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: none;
}

.btn--secondary:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(27, 163, 163, 0.3);
}

.btn--small {
  padding: 0.5rem 1rem;
  font-size: var(--small-font-size);
}

/* ===== HEADER & NAV ===== */
.header {
  width: 100%;
  background: var(--white-color);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  transition: var(--transition);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

.nav {
  height: 4.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo-img {
  height: 40px;
  width: auto;
}

.nav__menu {
  position: relative;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  color: var(--text-color);
  font-weight: var(--font-medium);
  transition: var(--transition);
  position: relative;
}

.nav__link:hover,
.nav__link.active-link {
  color: var(--primary-color);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active-link::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-color);
  font-weight: var(--font-medium);
  transition: var(--transition);
}

.nav__phone:hover {
  color: var(--primary-color);
}

.nav__toggle,
.nav__close {
  display: none;
  font-size: 1.5rem;
  color: var(--text-color);
  cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
  padding-top: 6rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--light-color) 0%, var(--white-color) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: var(--primary-color-light);
  opacity: 0.1;
  border-radius: 0 0 0 100px;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__content {
  animation: fadeInUp 1s ease-out;
}

.hero__title {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-bold);
  margin-bottom: var(--mb-1);
  line-height: 1.1;
}

.hero__title-accent {
  color: var(--primary-color);
  position: relative;
}

.hero__title-accent::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.hero__description {
  font-size: 1.1rem;
  color: var(--text-color-light);
  margin-bottom: var(--mb-2);
  max-width: 500px;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  margin-bottom: var(--mb-2-5);
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  display: block;
  font-size: var(--h3-font-size);
  font-weight: var(--font-bold);
  color: var(--primary-color);
}

.hero__stat-text {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.hero__image {
  position: relative;
  animation: fadeInRight 1s ease-out 0.3s both;
}

.hero__img {
  width: 100%;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-large);
}

.hero__decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-circle);
  opacity: 0.1;
  z-index: -1;
}

/* ===== ABOUT SECTION ===== */
.about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__content {
  animation: fadeInLeft 1s ease-out;
}

.about__text {
  margin-bottom: var(--mb-2);
}

.about__subtitle {
  font-size: var(--h3-font-size);
  color: var(--primary-color);
  margin-bottom: var(--mb-0-75);
}

.about__description {
  color: var(--text-color-light);
  line-height: 1.7;
}

.about__values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.about__value {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.about__value:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.about__value-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color-light);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.about__value-title {
  font-size: 1rem;
  margin-bottom: var(--mb-0-25);
}

.about__value-text {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.about__images {
  position: relative;
  animation: fadeInRight 1s ease-out;
}

.about__img {
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-medium);
}

.about__img--main {
  width: 100%;
}

.about__img--secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 60%;
  border: 5px solid var(--white-color);
}

/* ===== TREATMENTS SECTION ===== */
/* ===== TREATMENTS SECTION ===== */
.treatments {
  background: var(--light-color);
}

.treatments__carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.carousel__container {
  overflow: hidden;
  border-radius: var(--border-radius-large);
}

.carousel__track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.treatment__slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
}

.treatment__card {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  animation: fadeInUp 1s ease-out;
  max-width: 400px;
  width: 100%;
}

.treatment__card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-large);
}

.treatment__image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.treatment__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.treatment__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 163, 163, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.treatment__card:hover .treatment__overlay {
  opacity: 1;
}

.treatment__card:hover .treatment__img {
  transform: scale(1.1);
}

.treatment__content {
  padding: 2rem;
}

.treatment__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1);
  color: var(--text-color);
}

.treatment__description {
  color: var(--text-color-light);
  line-height: 1.6;
}

/* Carousel Navigation */
.carousel__navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
}

.carousel__btn {
  width: 50px;
  height: 50px;
  background: var(--white-color);
  border: none;
  border-radius: var(--border-radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color);
  box-shadow: var(--shadow-medium);
  cursor: pointer;
  transition: var(--transition);
  pointer-events: all;
  z-index: 10;
}

.carousel__btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: scale(1.1);
}

.carousel__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.carousel__btn:disabled:hover {
  background: var(--white-color);
  color: var(--primary-color);
  transform: none;
}

/* Carousel Indicators */
.carousel__indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.carousel__indicator {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: var(--border-radius-circle);
  background: rgba(27, 163, 163, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.carousel__indicator.active,
.carousel__indicator:hover {
  background: var(--primary-color);
  transform: scale(1.2);
}

/* Responsive Carousel */
@media screen and (min-width: 768px) {
  .treatment__slide {
    min-width: 50%;
  }
  
  .carousel__navigation {
    padding: 0 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .treatment__slide {
    min-width: 33.333%;
  }
  
  .carousel__navigation {
    padding: 0 3rem;
  }
}

/* ===== TEAM SECTION ===== */
.team__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.team__card {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  animation: fadeInUp 1s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.team__card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-large);

}

.team__image {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto var(--mb-1-5);
}

.team__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-circle);
  border: 4px solid var(--primary-color-light);
}

.team__social {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  gap: 0.5rem;
}

.team__social-link {
  width: 35px;
  height: 35px;
  background: var(--primary-color);
  color: var(--white-color);
  border-radius: var(--border-radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.team__social-link:hover {
  background: var(--primary-color-dark);
  transform: translateY(-2px);
}

.team__name {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-25);
}

.team__role {
  color: var(--primary-color);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-1);
}

.team__description {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
  line-height: 1.6;
}

/* ===== CONTACT SECTION ===== */
.contact {
  background: var(--light-color);
}

.contact__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1);
}

.contact__description {
  color: var(--text-color-light);
  margin-bottom: var(--mb-2);
  line-height: 1.6;
}

.contact__data {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact__icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white-color);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact__item-title {
  font-size: 1rem;
  margin-bottom: var(--mb-0-25);
  color: var(--text-color);
}

.contact__item-text {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
  line-height: 1.5;
}

.contact__form {
  background: var(--white-color);
  padding: 2rem;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-medium);
}

.contact__form-group {
  margin-bottom: var(--mb-1-5);
}

.contact__label {
  display: block;
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-0-5);
  color: var(--text-color);
}

.contact__input,
.contact__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: var(--normal-font-size);
  transition: var(--transition);
  background: var(--white-color);
}

.contact__input:focus,
.contact__textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(27, 163, 163, 0.1);
}

.contact__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__submit {
  width: 100%;
  justify-content: center;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--secondary-color);
  color: var(--white-color);
  padding: 3rem 0 1rem;
}

.footer__container {
  display: grid;
  gap: 2rem;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer__logo-img {
  height: 40px;
  margin-bottom: var(--mb-1);
  filter: brightness(0) invert(1);
}

.footer__description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 300px;
}

.footer__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1);
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__link {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--white-color);
  padding-left: 0.5rem;
}

.footer__text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--mb-0-25);
}

.footer__social-links {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition);
}

.footer__social-link:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

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

.footer__copy {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--small-font-size);
}

/* ===== FLOATING ELEMENTS ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white-color);
  border-radius: var(--border-radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-large);
  z-index: var(--z-tooltip);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #128C7E;
}

.scrollup {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white-color);
  border-radius: var(--border-radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-medium);
  z-index: var(--z-tooltip);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}

.scrollup.show-scroll {
  opacity: 1;
  visibility: visible;
}

.scrollup:hover {
  background: var(--primary-color-dark);
  transform: translateY(-2px);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Desktop Extra Large */
@media screen and (min-width: 1400px) {
  .container {
    max-width: 95%;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  .hero__container {
    grid-template-columns: 1.3fr 1fr;
    gap: 5rem;
  }
  
  .hero__title {
    font-size: 4rem;
    line-height: 1.1;
  }
  
  .hero__description {
    font-size: 1.3rem;
    max-width: 600px;
  }
  
  .hero__actions {
    gap: 1.5rem;
  }
  
  .btn--large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
  }
}

/* Desktop Large */
@media screen and (min-width: 1200px) {
  .container {
    max-width: 90%;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  .hero__container {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
  }
  
  .hero__title {
    font-size: 3.5rem;
    line-height: 1.1;
  }
  
  .hero__description {
    font-size: 1.2rem;
    max-width: 550px;
    line-height: 1.6;
  }
  
  .hero__stats {
    gap: 3rem;
    margin-top: 1rem;
  }
  
  .hero__stat-number {
    font-size: 2.5rem;
  }
  
  .hero__stat-text {
    font-size: 1rem;
  }
  
  .about__container {
    gap: 4rem;
  }
  
  .section {
    padding: 6rem 0;
  }
  
  .team__container {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* Desktop */
@media screen and (min-width: 992px) {
  .container {
    max-width: 85%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .hero__container,
  .about__container,
  .contact__container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .hero {
    text-align: left;
    padding-top: 8rem;
    padding-bottom: 2rem;
  }
  
  .hero__image {
    order: 2;
  }
  
  .hero__content {
    padding-right: 2rem;
  }
  
  .hero__title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }
  
  .hero__description {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
  }
  
  .hero__actions {
    margin-bottom: 3rem;
  }
  
  .hero__stats {
    gap: 2.5rem;
  }
  
  .hero__stat-number {
    font-size: 2.2rem;
  }
  
  .nav__menu {
    display: flex;
  }
  
  .nav__toggle,
  .nav__close {
    display: none;
  }
  
  .section__title {
    font-size: 2.5rem;
  }
  
  .section__subtitle {
    font-size: 1rem;
  }
  
  .team__container {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .section {
    padding: 5rem 0;
  }
}

/* Tablet */
@media screen and (max-width: 991px) {
  .hero__container,
  .about__container,
  .contact__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero {
    padding-top: 6rem;
    text-align: center;
  }
  
  .hero__image {
    order: -1;
  }
  
  .hero__content {
    padding-right: 0;
  }
}

/* Mobile */
@media screen and (max-width: 768px) {
  .container {
    margin-left: var(--mb-1-5);
    margin-right: var(--mb-1-5);
  }
  
  .section {
    padding: 4rem 0 2rem;
  }
  
  .about__img--secondary {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }
  
  .about__values {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .nav__menu {
    position: fixed;
    background: var(--white-color);
    width: 90%;
    height: 100%;
    top: 0;
    right: -100%;
    box-shadow: var(--shadow-large);
    padding: 6rem 2rem 2rem;
    transition: var(--transition);
  }
  
  .nav__menu.show-menu {
    right: 0;
  }
  
  .nav__list {
    flex-direction: column;
    gap: 2rem;
  }
  
  .nav__close {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
  }
  
  .nav__toggle {
    display: block;
  }
  
  .nav__actions {
    gap: 0.5rem;
  }
  
  .nav__phone {
    display: none;
  }
  
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero__stats {
    justify-content: center;
  }
  
  .treatments__container,
  .team__container {
    grid-template-columns: 1fr;
  }
  
  .footer__content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
  }
  
  .scrollup {
    bottom: 1rem;
    left: 1rem;
    width: 40px;
    height: 40px;
  }
}

@media screen and (max-width: 576px) {
  .container {
    margin-left: var(--mb-1);
    margin-right: var(--mb-1);
  }
  
  .hero__title {
    font-size: var(--h1-font-size);
  }
  
  .hero__actions {
    gap: 0.5rem;
  }
  
  .btn--large {
    padding: 0.75rem 1.5rem;
    font-size: var(--normal-font-size);
  }
  
  .about__value {
    padding: 1rem;
  }
  
  .contact__form {
    padding: 1.5rem;
  }
  
  .treatment__card,
  .team__card {
    margin: 0 1rem;
  }
}



/* ===== GALLERY CAROUSEL ===== */
.about__gallery {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.gallery__main {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: var(--white-color);
}

.gallery__container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.gallery__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__slide.active {
  opacity: 1;
  transform: translateX(0);
}

.gallery__slide.prev {
  transform: translateX(-100%);
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery__slide:hover .gallery__img {
  transform: scale(1.05);
}

.gallery__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white-color);
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery__slide:hover .gallery__overlay {
  transform: translateY(0);
}

.gallery__title {
  font-size: 1.2rem;
  font-weight: var(--font-semi-bold);
  margin-bottom: 0.5rem;
  color: var(--white-color);
}

.gallery__description {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.4;
}

/* Navigation Arrows */
.gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery__nav:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-50%) scale(1.1);
}

.gallery__nav--prev {
  left: 15px;
}

.gallery__nav--next {
  right: 15px;
}

.gallery__nav i {
  font-size: 1.2rem;
}

/* Thumbnails */
.gallery__thumbnails {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery__thumbnails::-webkit-scrollbar {
  display: none;
}

.thumbnail {
  flex-shrink: 0;
  width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

.thumbnail.active {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.thumbnail:hover {
  transform: scale(1.1);
}

.thumbnail__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.thumbnail.active .thumbnail__img {
  filter: brightness(1.1);
}

.thumbnail::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(27, 163, 163, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.thumbnail.active::after {
  opacity: 1;
}

/* Responsive Gallery */
@media screen and (max-width: 768px) {
  .gallery__container {
    height: 300px;
  }
  
  .gallery__nav {
    width: 40px;
    height: 40px;
  }
  
  .gallery__nav--prev {
    left: 10px;
  }
  
  .gallery__nav--next {
    right: 10px;
  }
  
  .gallery__overlay {
    padding: 1.5rem 1rem 1rem;
  }
  
  .gallery__title {
    font-size: 1rem;
  }
  
  .gallery__description {
    font-size: 0.8rem;
  }
  
  .thumbnail {
    width: 60px;
    height: 45px;
  }
}

@media screen and (max-width: 480px) {
  .gallery__thumbnails {
    gap: 0.3rem;
  }
  
  .thumbnail {
    width: 50px;
    height: 38px;
  }
}

.contact__info {
    max-width: 900px;
    margin: 0 auto;
}

.contact__columns {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact__column {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact__item-title {
    margin: 0;
}

.contact__item-text {
    margin: 2px 0;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .contact__columns {
        flex-direction: column;
    }
}
/* ===== AJUSTE FINAL DA SEÇÃO DE CONTATO ===== */

/* tira o grid antigo dessa seção */
.contact__container {
  display: block;
}

/* largura máxima do bloco de contato */
.contact__info {
  max-width: 1100px;
  margin: 0 auto;
}

/* duas colunas lado a lado */
.contact__columns {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: nowrap;              /* não quebra em baixo no desktop */
}

/* cada coluna ocupa metade */
.contact__column {
  flex: 0 0 calc(50% - 1.5rem);   /* ~50% da largura */
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* garante texto alinhado à esquerda */
.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}

.contact__details,
.contact__item-title,
.contact__item-text {
  text-align: left;
}

/* RESPONSIVO: no mobile fica em uma coluna só */
@media (max-width: 768px) {
  .contact__columns {
      flex-direction: column;
      flex-wrap: wrap;
  }

  .contact__column {
      flex: 1 1 100%;
  }
}
