/* ==========================================================================
   Fernando Lisboa — Landing Page (modelo de exemplo)
   ========================================================================== */

:root {
  /* paleta azul / branco / azul-marinho */
  --color-blue: #2F80FF;
  --color-blue-dark: #1A5FDB;
  --color-cyan: #4FD1FF;
  --color-neon: #17E9FF;
  --color-neon-soft: rgba(23, 233, 255, 0.55);
  --color-accent: #FFB020;
  --color-accent-dark: #E69500;
  --color-navy: #0B1F4D;
  --color-navy-2: #050D24;

  --color-white: #FFFFFF;
  --color-bg-alt: #F3F6FC;
  --color-text: #10182B;
  --color-text-muted: #58627A;
  --color-border: #E2E8F5;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container-width: 1180px;
  --radius: 16px;
  --radius-sm: 10px;

  --shadow-sm: 0 2px 10px rgba(11, 31, 77, 0.07);
  --shadow-md: 0 12px 30px rgba(11, 31, 77, 0.14);
  --shadow-lg: 0 20px 50px rgba(11, 31, 77, 0.22);

  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; font-weight: 700; }

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

section.section { padding: 100px 0; position: relative; overflow: hidden; }

.section--alt { background: var(--color-bg-alt); }

.section::before,
.section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.section::before {
  top: -70px;
  right: -70px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(47,128,255,0.16);
  animation: shapeSpin 26s linear infinite;
}

.section::after {
  bottom: -50px;
  left: -50px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(23,233,255,0.18);
  border-radius: 32%;
  animation: shapeSpin 20s linear infinite reverse;
}

@keyframes shapeSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.section > .container { position: relative; z-index: 1; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-blue);
  text-shadow: 0 0 14px rgba(23,233,255,0.4);
  margin-bottom: 14px;
}

.eyebrow--light { color: #9EC5FF; }

.section__head { max-width: 640px; margin-bottom: 56px; }

.section__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 16px;
}

.section__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-neon));
  box-shadow: 0 0 12px rgba(23,233,255,0.7);
}

.section__desc { color: var(--color-text-muted); font-size: 1.05rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-navy-2);
  box-shadow: var(--shadow-md), 0 0 14px rgba(255,176,32,0.55), 0 0 30px rgba(255,176,32,0.3);
}

.btn--primary:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), 0 0 22px rgba(255,176,32,0.85), 0 0 46px rgba(255,176,32,0.5);
}

.btn--outline {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--color-white);
  box-shadow: 0 0 10px rgba(255,255,255,0.25);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(255,255,255,0.55), 0 0 34px rgba(255,255,255,0.25);
}

.btn--sm { padding: 11px 22px; font-size: 0.85rem; }

.btn--neon { animation: neonPulse 2.2s ease-in-out infinite; }

.btn--neon:hover { animation-play-state: paused; }

@keyframes neonPulse {
  0%, 100% { box-shadow: var(--shadow-md), 0 0 14px rgba(255,176,32,0.55), 0 0 30px rgba(255,176,32,0.3); }
  50% { box-shadow: var(--shadow-md), 0 0 30px rgba(255,196,64,1), 0 0 58px rgba(255,176,32,0.7), 0 0 84px rgba(255,176,32,0.3); }
}

/* ==========================================================================
   Header
   ========================================================================== */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--color-navy);
  transition: box-shadow var(--transition), padding var(--transition);
}

.header.is-scrolled { box-shadow: 0 6px 24px rgba(0,0,0,0.25); }

.header::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-neon), var(--color-blue), transparent);
  background-size: 200% 100%;
  opacity: 0.85;
  animation: lineShimmer 5s linear infinite;
}

@keyframes lineShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.header__brand {
  display: flex;
  align-items: center;
  height: 100%;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-white);
  letter-spacing: 0.01em;
}

.header__brand span { color: var(--color-blue); }

.nav { display: flex; align-items: center; gap: 36px; }

.nav__list { display: flex; align-items: center; gap: 30px; }

.nav__link {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-neon));
  box-shadow: 0 0 8px rgba(23,233,255,0.8);
  transition: width var(--transition);
}

