/* ===========================
   PRADO ENFERMAGEM — STYLESHEET
   =========================== */

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* === PRADO BRAND PALETTE === */
  --red: #E31E24;
  /* logo red  */
  --red-dark: #b81519;
  /* deeper red */
  --red-pale: #fdeaea;
  /* light red tint */
  --blue: #1E8FE1;
  /* logo blue */
  --blue-dark: #0f5fa0;
  /* deeper blue */
  --blue-pale: #e3f2fd;
  /* light blue tint */
  --black: #1A1A1A;
  /* logo black */
  --white: #ffffff;
  --offwhite: #f7f9fb;
  --gray-light: #f0f2f5;
  --gray: #6b7a8d;
  --gray-dark: #3a4557;
  --text: #1A1A1A;
  --shadow-sm: 0 2px 12px rgba(227, 30, 36, 0.07);
  --shadow-md: 0 8px 32px rgba(30, 26, 26, 0.13);
  --shadow-lg: 0 20px 60px rgba(30, 26, 26, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s ease;
  --font-main: 'Outfit', sans-serif;
  --font-serif: 'Lora', serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-main);
  border: none;
}

/* ---------- SECTION COMMONS ---------- */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  background: var(--red-pale);
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--gray);
  font-size: 1.05rem;
  font-weight: 400;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 20px rgba(227, 30, 36, 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(227, 30, 36, 0.5);
}

.btn-primary.full-width {
  width: 100%;
  justify-content: center;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  transition: background var(--transition), color var(--transition);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--blue-mid);
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  transition: transform var(--transition), box-shadow var(--transition);
  position: absolute;
  right: 24px;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 30, 36, 0.40);
}

.btn-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
  transition: gap var(--transition), color var(--transition);
}

.btn-card:hover {
  gap: 12px;
  color: var(--red-dark);
}

/* ---------- NAVBAR ---------- */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

#header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Dedicated Logo Section */
.logo-section {
  background: var(--offwhite);
  padding: 105px 0 20px; /* Space for the fixed navbar, reduced padding to fit larger image */
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-img-grande {
  max-width: 100%;
  height: 290px; /* Big size */
  object-fit: contain;
  animation: fadeUp 0.8s ease both;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.08));
  transition: transform 0.4s ease;
}

.logo-img-grande:hover {
  transform: scale(1.02);
}

/* Adjust navbar to center elements since logo is gone */
.navbar {
  display: flex;
  align-items: center;
  justify-content: center; /* Center the links */
  position: relative; /* Make it a positioning context */
  height: 80px;
}

.nav-links {
  display: flex;
  gap: 6px;
  /* Removed margin-left: auto so it centers properly */
}

.logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  padding: 4px 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.logo:hover .logo-img {
  transform: scale(1.04);
}

/* When header scrolled (white bg), keep same size — only remove bg panel */
#header.scrolled .logo-img {
  background: transparent;
  box-shadow: none;
  padding: 4px 12px;
}

/*  Removed duplicates */

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600; /* Making visually heavier */
  color: #1A1A1A !important; /* Force visibility over any cache */
  padding: 8px 14px;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}

#header.scrolled .nav-links a {
  color: var(--gray-dark);
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--red-pale);
  color: var(--red);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

#header.scrolled .hamburger span {
  background: var(--blue-dark);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(26, 26, 26, 0.90) 0%,
      rgba(30, 26, 26, 0.78) 40%,
      rgba(30, 143, 225, 0.40) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 680px;
  padding-top: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease both;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 22px;
  animation: fadeUp 0.9s ease 0.1s both;
}

.highlight {
  background: linear-gradient(135deg, var(--red), #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.12rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 36px;
  animation: fadeUp 0.9s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeUp 0.9s ease 0.3s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  animation: fadeUp 0.9s ease 0.4s both;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.70);
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.25);
}

/* ---------- SERVIÇOS ---------- */
.servicos {
  background: var(--offwhite);
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.servico-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.servico-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.servico-card.featured {
  border: 2px solid var(--red);
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  border-radius: 50px;
  z-index: 10;
}

.card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.servico-card:hover .card-img-wrap img {
  transform: scale(1.06);
}

.card-badge {
  position: absolute;
  bottom: -20px;
  left: 24px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(227, 30, 36, 0.35);
  z-index: 2;
}

.card-content {
  padding: 40px 28px 28px;
}

.card-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.card-content>p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 0.97rem;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-dark);
}

