/* ============================
   VARIÁVEIS GLOBAIS
   ============================ */
:root {
  --color-primary: #0B4F6C;
  --color-secondary: #2AA58A;
  --color-bg: #F5F7F8;
  --color-white: #FFFFFF;
  --color-text: #2B2B2B;
  --color-text-soft: #5f6d65;
  --color-title: #1f2a24;
  --color-sand: #D6B595;
  --color-border: rgba(0, 0, 0, 0.08);

  --container-width: 1200px;

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 20px 45px rgba(0, 0, 0, 0.10);
  --shadow-hover: 0 18px 40px rgba(0, 0, 0, 0.12);

  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

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

section {
  padding: 100px 20px;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
}

/* ============================
   HEADER
   ============================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-content {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  width: auto;
  height: 60px;
  max-height: 60px;
  object-fit: contain;
}


/* ============================
   MENU
   ============================ */
.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  flex: 1;
}

.nav a {
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.96rem;
  font-weight: 500;
  transition: color var(--transition), opacity var(--transition);
}

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

.hamburger {
  display: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: var(--color-primary);
  transition: transform var(--transition), opacity var(--transition);
}

@media (max-width: 980px) {
  .header-content {
    min-height: 88px;
  }

  .logo img {
    height: 72px;
  }

  .hamburger {
    display: flex;
  }

  .nav {
    display: none;
  }

  #nav-menu.active {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    width: min(320px, calc(100% - 40px));
    background: var(--color-white);
    padding: 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    gap: 16px;
    z-index: 1001;
  }

  #nav-menu.active a {
    width: 100%;
    line-height: 1.4;
  }
}

/* ============================
   HOME / BANNER
   ============================ */
#home {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  padding: 120px 20px;
}

.video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

#home::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 79, 108, 0.55);
  z-index: 1;
}

#home .container {
  position: relative;
  z-index: 2;
}

#home h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--color-white);
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
  max-width: 700px;
}

#home p {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: #f5f5f5;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.40);
  max-width: 650px;
  margin-bottom: 28px;
  font-weight: 500;
}

.btn-whatsapp {
  display: inline-block;
  background: #25D366;
  color: var(--color-white);
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

@media (max-width: 768px) {
  #home {
    min-height: 80vh;
    padding: 110px 20px 80px;
  }

  #home h1,
  #home p {
    max-width: 100%;
  }
}

/* ============================
   TÍTULOS GERAIS
   ============================ */
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--color-primary);
  margin-bottom: 20px;
}

.section-kicker {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.78;
  margin-bottom: 10px;
}

/* ============================
   QUEM SOU
   ============================ */
.about-section {
  padding: 90px 20px;
  background: var(--color-white);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.section-label {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-secondary);
  font-weight: 700;
}

.about-name {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin: 10px 0;
  color: #1f2933;
}

.about-role {
  font-size: 1rem;
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 24px;
}

.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 28px;
  white-space: pre-line;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.about-highlights span {
  font-size: 14px;
  background: #f4f7f6;
  padding: 9px 14px;
  border-radius: 999px;
  color: #1f2933;
}

.about-values-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2933;
  margin-bottom: 16px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 28px;
}

.about-values span {
  font-size: 15px;
  color: #374151;
  position: relative;
  padding-left: 15px;
}

.about-values span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--color-secondary);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
}

.about-section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.about-section.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-highlights {
    justify-content: center;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-values span {
    padding-left: 0;
  }

  .about-values span::before {
    display: none;
  }
}

/* ============================
   PSICOLOGIA
   ============================ */
.psicologia-section {
  position: relative;
  padding: 120px 20px;
  overflow: hidden;
  background: var(--color-white);
}

.psicologia-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/regiane-neuro.jpeg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  z-index: 1;
}

.psicologia-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    270deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.35) 25%,
    rgba(255,255,255,0.75) 50%,
    #ffffff 75%
  );
}

.psicologia-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.psicologia-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #1f2933;
  margin-bottom: 16px;
}

