/* =============================================
   COSANI – Ultra Modern Ocean Theme
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-deep:   #023e8a;
  --blue-mid:    #0077b6;
  --blue-light:  #00b4d8;
  --blue-teal:   #0096c7;
  --blue-pale:   #caf0f8;
  --blue-bg:     #f0f7fc;
  --blue-accent: #48cae4;
  --gold:        #c8a951;
  --gold-light:  #e9c46a;
  --coral:       #e76f51;
  --emerald:     #10b981;
  /* Aliases verde usados inline em vários HTMLs */
  --green-dark:    #047857;
  --green-accent:  #10b981;
  --green-light:   #34d399;
  --green-pale:    #ecfdf5;
  --white:       #ffffff;
  --off-white:   #f8fbff;
  --text-dark:   #0d1b2a;
  --text-mid:    #374151;
  --text-light:  #6b7280;
  --shadow:      0 4px 24px rgba(0,119,182,0.12);
  --shadow-lg:   0 16px 48px rgba(0,119,182,0.18);
  --shadow-glow: 0 0 40px rgba(0,180,216,0.15);
  --radius:      16px;
  --radius-lg:   24px;
  --transition:  0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --gradient-1:  linear-gradient(135deg, #023e8a, #0077b6, #00b4d8);
  --gradient-2:  linear-gradient(135deg, #c8a951, #e9c46a);
  --gradient-3:  linear-gradient(135deg, #10b981, #059669);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

a { color: var(--blue-mid); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ========== SCROLL ANIMATIONS ========== */
[data-anim] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-anim].in-view {
  opacity: 1;
  transform: translateY(0);
}
[data-anim="left"] { transform: translateX(-50px); }
[data-anim="left"].in-view { transform: translateX(0); }
[data-anim="right"] { transform: translateX(50px); }
[data-anim="right"].in-view { transform: translateX(0); }
[data-anim="scale"] { transform: scale(0.85); }
[data-anim="scale"].in-view { transform: scale(1); }
[data-anim="fade"] { transform: none; }
[data-anim="fade"].in-view { transform: none; }
[data-anim="rotate"] { transform: rotate(-3deg) scale(0.95); }
[data-anim="rotate"].in-view { transform: rotate(0deg) scale(1); }

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }
[data-delay="7"] { transition-delay: 0.7s; }
[data-delay="8"] { transition-delay: 0.8s; }

/* ========== NAVBAR ========== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(2,62,138,0.95);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  height: 78px;
  max-width: 1280px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  text-decoration: none;
  line-height: 1.1;
  transition: transform var(--transition);
}
.nav-logo:hover { transform: translateY(-1px); }
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,0.4));
  transition: filter var(--transition);
}
.nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 4px 14px rgba(200,169,81,0.45));
}
.nav-logo-text {
  display: none;
}
@media (max-width: 380px) {
  .nav-logo-img { height: 46px; }
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 8px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -8px); }

.nav-menu {
  display: none;
  position: absolute;
  top: 78px;
  left: 0;
  right: 0;
  background: rgba(2,62,138,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  padding: 0.75rem 0 1.25rem;
  border-top: 2px solid var(--blue-mid);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}
.nav-menu.open { display: flex; animation: navMenuSlide 0.35s cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes navMenuSlide {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-menu a {
  color: rgba(255,255,255,0.9);
  padding: 1rem 1.75rem;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  border-left: 4px solid transparent;
  transition: var(--transition);
}
.nav-menu a:hover,
.nav-menu a.active {
  background: rgba(0,119,182,0.35);
  border-left-color: var(--gold);
  color: var(--gold);
  padding-left: 2rem;
}

@media (min-width: 900px) {
  .hamburger { display: none; }
  .nav-menu {
    display: flex !important;
    position: static;
    flex-direction: row;
    align-items: center;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    gap: 0.15rem;
    backdrop-filter: none;
  }
  .nav-menu a {
    position: relative;
    padding: 0 1rem;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    color: rgba(255,255,255,0.82);
    border-left: none;
    border-bottom: none;
    height: 78px;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
  }
  .nav-menu a::before {
    content: '';
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 20px;
    height: 2.5px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1), right 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    transform: translate(-50%, -140%) scale(0);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
  }
  .nav-menu a:hover {
    background: transparent;
    color: var(--gold);
    padding-left: 1rem;
  }
  .nav-menu a:hover::before {
    left: 1rem;
    right: 1rem;
    box-shadow: 0 2px 10px rgba(200,169,81,0.5);
  }
  .nav-menu a.active {
    background: transparent;
    color: var(--gold);
  }
  .nav-menu a.active::before {
    left: 1rem;
    right: 1rem;
    box-shadow: 0 2px 10px rgba(200,169,81,0.5);
  }
  .nav-menu a.active::after {
    opacity: 1;
    transform: translate(-50%, -190%) scale(1);
  }
}

@media (min-width: 1080px) {
  .nav-menu a { padding: 0 1.15rem; font-size: 0.95rem; }
  .nav-menu a:hover::before,
  .nav-menu a.active::before { left: 1.15rem; right: 1.15rem; }
}

/* ========== HERO (Home) ========== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #0a1628;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.85;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.1); opacity: 0.7; }
  to   { transform: scale(1);   opacity: 0.85; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.05) 40%,
    rgba(0,0,0,0.25) 70%,
    rgba(10,22,40,0.7) 100%
  );
}
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,180,216,0.0) 0%,
    rgba(0,180,216,0.05) 50%,
    rgba(0,180,216,0.0) 100%
  );
  animation: shimmerHero 8s ease-in-out infinite;
}
@keyframes shimmerHero {
  0%,100% { opacity: 0; }
  50%     { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 2rem 1.25rem;
  max-width: 780px;
  animation: fadeInHero 1.2s ease forwards;
}
@keyframes fadeInHero {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-logo {
  display: block;
  margin: 2.5rem auto 0;
  max-width: 200px;
  width: 55vw;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.55));
  opacity: 0;
  animation: fadeInHero 1s 1.2s ease forwards;
}
@media (min-width: 768px) {
  .hero-logo { max-width: 240px; width: auto; margin-top: 3rem; }
}

.hero-tagline {
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: fadeInHero 0.8s 0.3s ease forwards;
}
.hero-title {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 900;
  letter-spacing: 6px;
  line-height: 1;
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  margin-bottom: 0.25rem;
  opacity: 0;
  animation: fadeInHero 0.8s 0.5s ease forwards;
}
.hero-subtitle {
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInHero 0.8s 0.7s ease forwards;
}
.hero-desc {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  line-height: 1.8;
  color: rgba(255,255,255,0.92);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInHero 0.8s 0.9s ease forwards;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.3s;
}
.btn:hover::after { background: rgba(255,255,255,0.1); }
.btn-primary {
  background: var(--blue-mid);
  color: var(--white);
  border-color: var(--blue-mid);
  box-shadow: 0 4px 20px rgba(0,119,182,0.4);
}
.btn-primary:hover {
  background: var(--blue-teal);
  border-color: var(--blue-teal);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,180,216,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-3px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--blue-deep);
  border-color: var(--gold);
  font-size: 1rem;
  padding: 1rem 2.5rem;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(200,169,81,0.4);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #b8943f, var(--gold));
  border-color: #b8943f;
  color: var(--blue-deep);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(200,169,81,0.5);
}
.btn-teal {
  background: var(--blue-light);
  color: var(--white);
  border-color: var(--blue-light);
  box-shadow: 0 4px 15px rgba(0,180,216,0.35);
}
.btn-teal:hover {
  background: var(--blue-teal);
  border-color: var(--blue-teal);
  color: var(--white);
  transform: translateY(-3px);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  opacity: 0;
  animation: fadeInHero 0.8s 1.1s ease forwards;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite 2s;
}
.scroll-indicator::after {
  content: '';
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50%      { transform: scaleY(0.5); opacity: 0.4; }
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ========== STATS BAR ========== */
.stats-bar {
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-teal), var(--blue-light));
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.03) 0px,
    rgba(255,255,255,0.03) 1px,
    transparent 1px,
    transparent 100px
  );
}
.stat-item {
  flex: 1 1 50%;
  text-align: center;
  padding: 1.75rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.stat-item:hover { background: rgba(255,255,255,0.08); }
@media (min-width: 600px) { .stat-item { flex: 1 1 25%; } }
.stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 0.4rem;
}