.card-list li i {
  color: var(--blue);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ---------- SOBRE ---------- */
.sobre {
  background: var(--white);
}

.sobre-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.sobre-visual {
  position: relative;
}

.sobre-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}

.sobre-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.sobre-card-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
  min-width: 200px;
}

.sobre-card-float i {
  font-size: 1.6rem;
  color: var(--red);
}

.sobre-card-float strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
}

.sobre-card-float span {
  font-size: 0.78rem;
  color: var(--gray);
}

.sobre-content .section-tag {
  display: inline-block;
  margin-bottom: 14px;
}

.sobre-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.sobre-content p {
  color: var(--gray);
  margin-bottom: 18px;
}

.sobre-content p strong {
  color: var(--red);
}

.sobre-valores {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 30px 0 34px;
}

.valor-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.valor-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--red-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.1rem;
}

.valor-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
}

.valor-item p {
  color: var(--gray);
  font-size: 0.9rem;
  margin: 0;
}

/* ---------- DIFERENCIAIS ---------- */
.diferenciais {
  background: var(--black);
}

.diferenciais .section-tag {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
}

.diferenciais .section-title {
  color: var(--white);
}

.diferenciais .section-desc {
  color: rgba(255, 255, 255, 0.65);
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.diferencial-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 36px 28px;
  backdrop-filter: blur(6px);
  transition: background var(--transition), transform var(--transition);
  text-align: center;
}

.diferencial-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-6px);
}

.diferencial-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin: 0 auto 22px;
  box-shadow: 0 8px 24px rgba(227, 30, 36, 0.40);
}

.diferencial-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.diferencial-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.93rem;
}

/* ---------- CONTATO ---------- */
.contato {
  background: var(--offwhite);
}

.contato-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contato-info .section-tag {
  display: inline-block;
  margin-bottom: 14px;
}

.contato-info .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.contato-info>p {
  color: var(--gray);
  margin-bottom: 36px;
}


.contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

a.contact-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--white);
}

.contact-icon.whats {
  background: #25d366;
}

.contact-icon.phone {
  background: var(--blue);
}

.contact-icon.email {
  background: var(--red);
}

.contact-icon.hours {
  background: #f0973a;
}

.contact-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
}

.contact-item span {
  font-size: 0.85rem;
  color: var(--gray);
}

/* FORM */
.contato-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}

.contato-form h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-dark);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-main);
  font-size: 0.97rem;
  color: var(--text);
  background: var(--gray-light);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: var(--white);
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--red-pale);
  border-radius: var(--radius-sm);
  color: var(--red-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-success.show {
  display: flex;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.75);
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 64px 24px 48px;
}

.footer-brand p {
  margin: 18px 0 24px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

.footer-brand .logo-name {
  color: var(--white);
}

.footer-brand .logo-sub {
  color: rgba(255, 255, 255, 0.55);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.social-link:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
}

.footer-contact p i {
  color: var(--red);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 22px 24px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--white);
  font-size: 1.7rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  z-index: 900;
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: var(--text);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 14px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity var(--transition), transform var(--transition);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--text);
  border-right: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--white);
  color: var(--blue-mid);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition);
  font-size: 1rem;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--red-pale);
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .sobre-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contato-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {

  .btn-nav,
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px 24px 32px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
  }

  .logo-section {
    padding: 100px 0 20px;
  }
  
  .logo-img-grande {
    height: 140px;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    color: var(--gray-dark);
  }

  .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .servicos-grid {
    grid-template-columns: 1fr;
  }

  .diferenciais-grid {
    grid-template-columns: 1fr;
  }

  .sobre-img-wrap img {
    height: 280px;
  }
  
  .logo-img-grande {
    height: auto;
    width: 90%;
    max-width: 250px;
  }

  .sobre-card-float {
    right: 0;
    bottom: -18px;
  }

  .contato-form {
    padding: 28px 22px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-stats {
    gap: 18px;
  }

  .stat-num {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 64px 0;
  }

  .hero-stats .stat-divider {
    display: none;
  }
}