/* =========================================
   BASE
========================================= */
:root {
  --color-bg: #f1f5f9;
  --color-bg-alt: #ecfdf5;
  --color-bg-soft: #e0f2fe;
  --color-surface: #ffffff;
  --color-primary: #0f766e;
  --color-primary-soft: rgba(15, 118, 110, 0.12);
  --color-secondary: #166534;
  --color-secondary-soft: rgba(22, 101, 52, 0.08);
  --color-accent: #22c55e;
  --color-text: #020617;
  --color-muted: #64748b;
  --color-border: #e2e8f0;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.16);
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --nav-height: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

src:url("../fonts/beautique/BeautiqueDisplay-Bold.otf") format("opentype");

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  /*background: radial-gradient(circle at top left, #e0f2fe 0, #f9fafb 35%, #f1f5f9 100%);*/
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

h2{
  font-family: "Poppins";
  font-weight: 400; /* ajuste se quiser outro peso */
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

/* =========================================
   LAYOUT
========================================= */


.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding-block: 5rem;
}

.section-soft {
  /*background: linear-gradient(180deg, #ecfdf5, #eff6ff);*/
}

.section-hero {
  padding-top: 5.2rem;
  /*background: linear-gradient(135deg, #ecfdf5, #e0f2fe);*/
}

.section-profissionais {
  /*background: linear-gradient(180deg, #f9fafb, #ecfdf5);*/
}

.section-agendamento {
  /*background: linear-gradient(180deg, #ecfdf5, #f0fdf4);*/
}

.section-informativos {
  /*background: linear-gradient(180deg, #f0fdf4, #ecfdf5);*/
}

.section-header {
  max-width: 700px;
  margin-bottom: 10px;
}

.section-header p {
  margin: 0;
  color: var(--color-muted);
}

/* Typography */

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  font-size: 0.75rem;
  /*color: var(--color-secondary);*/
  margin-bottom: 0.75rem;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.75rem;
  letter-spacing: -0.03em;
  font-family: "Poppins";
  font-weight: 400; /* ajuste se quiser outro peso */      
  color: #004F74;    
}

h1 {
  font-size: clamp(2.3rem, 2.4vw + 1.8rem, 3.3rem);
  line-height: 1.05;
}

h2 {
  font-size: clamp(0.2rem, 5.2vw + 10.3rem, 2.15rem);
  line-height: 1.1;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.3;
    margin-top: 10px;
}

p {
  line-height: 1.7;
  font-size: 0.98rem;
  color: #004F74;    
}

span {
    color: #004F74; 
}

/* =========================================
   HEADER / NAV
========================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,1.00);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  transition: all 0.3s ease;
}

.logo{
    
    width: 200px;
}

.logoRotape{
    
   /* padding: 10px;*/
    border-radius: 10px;
}

.logoRotape img{
    width: 100%;
    border-radius: 10px;
    background: white;
}
/* Brand Styles */
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo-image {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #22c55e, #0f766e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: var(--color-muted);
}


.verde a:hover {
    background: rgba(32,193,91,1.00);                    
}
.u-ml-tiny {
  margin-left: 4px;
  font-size: 0.7em;
}

/* Botão CTA Desktop */
.nav-cta {
  margin-left: 1.5rem;
  display: inline-flex;
}

/* Oculta setas mobile no desktop */
.arrow-desktop {
  margin-left: auto;
  font-size: 0.7em;
  opacity: 0.5;
}


/* =========================================
   BUTTONS
========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, transform 0.08s ease;
  white-space: nowrap;
}

.btn i {
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
  color: #f9fafb;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.35);
  background: #0f4408;    
}

.btn-primary:hover {
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.45);
  transform: translateY(-1px);
}

.btn-outline {
  border-color: rgba(148, 163, 184, 0.8);
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.85);
}

.btn-outline:hover {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
}

.btn-soft {
  background: var(--color-secondary-soft);
  color: var(--color-secondary);
  border-color: transparent;
}

.btn-soft:hover {
  background: rgba(22, 101, 52, 0.16);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
}

.btn-full {
  width: 100%;
}

/* =========================================
   HERO + CARROSSEL PRINCIPAL
========================================= */

.hero-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 10px;
}

.hero-subtitle {
  max-width: 360px;
  color: var(--color-muted);
  margin: 0;
  font-size: 0.96rem;
}

.carousel {
  position: relative;
}

.carousel-track {
  display: block;
}

