
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #f8fdfc;
  color: #0f172a;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.header {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
}
/* MENU RESPONSIVO */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #006a3a;
}
/* MOBILE — OCULTAR TELEFONE E BOTÃO AGENDAR NO MENU */
@media (max-width: 900px) {
  .header-actions {
    display: none !important;
  }
}
/* MOBILE */
@media (max-width: 900px) {
  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: right 0.3s ease;
    z-index: 999;
  }

  .menu.open {
    right: 0;
  }

  .menu a {
    font-size: 22px;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

.menu a {
  margin: 0 12px;
  text-decoration: none;
  color: #334155;
  font-weight: 500;
}
.menu a.active {
  color: #006a3a;
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone {
  font-size: 14px;
}

/* HERO */
.hero {
  padding: 80px 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.badge {
  display: inline-block;
  background: #006a3a;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-text h1 span {
  color: #006a3a;
}

.hero-text p {
  color: #475569;
  max-width: 500px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

/* BUTTONS */
.btn {
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  background: #006a3a;
  color: #fff;
}

.btn-outline {
  border: 2px solid #006a3a;
  color: #006a3a;
  background: transparent;
}

/* VISUAL */
.hero-visual {
  position: relative;
}

.shape {
   width: 100%;
  height: 420px;
  background: #006a3a;
 display: flex; flex-direction: column;
  border-radius: 40px;
  transform: skewX(-6deg);
}
.shapeFoto {
  position: absolute;
  width: 100%;
  height: 400px;
  bottom: 10px;
  background-image:url('img/img2.png');
  background-size: cover;
  border-radius: 40px;
 display: flex; flex-direction: column;
  transform: skewX(2deg);
}


.trust-box {
  position: absolute;
  bottom: 30px;
  left: -40px;
  background: #ffffff;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  font-size: 14px;
}

.trust-box small {
  display: block;
  color: #64748b;
}

/* RESPONSIVO */
@media(max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .trust-box {
    left: 20px;
  }
}

/* 2 SESSAO ESPECIALIDADES SECTION */
.services-section {
  padding: 100px 0;
  background: #ffffff;
  text-align: center;
}

.section-tag {
  display: inline-block;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  color: #006a3a;
  margin-bottom: 15px;
  font-weight: 600;
}

.services-section h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.section-desc {
  max-width: 700px;
  margin: 0 auto 60px;
  color: #475569;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: #f8fdfc;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.service-card h3 {
  margin: 20px 0 10px;
  font-size: 20px;
}

.service-card p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.icon.blue { background: #e0f2fe; }
.icon.purple { background: #f3e8ff; }
.icon.teal { background: #ccfbf1; }
.icon.orange { background: #ffedd5; }

/* RESPONSIVO */
@media(max-width: 768px) {
  .services-section h2 {
    font-size: 32px;
  }
}
/* FIM 2 SESSAO*/

/* 3 SESSAO SOBRE */
.about-section {
  padding: 120px 0;
  background: #f8fdfc;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* IMAGENS */
.about-images {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-images img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: 200px;
}

.experience-box {
  position: absolute;
  bottom: -10px;
  left: 20px;
  background: #006a3a;
  color: #fff;
  padding: 5px 10px 15px 10px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.experience-box strong {
  font-size: 60px;
  display: block;
  font-weight: 800;
}

.experience-box span {
  font-size: 14px;
   font-weight: 600;
}

/* TEXTO */
.about-text h2 {
  font-size: 40px;
  margin: 20px 0;
}

.about-text p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 30px;
}

.about-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
  margin-bottom: 40px;
}

.about-list div {
  display: flex;
  gap: 10px;
  color: #334155;
  font-size: 15px;
}

.about-list span {
  color: #006a3a;
  font-weight: bold;
}

/* RESPONSIVO */
@media(max-width: 900px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .about-images img {
    height: 180px;
  }

  .about-text h2 {
    font-size: 32px;
  }

  .about-list {
    grid-template-columns: 1fr;
  }

  .experience-box {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 20px;
  }
}
/* FIM 3 SESSAO */

/* 4 SESSAO  CTA FINAL */
.cta-final {
  background: linear-gradient(135deg, #006a3a, #1f7951);
  color: #ffffff;
  padding: 120px 20px;
  text-align: center;
}

.cta-content {
  max-width: 900px;
  margin: auto;
}

.cta-final h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-final p {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-light {
  background: #ffffff;
  color: #0f766e;
  padding: 16px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

.btn-outline-light {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 16px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.cta-divider {
  height: 1px;
  background: rgba(255,255,255,0.3);
  margin: 60px 0 30px;
}

.cta-convenios span {
  display: block;
  margin-bottom: 20px;
  opacity: 0.9;
}

.cta-convenios ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 0;
  flex-wrap: wrap;
}

.cta-convenios li {
  font-weight: 500;
  opacity: 0.95;
}

/* RESPONSIVO */
@media(max-width: 768px) {
  .cta-final h2 {
    font-size: 32px;
  }
}
/*FIM 4 SESSAO */


/* 5 SESSAO FOOTER */
.footer {
  background: #013c1f;
  color: #cbd5f5;
  padding-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.6fr;
  gap: 50px;
  padding-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-brand p {
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 30px;
}

.social {
  display: flex;
  gap: 12px;
}

.social a {
  width: 40px;
  height: 40px;
  background: #013c1f;
  border: 2px solid #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #e2e8f0;
  transition: 0.3s;
}

.social a:hover {
  background: #006a3a;
  border-color: #006a3a;
  color: #fff;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-links a {
  display: block;
  text-decoration: none;
  color: #d1f4e4;
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-links a:hover {
  color: #006a3a;
}

.footer-contact p {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a {
  color: #578972;
  margin-left: 20px;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #006a3a;
}

/* RESPONSIVO */
@media(max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    text-align: center;
    flex-direction: column;
  }

  .footer-bottom a {
    margin-left: 0;
  }
}
/*FIM 5 SESSAO FOOTER*/


/** PAGINA CLINCA */
/* PAGE HERO */
.page-hero {
  background: #006a3a;
  padding: 80px 20px;
  text-align: center;
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
  color: #fff;
}

.page-hero p {
  color: #95e8ce;
  max-width: 700px;
  margin: auto;
}

/* CLINIC PAGE */
.clinic-page {
  padding: 100px 0;
}

.clinic-content {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: center;
}

.clinic-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.clinic-text p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 20px;
}

.clinic-list {
  list-style: none;
  padding: 0;
}

.clinic-list li {
  margin-bottom: 10px;
  color: #334155;
}

/* EXPERIÊNCIA */
.experience-big {
  background: #006a3a;
  color: #fff;
  padding: 50px;
  border-radius: 30px;
  text-align: center;
}

.experience-big strong {
  font-size: 56px;
  display: block;
}

.experience-big span {
  font-size: 16px;
  opacity: 0.9;
}

/* GALERIA */
.gallery-section {
  background: #f8fdfc;
  padding: 100px 0;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.gallery-grid img {
  cursor: pointer;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.3s ease;
  
}

#profissional {
  object-position: top;
}
.gallery-grid img:hover {
  transform: scale(1.05);
}
/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 32px;
  color: #ffffff;
  cursor: pointer;
}
/* UX EXTRA - LIGHTBOX */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 48px;
  color: #ffffff;
  cursor: pointer;
  padding: 20px;
  user-select: none;
  opacity: 0.8;
}

.lightbox-nav:hover {
  opacity: 1;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* Animação suave ao trocar imagem */
.lightbox img {
  cursor: zoom-in;
  transition: transform 0.25s ease;
}

.lightbox.zoomed img {
  cursor: zoom-out;
}


/* RESPONSIVO */
@media(max-width: 900px) {
  .clinic-content {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 32px;
  }
}

/* FIM DA PAGINA CLINICA*/

/* PAGINA ESPECIALIDADES */
/* HERO ESPECIALIDADES */
.specialties-hero {
  position: relative;
  height: 420px;
  background: url('img/hero-especialidades.png') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.specialties-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 106, 58, 0.55);
}

.specialties-hero .hero-text {
  position: relative;
  color: #fff;
  max-width: 700px;
}

.specialties-hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
  color: #ffffff;
}

.specialties-hero p {
  font-size: 18px;
  opacity: 0.95;
  color: #013c1f;
}

/* ESPECIALIDADES PROFISSIONAL */
.specialties-section {
  padding: 120px 0;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.specialty-card-pro {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.specialty-card-pro:hover {
  transform: translateY(-8px);
}

.specialty-card-pro img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.specialty-info {
  padding: 30px;
}

.specialty-info h3 {
  color: #006a3a;
  margin-bottom: 10px;
}

.specialty-info p {
  color: #475569;
  line-height: 1.6;
}

/* RESPONSIVO */
@media(max-width: 768px) {
  .specialties-hero h1 {
    font-size: 34px;
  }

  .specialties-hero {
    height: 320px;
  }
}


/* FIM DA PAGINA ESPECIALIDADES*/

/* PAGINA LOCALIZAÇÃO */
/* HERO LOCALIZAÇÃO */



/* CONTEÚDO LOCALIZAÇÃO */
.location-section {
  padding: 120px 0;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.location-info h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.location-info p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 20px;
}

.location-map iframe {
  width: 100%;
  height: 380px;
  border: none;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* RESPONSIVO */
@media(max-width: 900px) {
  .location-content {
    grid-template-columns: 1fr;
  }

  .location-hero h1 {
    font-size: 34px;
  }

  .location-hero {
    height: 300px;
  }
}
/* FIM DA PAGINA LOCALIZAÇÃO */

/* PAGINA CONTATO */
.contact-section {
  padding: 120px 0;
  background: #f8fdfc;
}

.contact-content {
  display: flex;
  justify-content: center;

}

.contact-form {
  background: #ffffff;
  padding: 50px;
  border-radius: 30px;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.form-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.form-icon {
  width: 56px;
  height: 56px;
  background: #67937c;
  color: #006a3a;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.form-header h2 {
  margin-bottom: 5px;
}

.form-header p {
  color: #64748b;
  font-size: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #006a3a;
}

.btn-submit {
  width: 100%;
  background: #05813f;
  color: #ffffff;
  padding: 16px;
  border-radius: 30px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.btn-submit:hover {
  background: #006a3a;
}

/* RESPONSIVO */
@media(max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 30px;
  }
}