.psicologia-header p {
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #4b5563;
  margin-bottom: 56px;
}

.psicologia-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 920px;
}

.psico-card {
  background: var(--color-white);
  padding: 28px 24px;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition), box-shadow var(--transition), opacity 0.6s ease;
  opacity: 0;
  transform: translateY(20px);
}

.psico-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.psico-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.12);
}

.psico-card .icon {
  display: inline-block;
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.psico-card h3 {
  font-size: 1.08rem;
  color: #111827;
  margin-bottom: 12px;
}

.psico-card p {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .psicologia-cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .psicologia-bg {
    background-position: center top;
    background-size: cover;
  }

  .psicologia-content {
    text-align: center;
  }

  .psicologia-header p {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .psicologia-section {
    padding: 90px 20px;
  }

  .psicologia-cards {
    grid-template-columns: 1fr;
  }
}

/* ============================
   NEUROPSICOLOGIA
   ============================ */
.neuro {
  background: #f8fafb;
}

.neuro-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: center;
  margin-bottom: 34px;
}

.neuro-hero__media img {
  width: 100%;
  max-width: 480px;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-soft);
  margin-left: auto;
}

.section-lead {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.72);
  white-space: pre-line;
}

.neuro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: start;
}

.card.neuro-card {
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.neuro-card .card-title {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1f2933;
}

.neuro-card .card-text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.72);
  margin-bottom: 14px;
  white-space: pre-line;
}

.neuro-list {
  margin: 0 0 18px;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.neuro-list li {
  color: rgba(0,0,0,0.78);
  line-height: 1.6;
}

.neuro-side {
  display: grid;
  gap: 16px;
}

.neuro-steps .steps-title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
  opacity: 0.85;
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(0,0,0,0.02);
  font-size: 13px;
  line-height: 1.2;
  color: rgba(0,0,0,0.78);
}

@media (max-width: 980px) {
  .neuro-hero,
  .neuro-grid {
    grid-template-columns: 1fr;
  }

  .neuro-hero__media img {
    max-width: 100%;
    height: 320px;
  }

  .card.neuro-card {
    padding: 22px;
  }
}

/* ============================
   CONSULTORIA
   ============================ */
.career-section {
  position: relative;
  padding: 100px 20px;
  background: #f8f9f8;
  overflow: hidden;
}

.career-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/consultoria.jpeg") center/cover no-repeat;
  opacity: 0.16;
  pointer-events: none;
}

.career-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.career-header {
  max-width: 650px;
  margin-bottom: 42px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.career-header h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #1f2a24;
  margin-bottom: 16px;
  line-height: 1.25;
}

.career-header p {
  font-size: 16px;
  color: #5f6d65;
  line-height: 1.7;
}

.career-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.career-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 26px 22px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.025),
    0 2px 6px rgba(0, 0, 0, 0.02);
  position: relative;
}

.career-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  border-radius: 20px 20px 0 0;
  opacity: 0.9;
}

.accent-green::before { background: #6b8f7b; }
.accent-blue::before { background: #6f8791; }
.accent-neutral::before { background: #9b9b9b; }
.accent-sand::before { background: #c3b8a6; }

.career-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1f2a24;
  margin-bottom: 8px;
}

.career-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6f7f77;
  margin-bottom: 20px;
  opacity: 0.9;
}

.career-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #4d5a54;
  margin-top: 16px;
  margin-bottom: 8px;
}

.career-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #5f6d65;
}

/* ============================
   DEPOIMENTOS
   ============================ */
.testimonials-section {
  padding: 100px 20px;
  background: #f7f8f6;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-header {
  max-width: 620px;
  margin-bottom: 72px;
}

.testimonials-header h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1f2a24;
  margin-bottom: 12px;
}

.testimonials-header p {
  font-size: 15px;
  color: #5f6d65;
  line-height: 1.6;
}

.testimonial-group {
  margin-bottom: 72px;
}

.testimonial-group h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #2f3a34;
  margin-bottom: 20px;
}