.nav__link:hover, .nav__link.is-active { color: var(--color-white); text-shadow: 0 0 10px rgba(23,233,255,0.7); }

.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 78px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--color-navy) 0%, var(--color-navy-2) 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(23,233,255,0.26), transparent 55%),
    radial-gradient(circle at 12% 82%, rgba(47,128,255,0.24), transparent 50%);
  animation: bgPulse 7s ease-in-out infinite;
}

@keyframes bgPulse {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23,233,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,233,255,0.06) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 78%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -35%;
  width: 25%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(23,233,255,0.10), transparent);
  transform: skewX(-18deg);
  animation: heroSweep 6s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes heroSweep {
  0% { left: -35%; }
  55%, 100% { left: 120%; }
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero__particles span {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-neon);
  box-shadow: 0 0 10px 3px rgba(23,233,255,0.85);
  opacity: 0.5;
  animation: particleFloat 6s ease-in-out infinite;
}

.hero__particles span:nth-child(1) { top: 16%; left: 8%; animation-delay: 0s; }
.hero__particles span:nth-child(2) { top: 68%; left: 18%; animation-delay: 1.2s; }
.hero__particles span:nth-child(3) { top: 28%; left: 90%; animation-delay: 0.6s; }
.hero__particles span:nth-child(4) { top: 82%; left: 78%; animation-delay: 2s; }
.hero__particles span:nth-child(5) { top: 46%; left: 52%; animation-delay: 1.6s; }
.hero__particles span:nth-child(6) { top: 10%; left: 58%; animation-delay: 2.6s; }

@keyframes particleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.35; }
  50% { transform: translateY(-24px) scale(1.5); opacity: 1; }
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 40px;
  padding-top: 60px;
  padding-bottom: 80px;
}

.tag {
  display: inline-block;
  background: rgba(47,128,255,0.15);
  border: 1px solid rgba(47,128,255,0.4);
  color: #9EC5FF;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 22px;
  animation: tagPing 2.6s ease-in-out infinite;
}

@keyframes tagPing {
  0%, 100% { box-shadow: 0 0 0 0 rgba(23,233,255,0.45); }
  50% { box-shadow: 0 0 0 8px rgba(23,233,255,0); }
}

.hero__title {
  color: var(--color-white);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.hero__title span {
  background: linear-gradient(90deg, var(--color-blue), var(--color-neon));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(23,233,255,0.5));
}

.hero__subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 34px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 36px;
}

.hero__stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-white);
}

.hero__stat span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero__photo { display: flex; justify-content: center; position: relative; }

.hero__photo::before {
  content: '';
  position: absolute;
  width: min(460px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--color-neon), var(--color-blue), var(--color-cyan), var(--color-neon));
  filter: blur(28px);
  opacity: 0.55;
  animation: haloSpin 8s linear infinite;
}

.hero__photo::after {
  content: '';
  position: absolute;
  width: min(400px, 92%);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px dashed rgba(23,233,255,0.4);
  animation: haloSpin 14s linear infinite reverse;
}

@keyframes haloSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero__photo-img {
  position: relative;
  width: min(420px, 100%);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.08), 0 0 40px rgba(23,233,255,0.35);
  border: 6px solid rgba(255,255,255,0.08);
  animation: heroFloat 5s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 20px;
  z-index: 2;
}

.scroll-indicator span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--color-blue);
  border-radius: 4px;
  animation: scrollDot 1.6s ease infinite;
}

@keyframes scrollDot {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 22px; }
}

/* ==========================================================================
   Sobre / Valores
   ========================================================================== */

.about__bio {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 320px);
  grid-template-areas: "text photo";
  align-items: center;
  gap: 48px;
  margin-bottom: 56px;
}

.about__text-col {
  grid-area: text;
}

.about__text {
  max-width: 820px;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  background: var(--color-bg-alt);
  border-left: 4px solid var(--color-blue);
  padding: 22px 26px;
  border-radius: var(--radius-sm);
  margin-bottom: 0;
}

.about__photo {
  grid-area: photo;
}

.about__photo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--color-navy) 0%, var(--color-navy-2) 100%);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  animation: frameGlow 4s ease-in-out infinite;
}