/* ========== SECTIONS ========== */
.section { padding: 5rem 1.25rem; }
.section-alt { background: var(--blue-bg); }
.section-dark {
  background: var(--blue-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,180,216,0.08), transparent 70%);
  pointer-events: none;
}
.section-ocean {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
  color: var(--white);
}

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

.section-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 0.4rem;
}
.section-dark .section-label,
.section-ocean .section-label { color: var(--gold); }

.section-title {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--blue-deep);
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}
.section-dark .section-title,
.section-ocean .section-title { color: var(--white); }
.section-title span { color: var(--blue-light); }
.section-dark .section-title span { color: var(--blue-accent); }

.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--gold), var(--blue-light));
  border-radius: 2px;
  margin: 0.75rem 0 1.75rem;
}
.divider-center { margin: 0.75rem auto 1.75rem; }

.section-intro {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 680px;
  line-height: 1.85;
}
.section-dark .section-intro,
.section-ocean .section-intro { color: rgba(255,255,255,0.82); }

/* ========== ICON ELEMENTS (replacing emojis) ========== */
.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 auto 1rem;
  position: relative;
  overflow: hidden;
}
.icon-circle::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(255,255,255,0.2);
  transition: opacity 0.3s;
}
.icon-circle:hover::before { opacity: 1; }
.icon-circle svg {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 1;
}
.icon-circle--blue {
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-light));
  color: white;
  box-shadow: 0 4px 16px rgba(0,119,182,0.3);
}
.icon-circle--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--blue-deep);
  box-shadow: 0 4px 16px rgba(200,169,81,0.3);
}
.icon-circle--emerald {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  box-shadow: 0 4px 16px rgba(16,185,129,0.3);
}
.icon-circle--coral {
  background: linear-gradient(135deg, var(--coral), #f4845f);
  color: white;
  box-shadow: 0 4px 16px rgba(231,111,81,0.3);
}
.icon-circle--sm {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}
.icon-circle--sm svg {
  width: 22px;
  height: 22px;
}
.icon-circle--lg {
  width: 72px;
  height: 72px;
  border-radius: 20px;
}
.icon-circle--lg svg {
  width: 36px;
  height: 36px;
}

/* ========== PAGE HERO (interior pages) ========== */
.page-hero {
  position: relative;
  background: var(--blue-deep);
  overflow: hidden;
  min-height: 340px;
}
.page-hero-media {
  width: 100%;
  display: block;
  position: relative;
}
.page-hero-media img {
  width: 100%;
  height: 400px;
  display: block;
  object-fit: cover;
  object-position: center;
  animation: pageHeroZoom 8s ease-out forwards;
}
@keyframes pageHeroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(2,62,138,0.1) 0%,
    rgba(2,62,138,0.3) 50%,
    rgba(2,62,138,0.92) 100%
  );
  pointer-events: none;
}
.page-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1.5rem;
  text-align: center;
  z-index: 2;
  animation: fadeInHero 1s ease forwards;
}
.page-hero-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.page-hero-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 2px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  line-height: 1.1;
}
.page-hero-sub {
  font-size: 0.9rem;
  color: var(--blue-accent);
  margin-top: 0.5rem;
  letter-spacing: 0.5px;
}