.carousel-slide {
  display: none;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.carousel-slide.is-active {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.hero-slide {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 1.6rem 1.8rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.hero-slide-info h2 {
  font-size: 1.45rem;
}

.hero-slide-info p {
  color: var(--color-muted);
}

/* ALTERAÇÃO DA IMAGEM AQUI */
.hero-slide-visual {
  display: flex;
  justify-content: center;
  align-items: center; /* Centraliza verticalmente */
  width: 100%;
  height: 380px; /* ALTURA FIXA DEFINIDA AQUI */
  background-color: transparent; /* Ou coloque uma cor leve se desejar */
  overflow: hidden;
  border-radius: 1.5rem;
}

/* Estilo específico para a tag IMG dentro da div visual */
.hero-slide-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Ajusta a imagem inteira dentro da caixa sem cortar e sem esticar */
  border-radius: 1.5rem;
}

/* Dots do carrossel */

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1rem;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: rgba(15, 23, 42, 0.15);
  cursor: pointer;
  padding: 0;
  transition: width 0.18s ease, background 0.18s ease, transform 0.12s ease;
}

.carousel-dot.is-active {
  width: 22px;
  background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
  transform: translateY(-1px);
}

/* =========================================
   CARROSSEL DOS PROFISSIONAIS
========================================= */

.doctor-slide {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr);
  gap: 2rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 1.7rem 1.8rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.doctor-slide-photos {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.doctor-photo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.photo-circle {
  /*width: 300px;
  height: 300px;*/
  border-radius: 999px;
  background: radial-gradient(circle at top left, #bbf7d0, #22c55e, #0f766e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ecfdf5;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.35);
}

.photo-caption {
  font-size: 0.9rem;
  font-weight: 500;
}

.doctor-slide-text p {
  color: var(--color-muted);
}

/* =========================================
   GRID HELPERS
========================================= */

.grid {
  display: grid;
  gap: 1.8rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* =========================================
   SCHEDULE / AGENDAMENTO
========================================= */

.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.schedule-grid {
  align-items: stretch;
}

.schedule-card h3 {
  margin-bottom: 0.35rem;
}

.schedule-subtitle {
  margin: 0 0 0.7rem;
  font-size: 0.88rem;
  color: var(--color-muted);
}

.schedule-time {
  font-size: 0.92rem;
  margin: 0 0 0.9rem;
}

.schedule-details {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.schedule-details i {
  margin-right: 0.4rem;
  color: var(--color-secondary);
}

.schedule-btn {
  width: 100%;
  justify-content: center;
    margin-bottom: 10px;
}

.schedule-card--highlight {
  background: radial-gradient(circle at top, #bbf7d0, #16a34a, #166534);
  color: #ecfdf5;
  border-color: transparent;
}

.schedule-card--highlight .schedule-subtitle,
.schedule-card--highlight .schedule-time,
.schedule-card--highlight .schedule-details {
  color: #ecfdf5;
}

.schedule-card--highlight .schedule-details i {
  color: #bbf7d0;
}

/* =========================================
   TABS / INFORMATIVOS
========================================= */

.tabs {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.2);
  padding: 1.4rem 1.5rem 1.6rem;
}

.tabs-nav {
  display: inline-flex;
  gap: 0.3rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: #e5f3ea;
  margin-bottom: 1.2rem;
}

.tab-link {
  border: none;
  background: transparent;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #166534;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}

.tab-link.is-active {
  background: #ffffff;
  color: #14532d;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
}

.tabs-panels {
  margin-top: 0.4rem;
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

.tab-panel p {
  color: var(--color-muted);
}

/* =========================================
   PILL LIST
========================================= */

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.7rem;
}

.pill-list li {
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  background: var(--color-primary-soft);
  font-size: 0.8rem;
  color: var(--color-primary);
}

/* =========================================
   ESPECIALIDADES / FOCUS (cards da seção)
========================================= */

.specialty-card {
  padding: 1.4rem 1.4rem 1.3rem;
}

.specialty-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--color-primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
  color: var(--color-primary);
}

.specialty-list {
  margin-top: 0.6rem;
  display: grid;
  gap: 0.25rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* =========================================
   JORNADA
========================================= */

.step-card {
  position: relative;
  padding-top: 2.4rem;
}

.step-card p {
  color: #062344;
}

.step-number {
  position: absolute;
  top: 1rem;
  left: 1.4rem;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--color-secondary-soft);
  color: var(--color-secondary);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* =========================================
   CONSULTÓRIOS
========================================= */

.location-card {
  padding: 1.5rem 1.4rem;
}

.location-header {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: baseline;
  margin-bottom: 0.6rem;
}

.location-tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  font-weight: 600;
}

.location-tag-alt {
  background: rgba(37, 99, 235, 0.12);
  color: #1d4ed8;
}

.location-address {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin: 0.2rem 0 0.5rem;
}

.location-time {
  font-size: 0.9rem;
  margin: 0 0 0.6rem;
}

.location-contact {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin: 0 0 0.8rem;
}

.location-contact span {
  font-weight: 500;
}

/* Nota on-line */

.online-note {
  margin-top: 2.3rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}

.online-note-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--color-secondary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
}

.online-note-body h3 {
  margin-bottom: 0.5rem;
}

/* =========================================
   CONTATO
========================================= */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: flex-start;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.contact-option h3 {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.contact-option i {
  margin-right: 0.35rem;
}

.contact-link {
  font-size: 0.9rem;
  color: var(--color-secondary);
}

.contact-card {
  padding: 1.5rem 1.4rem 1.4rem;
}

.contact-card-sub {
  font-size: 0.88rem;
  color: var(--color-muted);
  margin-top: 0;
}

.contact-form {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group-full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.86rem;
  font-weight: 500;
}

input,
select,
textarea {
  border-radius: 999px;
  border: 1px solid var(--color-border);
  padding: 0.6rem 0.9rem;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.9);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

textarea {
  border-radius: 1rem;
  resize: vertical;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  border-color: #1d4ed8;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.25);
  background: #fff;
}

.form-note {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  color: var(--color-muted);
  margin: 0.2rem 0 0.4rem;
}

.form-feedback {
  grid-column: 1 / -1;
  font-size: 0.86rem;
  margin: 0.4rem 0 0;
}

/* =========================================
   FOOTER
========================================= */
.footer{
     font-weight: 100;
}

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  /*background: radial-gradient(circle at top, #e2f3ff, #e5e7eb 40%, #e2e8f0 100%);*/
  margin-top: 1rem;
 background: #062344;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.4rem;
  padding-block: 2.8rem;
}

.brand-footer {
  margin-bottom: 0rem;
}

.footer-copy {
  font-size: 0.85rem;
  color: #fff;
  max-width: 420px;
}

.footer-column h3 {
  font-size: 14px;
  margin-bottom: 0.7rem;
}

.footer-list {
  margin: 0 0 0.6rem;
  font-size: 14px;
  color: #fff;
     font-weight: 100;
}

.footer-nav {
  display: grid;
  gap: 0.2rem;
  font-size: 14px;
}

.footer-nav a {
  color: #fff;
}

.footer-nav a:hover {
  color: #1d4ed8;
}

.footer-social {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.7rem;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social i {
  font-size: 25px;
    color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  /*padding-block: 0.8rem;*/
  font-size: 14px;
    font-weight: 100;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: center;
    width: max-content;
}

.footer-bottom-inner p{
  
  text-align: center;
}

.footer-top-link {
  color: #1d4ed8;
}
.footer-column h3, p{
    color: #fff;
    font-size: 14px;
    font-weight: 100;
}

/* =========================================
   BACK TO TOP
========================================= */

.back-to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: #0f4408;
  color: #f9fafb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.3);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 45;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* =========================================
   ANIMAÇÕES COM INTERSECTION OBSERVER
========================================= */

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVIDADE
========================================= */

@media (max-width: 960px) {
  .hero-slide {
    grid-template-columns: minmax(0, 1fr);
  }

  .doctor-slide {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  /* Ajuste da altura da imagem no mobile para não ocupar a tela toda */
  .hero-slide-visual {
      height: 250px;
  }
}

@media (max-width: 991px) {
    

  .section {
    padding-block: 3.6rem;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-options {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-bottom-inner {
    flex-direction: column;
    /*align-items: flex-start;*/
  }

  .hero-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 2rem, 768px);
  }

  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid-4 {
    grid-template-columns: minmax(0, 1fr);
  }

  .card {
    border-radius: 20px;
  }

  h1 {
    font-size: clamp(2.1rem, 8vw, 2.45rem);
  }
}

/* Torna o menu de abas rolável horizontalmente (Estilo App/Netflix) */
.tabs-nav {
    display: flex; /* Mudado de inline-flex para flex */
    flex-wrap: nowrap; /* Impede que os botões caiam para a linha de baixo */
    overflow-x: auto; /* Habilita rolagem lateral */
    -webkit-overflow-scrolling: touch; /* Rolagem suave no celular */
    gap: 0.5rem;
    padding-bottom: 10px; /* Espaço para a barra de rolagem não colar */
    max-width: 100%;
    scrollbar-width: thin; /* Barra fina no Firefox */
}

/* Estilização da barra de rolagem (Chrome/Safari/Edge) */
.tabs-nav::-webkit-scrollbar {
    height: 6px;
}
.tabs-nav::-webkit-scrollbar-thumb {
    background-color: rgba(15, 118, 110, 0.2);
    border-radius: 10px;
}

/* Layout do conteúdo com imagem opcional */
.info-layout {
    display: grid;
    gap: 2rem;
    align-items: start;
}

/* Se tiver imagem, divide em 2 colunas: Texto (2 partes) | Imagem (1 parte) */
.info-layout.com-imagem {
    grid-template-columns: 2fr 1fr;
}

/* Se não tiver imagem, 1 coluna apenas */
.info-layout.sem-imagem {
    grid-template-columns: 1fr;
}

.info-img img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Responsivo para celular: Imagem vai para baixo do texto */
@media (max-width: 768px) {
    .info-layout.com-imagem {
        grid-template-columns: 1fr;
    }
    .info-img {
        margin-top: 1rem;
        order: -1; /* Se quiser que a imagem apareça ANTES do texto no mobile, use -1. Se quiser depois, remova essa linha */
    }
}