@keyframes frameGlow {
  0%, 100% { box-shadow: var(--shadow-md), 0 0 0 1px rgba(23,233,255,0.2), 0 0 24px rgba(23,233,255,0.18); }
  50% { box-shadow: var(--shadow-md), 0 0 0 1px rgba(23,233,255,0.45), 0 0 42px rgba(23,233,255,0.4); }
}

.about__photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.value-card:hover .value-card__icon { transform: scale(1.15) rotate(-8deg); background: rgba(47,128,255,0.18); }

.value-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(47,128,255,0.1);
  color: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.4s cubic-bezier(.34,1.56,.64,1), background var(--transition);
  animation: iconGlow 3.4s ease-in-out infinite;
}

@keyframes iconGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(23,233,255,0); }
  50% { box-shadow: 0 0 16px rgba(23,233,255,0.35); }
}

.value-card__icon svg { width: 26px; height: 26px; }

.value-card h3 { font-size: 1.15rem; margin-bottom: 10px; }

.value-card p { color: var(--color-text-muted); font-size: 0.95rem; }

/* ==========================================================================
   Propostas
   ========================================================================== */

.proposals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.proposal-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.proposal-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.proposal-card:hover .proposal-card__icon { transform: scale(1.15) rotate(-8deg); }

.proposal-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--color-navy);
  color: var(--color-neon);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: transform 0.4s cubic-bezier(.34,1.56,.64,1);
  animation: iconGlow 3.4s ease-in-out infinite;
}

.proposal-card__icon svg { width: 27px; height: 27px; }

.proposal-card h3 { font-size: 1.15rem; margin-bottom: 12px; }

.proposal-card p { color: var(--color-text-muted); font-size: 0.95rem; }

.proposals__note {
  margin-top: 40px;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-style: italic;
}

/* ==========================================================================
   Galeria (carrossel horizontal)
   ========================================================================== */

.gallery-track-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.gallery-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: gallerySlide 32s linear infinite;
}

.gallery-track:hover { animation-play-state: paused; }

@keyframes gallerySlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.gallery-slide {
  flex-shrink: 0;
  width: 260px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-slide:hover img { transform: scale(1.08); }

.gallery-slide__ph {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(160deg, var(--color-navy) 0%, var(--color-navy-2) 100%);
  color: rgba(255,255,255,0.4);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.5s ease, color var(--transition);
}

.gallery-slide__ph svg { width: 34px; height: 34px; }

.gallery-slide:hover .gallery-slide__ph { transform: scale(1.06); color: rgba(255,255,255,0.65); }

@media (max-width: 640px) {
  .gallery-slide { width: 180px; }
}

/* ==========================================================================
   CTA / Como Ajudar
   ========================================================================== */

.cta {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background: linear-gradient(160deg, var(--color-navy) 0%, var(--color-navy-2) 100%);
}

.cta__bg {
  position: absolute;
  inset: -20px;
  background:
    radial-gradient(circle at 15% 20%, rgba(23,233,255,0.26), transparent 55%),
    radial-gradient(circle at 85% 85%, rgba(47,128,255,0.24), transparent 50%);
  animation: blobFloat 10s ease-in-out infinite alternate;
}

@keyframes blobFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-24px, 18px) scale(1.06); }
}

.cta__inner { position: relative; z-index: 2; text-align: center; }

.cta__title {
  color: var(--color-white);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin-bottom: 16px;
}

.cta__desc {
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 56px;
  font-size: 1.05rem;
}

.cta__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.cta-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(6px);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform var(--transition), background var(--transition);
}

.cta-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.1); }

.cta-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(47,128,255,0.18);
  color: var(--color-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.cta-card__icon svg { width: 24px; height: 24px; }

.cta-card h3 { color: var(--color-white); font-size: 1.1rem; margin-bottom: 10px; }

.cta-card p { color: rgba(255,255,255,0.7); font-size: 0.92rem; margin-bottom: 16px; }

.cta-card__link {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: opacity var(--transition);
}

.cta-card__link:hover { opacity: 0.8; }

/* ==========================================================================
   Contato
   ========================================================================== */

.contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); background: var(--color-white); }