@media (min-width: 768px) {
  .page-hero { min-height: 420px; }
  .page-hero-media img { height: 500px; }
}

/* ========== CARDS ========== */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 600px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 600px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(0,119,182,0.06);
  position: relative;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-1);
  opacity: 0;
  transition: opacity var(--transition);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.card:hover::before {
  opacity: 1;
}
.card-body { padding: 1.75rem; }
.card-title { font-size: 1.05rem; font-weight: 700; color: var(--blue-deep); margin-bottom: 0.5rem; }
.card-text { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }

.partner-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.partner-link:hover {
  color: var(--blue-deep);
  border-bottom-color: var(--blue-light);
}

/* Card image hover zoom */
.card > img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.card:hover > img {
  transform: scale(1.06);
}

/* Gradient border card variant */
.card--gradient {
  background: var(--white);
  border: none;
  position: relative;
}
.card--gradient::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 2px;
  background: var(--gradient-1);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}
.card--gradient:hover::after { opacity: 1; }

/* Glass card */
.card--glass {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
}
.card--glass:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}

/* ========== TEAM ========== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 600px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(0,119,182,0.06);
  position: relative;
}
.team-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-2);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.team-card:hover::after { transform: scaleX(1); }
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.team-photo {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.team-card:hover .team-photo { transform: scale(1.06); }
.team-info { padding: 1rem 0.75rem; }
.team-name { font-size: 0.9rem; font-weight: 700; color: var(--blue-deep); margin-bottom: 0.2rem; }
.team-role { font-size: 0.72rem; color: var(--text-light); line-height: 1.3; }

/* Bio card */
.bio-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0,119,182,0.06);
  transition: box-shadow var(--transition), transform var(--transition);
}
.bio-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateX(4px);
}
@media (min-width: 640px) {
  .bio-card { flex-direction: row; }
  .bio-photo { width: 200px; flex-shrink: 0; }
}
.bio-photo img { width: 100%; height: 220px; object-fit: cover; object-position: top; }
@media (min-width: 640px) { .bio-photo img { height: 100%; min-height: 200px; } }
.bio-body { padding: 1.5rem; }
.bio-name { font-size: 1.2rem; font-weight: 800; color: var(--blue-deep); margin-bottom: 0.2rem; }
.bio-role { font-size: 0.75rem; color: var(--gold); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.75rem; }
.bio-text { font-size: 0.87rem; color: var(--text-mid); line-height: 1.8; }