.testimonial-group h3::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: rgba(0, 0, 0, 0.08);
  margin-top: 10px;
  opacity: 0.6;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.testimonial-card {
  background: var(--color-white);
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 4px solid var(--color-secondary);
}

.testimonial-card p {
  font-size: 14px;
  line-height: 1.75;
  color: #4f5c56;
  max-width: 100%;
}

.testimonial-card footer {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: none;
  text-align: left;
}

.testimonial-name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #2f3a34;
}

.testimonial-type {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a867f;
  opacity: 0.78;
  margin-top: 4px;
}

.testimonials-note {
  margin-top: 10px;
  font-size: 12px;
  color: #9aa49f;
  max-width: 520px;
}

.testimonials-note p {
  font-size: 12px;
  color: #9aa49f;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 80px 20px;
  }

  .testimonials-header {
    margin-bottom: 56px;
  }

  .testimonial-group {
    margin-bottom: 56px;
  }

  .testimonial-card {
    min-height: auto;
  }
}

/* ============================
   PALESTRAS CORPORATIVAS
   ============================ */
.corporate-talks {
  position: relative;
  padding: 110px 20px;
  background:
    radial-gradient(circle at top left, rgba(189, 138, 72, 0.10), transparent 25%),
    radial-gradient(circle at bottom right, rgba(25, 52, 92, 0.06), transparent 20%),
    #f3efe9;
  overflow: hidden;
}

.corporate-grid {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 44px;
  align-items: center;
}

.corporate-content {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 18px 60px rgba(23, 30, 41, 0.08);
  border-radius: 34px;
  padding: 48px 42px;
  backdrop-filter: blur(12px);
}

.section-tag {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #bd8a48;
}

.corporate-content h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #19345c;
}

.corporate-content h2 span {
  display: block;
  margin-top: 10px;
  color: #bd8a48;
  font-weight: 500;
}

.section-intro {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #5a6472;
  margin-bottom: 30px;
}

.talks-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.talk-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.talk-item .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(189, 138, 72, 0.10);
  border: 1px solid rgba(189, 138, 72, 0.20);
  color: #bd8a48;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.talk-item p {
  font-size: 1rem;
  line-height: 1.85;
  color: #5a6472;
}

.corporate-gallery-v2 {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  grid-template-rows: auto auto;
  gap: 18px;
  align-items: stretch;
}

.corporate-gallery-v2::before {
  content: "";
  position: absolute;
  right: -20px;
  top: 20px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(189, 138, 72, 0.12), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
}

.gallery-main,
.gallery-portrait,
.gallery-card-wide,
.gallery-card-small {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 10px solid rgba(255,255,255,0.78);
  box-shadow: 0 24px 60px rgba(23, 30, 41, 0.16);
}

.gallery-main img,
.gallery-portrait img,
.gallery-card-wide img,
.gallery-card-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.gallery-main:hover img,
.gallery-portrait:hover img,
.gallery-card-wide:hover img,
.gallery-card-small:hover img {
  transform: scale(1.04);
}

.gallery-main {
  min-height: 430px;
  border-radius: 34px;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  transform: rotate(-1deg);
}

.gallery-portrait {
  min-height: 206px;
  border-radius: 28px;
}

.gallery-card-wide {
  min-height: 245px;
  border-radius: 30px;
  transform: rotate(0.4deg);
}

.gallery-card-small {
  min-height: 245px;
  border-radius: 24px;
}

.gallery-main::after,
.gallery-portrait::after,
.gallery-card-wide::after,
.gallery-card-small::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.18), transparent 42%);
  pointer-events: none;
}

.gallery-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  color: #19345c;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.gallery-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.gallery-side .gallery-portrait:first-child {
  transform: translateY(10px);
}

.gallery-side .gallery-portrait:last-child {
  transform: translateY(-8px);
}

.gallery-bottom {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
}

.gallery-card-small:nth-child(2) {
  transform: translateY(8px);
}