.contact-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.contact-card__icon svg { width: 22px; height: 22px; }

.contact-card span { display: block; color: var(--color-text-muted); font-size: 0.85rem; margin-bottom: 4px; }

.contact-card strong { display: block; font-size: 1.05rem; margin-bottom: 6px; }

.contact-card em {
  display: block;
  color: var(--color-blue);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 500;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer { background: var(--color-navy-2); color: rgba(255,255,255,0.8); }

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding: 70px 24px 50px;
}

.footer__brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-white);
  margin-bottom: 16px;
}

.footer__brand span { color: var(--color-blue); }

.footer__brand p { font-size: 0.9rem; color: rgba(255,255,255,0.55); max-width: 280px; font-weight: 400; margin-top: 10px; }

.footer h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-blue);
  margin-bottom: 18px;
}

.footer__links { display: flex; flex-direction: column; gap: 12px; }

.footer__links a { font-size: 0.92rem; transition: color var(--transition); }

.footer__links a:hover { color: var(--color-white); }

.footer__social-icons { display: flex; gap: 14px; }

.footer__social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}

.footer__social-icons a svg { width: 18px; height: 18px; }

.footer__social-icons a:hover { background: var(--color-blue); border-color: var(--color-blue); }

.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); }

.footer__bottom .container {
  padding: 22px 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

/* ==========================================================================
   WhatsApp flutuante
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 800;
  transition: transform var(--transition);
}

.whatsapp-float svg { width: 28px; height: 28px; }

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

.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.6);
  animation: ringPulse 2s ease-out infinite;
}

@keyframes ringPulse {
  0% { transform: scale(0.9); opacity: 0.9; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ==========================================================================
   Reveal (scroll animations)
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition: opacity 0.8s cubic-bezier(.16,1,.3,1), transform 0.8s cubic-bezier(.16,1,.3,1);
}

.reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); }

.values .value-card:nth-child(1) { transition-delay: 0s; }
.values .value-card:nth-child(2) { transition-delay: 0.08s; }
.values .value-card:nth-child(3) { transition-delay: 0.16s; }
.values .value-card:nth-child(4) { transition-delay: 0.24s; }

.proposals .proposal-card:nth-child(1) { transition-delay: 0s; }
.proposals .proposal-card:nth-child(2) { transition-delay: 0.06s; }
.proposals .proposal-card:nth-child(3) { transition-delay: 0.12s; }
.proposals .proposal-card:nth-child(4) { transition-delay: 0.18s; }
.proposals .proposal-card:nth-child(5) { transition-delay: 0.24s; }
.proposals .proposal-card:nth-child(6) { transition-delay: 0.3s; }

/* ==========================================================================
   Responsivo
   ========================================================================== */

@media (max-width: 1024px) {
  .values { grid-template-columns: repeat(2, 1fr); }
  .proposals { grid-template-columns: repeat(2, 1fr); }
  .cta__cards { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--color-navy);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 24px 26px;
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
    box-shadow: 0 16px 24px rgba(0,0,0,0.2);
  }

  .nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }

  .nav__list { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }

  .nav__list li { width: 100%; }

  .nav__link { display: block; padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,0.08); }

  .nav__cta { margin-top: 16px; width: 100%; }

  .menu-toggle { display: flex; }

  .hero__inner { grid-template-columns: 1fr; text-align: center; padding-top: 30px; }

  .hero__text { order: 2; }
  .hero__photo { order: 1; }

  .hero__subtitle { margin-left: auto; margin-right: auto; }

  .hero__stats { justify-content: center; }

  .hero__actions { justify-content: center; }

  .hero__photo-img { width: min(280px, 70vw); }
}

@media (max-width: 640px) {
  section.section { padding: 70px 0; }
  .values { grid-template-columns: 1fr; }
  .proposals { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; padding: 56px 24px 40px; }
  .footer__bottom .container { flex-direction: column; text-align: center; padding-bottom: 96px; }
  .about__text { font-size: 0.98rem; padding: 18px 20px; }
  .about__bio { grid-template-columns: 1fr; grid-template-areas: "photo" "text"; gap: 28px; }
  .about__photo { width: 260px; margin: 0 auto; }
}