/* ========== CAROUSEL ========== */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--blue-deep);
  box-shadow: var(--shadow-lg);
}
.carousel-track { display: flex; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.carousel-slide { min-width: 100%; }
.carousel-slide img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(2,62,138,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2;
}
.carousel-btn:hover {
  background: var(--blue-mid);
  border-color: var(--blue-light);
  transform: translateY(-50%) scale(1.1);
}
.carousel-btn.prev { left: 14px; }
.carousel-btn.next { right: 14px; }
.carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.carousel-dot.active {
  background: var(--white);
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(255,255,255,0.5);
}

/* ========== GALLERY TABS (Niterói em Imagens) ========== */
.gallery-tabs {
  display: flex;
  width: fit-content;
  gap: 0.4rem;
  margin: 0 auto 1.5rem;
  background: var(--white);
  border: 1px solid #e2e8f0;
  padding: 0.35rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}
.gallery-tab {
  border: none;
  background: transparent;
  padding: 0.55rem 1.25rem;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-mid);
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.gallery-tab:hover {
  color: var(--blue-deep);
}
.gallery-tab.active {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
  color: #fff;
  box-shadow: 0 4px 14px rgba(2,62,138,0.3);
}
.gallery-panel.hidden {
  display: none;
}

/* ========== OBJECTIVE LIST ========== */
.obj-list { display: flex; flex-direction: column; gap: 0.65rem; margin-top: 1rem; }
.obj-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--white);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: 0 2px 10px rgba(0,119,182,0.06);
  border-left: 3px solid var(--blue-light);
  transition: var(--transition);
}
.obj-item:hover {
  transform: translateX(6px);
  box-shadow: 0 6px 20px rgba(0,119,182,0.12);
  border-left-color: var(--blue-mid);
}
.obj-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.82rem;
  font-weight: 800;
}
.obj-text { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; padding-top: 4px; }

/* ========== PROJETOS ========== */
.projeto-category { margin-bottom: 2.5rem; }
.projeto-category-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--blue-deep);
  border-left: 4px solid var(--gold);
  padding-left: 0.75rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.projeto-category-title .cat-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.projeto-category-title .cat-icon svg {
  width: 18px;
  height: 18px;
}
.projeto-item {
  background: var(--white);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 10px rgba(0,119,182,0.06);
  border-left: 3px solid var(--blue-light);
  transition: var(--transition);
}
.projeto-item:hover {
  transform: translateX(6px);
  box-shadow: 0 6px 24px rgba(0,119,182,0.12);
  border-left-color: var(--blue-mid);
}
.projeto-item h4 { font-size: 0.95rem; color: var(--blue-deep); margin-bottom: 0.3rem; font-weight: 700; }
.projeto-item p { font-size: 0.84rem; color: var(--text-mid); line-height: 1.7; }
.status-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 0.5rem;
}
.badge-active   { background: #e0f2fe; color: var(--blue-mid); }
.badge-progress { background: #fff8e1; color: #f57f17; }
.badge-considering { background: #f0f4ff; color: #3730a3; }

/* ========== SPONSORS ========== */
.sponsor-group { margin-bottom: 2.5rem; }
.sponsor-group-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--blue-deep);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--blue-bg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sponsor-list { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.sponsor-tag {
  background: var(--white);
  border: 2px solid var(--blue-accent);
  color: var(--blue-deep);
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}
.sponsor-tag:hover {
  background: var(--blue-mid);
  color: var(--white);
  border-color: var(--blue-mid);
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0,119,182,0.25);
}

/* ========== LINKS ========== */
.links-category { margin-bottom: 2.5rem; }
.links-category-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(0,62,138,0.25);
}
.links-list { display: flex; flex-direction: column; gap: 0.4rem; }
.links-list a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  background: var(--white);
  border-radius: 10px;
  font-size: 0.86rem;
  color: var(--blue-deep);
  border-left: 3px solid var(--blue-accent);
  box-shadow: 0 1px 6px rgba(0,119,182,0.05);
  transition: var(--transition);
}
.links-list a:hover {
  background: var(--blue-deep);
  color: var(--white);
  border-left-color: var(--gold);
  transform: translateX(8px);
  box-shadow: 0 4px 20px rgba(0,62,138,0.2);
}
.links-list a::before { content: '\2192'; font-size: 0.75rem; opacity: 0.4; transition: opacity var(--transition); }
.links-list a:hover::before { opacity: 1; }