.gallery-card-small:nth-child(3) {
  transform: translateY(-6px);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .corporate-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .corporate-gallery-v2 {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-main {
    min-height: 360px;
  }
}

@media (max-width: 768px) {
  .corporate-talks {
    padding: 80px 16px;
  }

  .corporate-content {
    padding: 34px 24px;
    border-radius: 24px;
  }

  .corporate-content h2 {
    font-size: 2.2rem;
    line-height: 1.02;
  }

  .section-intro {
    font-size: 1rem;
    line-height: 1.8;
  }

  .talk-item {
    grid-template-columns: 36px 1fr;
  }

  .talk-item .icon {
    width: 36px;
    height: 36px;
  }

  .corporate-gallery-v2,
  .gallery-side,
  .gallery-bottom {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .gallery-main,
  .gallery-portrait,
  .gallery-card-wide,
  .gallery-card-small {
    min-height: 240px;
    transform: none !important;
    border-width: 8px;
  }

  .gallery-main {
    min-height: 280px;
  }

  .gallery-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
    text-align: center;
    font-size: 0.74rem;
  }
}

@media (max-width: 480px) {
  .corporate-content h2 {
    font-size: 1.95rem;
  }

  .gallery-main {
    min-height: 240px;
  }

  .gallery-portrait,
  .gallery-card-wide,
  .gallery-card-small {
    min-height: 210px;
  }
}

/* ============================
   CONTATO
   ============================ */
.contact-section {
  padding-bottom: 120px;
  background: #f7f8f6;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-header {
  max-width: 420px;
  margin-bottom: 60px;
}

.contact-header h2 {
  font-size: clamp(2rem, 4vw, 2.4rem);
  font-weight: 700;
  color: #1f2a24;
  margin-bottom: 12px;
}

.contact-header p {
  font-size: 15px;
  color: #5f6d65;
  line-height: 1.6;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: flex-start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 520px;
}

.contact-block h3 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7a867f;
  margin-bottom: 8px;
}

.contact-block p {
  font-size: 15px;
  line-height: 1.7;
  color: #2f3a34;
}

.contact-block strong {
  font-weight: 700;
}

.contact-note {
  margin-top: 12px;
}

.contact-note p {
  font-size: 12px;
  color: #8a958f;
}

.contact-map iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 18px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.04),
    0 2px 6px rgba(0, 0, 0, 0.03);
  filter: grayscale(60%) contrast(0.95) brightness(1.02);
}

@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contact-map iframe {
    height: 300px;
  }
}

/* ============================
   WHATSAPP FLUTUANTE
   ============================ */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 999;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.08);
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  padding: 25px 20px;
  margin-top: 0;
}

.footer p {
  font-size: 0.95rem;
}

/* ============================
   REDES SOCIAIS - ÍCONES
   ============================ */
.social-icons-section {
  padding: 55px 20px 35px;
  background: #ffffff;
}

.social-icons-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.social-icons-container h2 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1f2a24;
  margin-bottom: 24px;
}

.social-icons-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.social-icons-links a {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #f7f8f6;
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: #1f2a24;
  font-size: 1.3rem;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.social-icons-links a:hover {
  transform: translateY(-4px);
  background: #0B4F6C;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(11, 79, 108, 0.22);
}

.social-icons-links a span {
  line-height: 1;
}

@media (max-width: 640px) {
  .social-icons-section {
    padding: 45px 20px 30px;
  }

  .social-icons-links {
    gap: 14px;
  }

  .social-icons-links a {
    width: 52px;
    height: 52px;
    font-size: 1.15rem;
  }
}

.social-icons-section {
  padding: 60px 20px 30px;
  background: #ffffff;
  text-align: center;
}

.social-icons-container h3 {
  font-size: 2rem;
  color: #4f5d75;
  margin-bottom: 30px;
  font-weight: 600;
}

.social-icons-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.social-icons-links a {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #f3f6fa;
  color: #4f5d75;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.7rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.social-icons-links a:hover {
  transform: translateY(-4px);
  background: #5f7fa3;
  color: #ffffff;
}

.social-icons-links i {
  line-height: 1;
}