/* ========== NEWS ========== */
.news-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .news-grid { grid-template-columns: repeat(3, 1fr); } }

.news-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(0,119,182,0.06);
}
.news-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.news-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.news-card:hover .news-img { transform: scale(1.06); }
.news-body { padding: 1.5rem; }
.news-tag { font-size: 0.65rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue-mid); margin-bottom: 0.4rem; }
.news-title { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; line-height: 1.4; }
.news-excerpt { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 0.75rem; }
.news-meta { font-size: 0.72rem; color: var(--text-light); }
.news-placeholder {
  background: var(--blue-bg);
  border: 2px dashed var(--blue-accent);
  border-radius: var(--radius);
  padding: 3rem 1.5rem;
  text-align: center;
}
.news-placeholder h3 { color: var(--blue-deep); margin-bottom: 0.5rem; }
.news-placeholder p { font-size: 0.88rem; color: var(--text-mid); }

/* ========== MEMBRO ========== */
.membro-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
@media (min-width: 600px) { .membro-benefits { grid-template-columns: repeat(2, 1fr); } }
.benefit-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: var(--transition);
}
.benefit-item:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.25);
}
.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
}
.benefit-icon svg {
  width: 26px;
  height: 26px;
  fill: white;
}
.benefit-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.3rem; }
.benefit-desc { font-size: 0.82rem; opacity: 0.85; line-height: 1.5; }

.mou-box {
  background: var(--blue-bg);
  border: 2px solid var(--blue-accent);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin: 2rem auto;
  max-width: 520px;
  transition: var(--transition);
}
.mou-box:hover {
  box-shadow: 0 8px 32px rgba(0,119,182,0.15);
  transform: translateY(-3px);
}
.mou-box h3 { color: var(--blue-deep); margin-bottom: 0.5rem; }
.mou-box p { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 1.25rem; line-height: 1.7; }

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,62,138,0.25);
}
.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: white;
}
.contact-detail h4 { font-size: 0.72rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.2rem; }
.contact-detail p, .contact-detail a { font-size: 0.95rem; color: var(--text-dark); }
.contact-detail a:hover { color: var(--blue-mid); }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.3rem; }
.form-label { font-size: 0.82rem; font-weight: 600; color: var(--text-mid); }
.form-input, .form-textarea, .form-select {
  border: 2px solid #e0e7ef;
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  background: var(--white);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 4px rgba(0,119,182,0.1);
}
.form-textarea { min-height: 140px; resize: vertical; }

/* ========== HIGHLIGHT BOX ========== */
.highlight-box {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.highlight-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: rgba(0,180,216,0.12);
  border-radius: 50%;
  pointer-events: none;
}
.highlight-box::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 200px;
  height: 200px;
  background: rgba(200,169,81,0.08);
  border-radius: 50%;
  pointer-events: none;
}
.highlight-box h3 { font-size: 1.4rem; margin-bottom: 0.75rem; position: relative; }
.highlight-box p { font-size: 0.92rem; opacity: 0.88; margin-bottom: 1.5rem; position: relative; }

/* ========== PARALLAX BANNER ========== */
.parallax-banner {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.parallax-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.1s linear;
}
.parallax-banner .banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2,62,138,0.6), rgba(0,119,182,0.4));
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax-banner .banner-content {
  text-align: center;
  color: #fff;
  padding: 1rem;
}
.parallax-banner .banner-content h2 {
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  font-weight: 900;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.parallax-banner .banner-label {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* ========== FOOTER ========== */
footer {
  position: relative;
  color: var(--white);
  overflow: hidden;
}
.footer-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: url('https://firebasestorage.googleapis.com/v0/b/cosanibrasil.firebasestorage.app/o/atualizar%2Fcontatoimagem2.jpg?alt=media&token=bf6903cb-c8cd-4716-ab8b-587834c5974e');
}
.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(1, 28, 65, 0.94);
}
.footer-content {
  position: relative;
  z-index: 1;
  padding: 4rem 1.25rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 600px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.8fr 1fr 1fr 1fr; } }

.footer-brand-logo {
  display: block;
  max-width: 220px;
  width: 80%;
  height: auto;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.55)) drop-shadow(0 0 18px rgba(200,169,81,0.18));
  transition: transform var(--transition), filter var(--transition);
}
.footer-brand-logo:hover {
  transform: translateY(-2px) scale(1.02);
  filter: drop-shadow(0 10px 28px rgba(0,0,0,0.6)) drop-shadow(0 0 22px rgba(200,169,81,0.32));
}
.footer-brand .logo-main,
.footer-brand .logo-sub { display: none; }
.footer-brand p { font-size: 0.86rem; color: rgba(255,255,255,0.7); line-height: 1.75; }
@media (min-width: 900px) {
  .footer-brand-logo { max-width: 240px; width: 100%; }
}

.footer-credit {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}
.footer-credit a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}
.footer-credit a:hover { color: var(--gold-light); text-decoration: underline; }
.footer-bottom { flex-direction: column; text-align: center; }
@media (min-width: 600px) { .footer-bottom { flex-direction: row; text-align: left; } }

.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--blue-mid); border-color: var(--blue-mid); color: var(--white); transform: translateY(-2px); }

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.45rem; }
.footer-col ul a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition), transform var(--transition);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.footer-col ul a:hover { color: var(--white); transform: translateX(3px); }
.footer-col ul a::before { content: '\203A'; color: var(--blue-accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }

/* ========== BREADCRUMB ========== */
.breadcrumb {
  padding: 0.7rem 1.25rem;
  background: var(--blue-bg);
  font-size: 0.78rem;
  color: var(--text-light);
  border-bottom: 1px solid rgba(0,119,182,0.06);
}
.breadcrumb a { color: var(--blue-mid); }
.breadcrumb span { margin: 0 0.35rem; }

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }

/* ========== MISC ========== */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

.img-caption { font-size: 0.75rem; color: var(--text-light); text-align: center; margin-top: 0.4rem; font-style: italic; }

/* Wave divider */
.wave-divider {
  overflow: hidden;
  line-height: 0;
  margin-bottom: -1px;
}
.wave-divider svg { display: block; width: 100%; }

/* Glass card */
.glass-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 1.5rem;
}

/* Success/error alerts */
.alert {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.alert-success { background: #e0f2fe; color: var(--blue-deep); border: 1px solid var(--blue-accent); }
.alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.contact-success {
  display: block;
  line-height: 1.7;
  padding: 1.25rem 1.5rem;
}
.contact-success-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 0.75rem;
}

/* ========== RESPONSIVE HELPERS ========== */
@media (min-width: 768px) {
  .grid-2-desktop { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 6rem 1.5rem; }
}

/* ========== FLOATING SHAPES (decoration) ========== */
.deco-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.04;
}
.deco-shape--1 {
  width: 300px;
  height: 300px;
  background: var(--blue-light);
  top: -150px;
  right: -100px;
}
.deco-shape--2 {
  width: 200px;
  height: 200px;
  background: var(--gold);
  bottom: -100px;
  left: -50px;
}

/* ========== SMOOTH STAGGER GRID ========== */
.stagger-grid > *:nth-child(1) { transition-delay: 0s; }
.stagger-grid > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-grid > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-grid > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-grid > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-grid > *:nth-child(6) { transition-delay: 0.5s; }

/* Directors box */
.directors-box {
  margin-top: 2rem;
  background: var(--blue-bg);
  border-radius: 14px;
  padding: 1.5rem;
  border: 1px solid rgba(0,119,182,0.08);
}
.directors-box h4 {
  color: var(--blue-deep);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.directors-box ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.directors-box li {
  font-size: 0.88rem;
  color: var(--text-mid);
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.directors-box li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-light);
  flex-shrink: 0;
}
