/* ===== VARIABLES ===== */
:root {
  --navy: #1A2C58;
  --navy-dark: #0F1C3A;
  --navy-mid: #223370;
  --gold: #C8A840;
  --gold-light: #E0C05A;
  --gold-pale: #F5EAC0;
  --white: #FFFFFF;
  --off-white: #FAF7F2;
  --light-gray: #F0EDE7;
  --text-dark: #1A1A2E;
  --text-muted: #6B7280;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 12px rgba(26,44,88,0.10);
  --shadow-md: 0 8px 32px rgba(26,44,88,0.15);
  --shadow-lg: 0 20px 60px rgba(26,44,88,0.22);
}

/* ===== GLOBAL ===== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; }

a { text-decoration: none; transition: var(--transition); }

.section-py { padding: 90px 0; }
.section-py-sm { padding: 60px 0; }

/* ===== TYPOGRAPHY ===== */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-title.light { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.section-subtitle.light { color: rgba(255,255,255,0.75); }

/* Gold divider */
.gold-divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 1rem auto 1.6rem;
}
.gold-divider.left { margin-left: 0; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: var(--transition);
  background: transparent;
}

#navbar.scrolled {
  padding: 0.75rem 0;
  background: var(--navy-dark);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

#navbar .navbar-brand img {
  height: 150px;
  transition: var(--transition);
}

#navbar.scrolled .navbar-brand img {
  height: 60px;
}

#navbar .nav-link {
  color: rgba(255,255,255,0.88) !important;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.5rem 0.85rem !important;
  position: relative;
}

#navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

#navbar .nav-link:hover::after,
#navbar .nav-link.active::after {
  left: 0.85rem; right: 0.85rem;
}

#navbar .nav-link:hover { color: var(--gold) !important; }

.btn-nav-cta {
  background: var(--gold);
  color: var(--navy-dark) !important;
  font-weight: 600;
  font-size: 0.83rem;
  letter-spacing: 0.05em;
  padding: 0.55rem 1.4rem !important;
  border-radius: 50px;
  border: 2px solid var(--gold);
  transition: var(--transition);
}

.btn-nav-cta:hover {
  background: transparent !important;
  color: var(--gold) !important;
  border-color: var(--gold);
}

.btn-nav-cta::after { display: none !important; }

.navbar-toggler {
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 6px;
  padding: 0.35rem 0.6rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(200,168,64,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(26,44,88,0.8) 0%, transparent 70%),
    linear-gradient(135deg, #0D1A35 0%, #1A2C58 50%, #223370 100%);
}

/* Decorative circles */
.hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200,168,64,0.18);
  animation: rotateCircle 30s linear infinite;
}
.hero-circle-1 {
  width: 500px; height: 500px;
  top: -120px; right: -80px;
  animation-duration: 40s;
}
.hero-circle-2 {
  width: 320px; height: 320px;
  top: 30px; right: 40px;
  animation-duration: 25s;
  animation-direction: reverse;
  border-color: rgba(200,168,64,0.10);
}
.hero-circle-3 {
  width: 180px; height: 180px;
  top: 110px; right: 160px;
  animation-duration: 20s;
  border-color: rgba(200,168,64,0.22);
}

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

/* Gold particle dots */
.hero-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
  animation: float 6s ease-in-out infinite;
}
.hero-dot:nth-child(1) { width:5px;height:5px; top:20%;left:15%; animation-delay:0s; }
.hero-dot:nth-child(2) { width:3px;height:3px; top:65%;left:8%; animation-delay:1.5s; }
.hero-dot:nth-child(3) { width:6px;height:6px; top:40%;left:25%; animation-delay:3s; opacity:.25; }
.hero-dot:nth-child(4) { width:4px;height:4px; top:78%;left:40%; animation-delay:0.8s; }
.hero-dot:nth-child(5) { width:3px;height:3px; top:15%;left:55%; animation-delay:2.2s; }

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

.hero-content { position: relative; z-index: 2; padding: 120px 0 80px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200,168,64,0.12);
  border: 1px solid rgba(200,168,64,0.35);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.6rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-title .highlight {
  color: var(--gold);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 2.4rem;
  line-height: 1.75;
}

.btn-hero-primary {
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  border: 2px solid var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(200,168,64,0.30);
}

.btn-hero-primary:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(200,168,64,0.25);
}

.btn-hero-secondary {
  background: transparent;
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition);
}

.btn-hero-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-phone-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-phone-img {
  width: 100%;
  max-width: 360px;
  border-radius: 20px;
  object-fit: cover;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,0.5));
  animation: floatPhone 5s ease-in-out infinite;
}

@keyframes floatPhone {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50% { transform: translateY(-16px) rotate(-2deg); }
}

.hero-phone-badge {
  position: absolute;
  bottom: 24px;
  left: 0;
  background: var(--white);
  border-radius: 14px;
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 210px;
  animation: floatBadge 4s ease-in-out 1s infinite;
}

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

.hero-phone-badge .badge-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero-phone-badge .badge-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.hero-phone-badge .badge-text span {
  font-size: 0.73rem;
  color: var(--text-muted);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 22px; height: 34px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 5px;
}

.scroll-dot {
  width: 4px; height: 7px;
  background: var(--gold);
  border-radius: 3px;
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

/* ===== STATS BAR ===== */
#stats {
  background: var(--navy);
  padding: 36px 0;
}

.stat-item {
  text-align: center;
  padding: 0.5rem 1rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.60);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.3rem;
  display: block;
}

.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.12);
  align-self: stretch;
  margin: 0 1rem;
}

/* ===== SOBRE ===== */
#sobre { background: var(--off-white); }

.sobre-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.sobre-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.sobre-feature:last-child { border-bottom: none; }

.sobre-feature-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.sobre-feature h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.sobre-feature p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.sobre-img-wrap {
  position: relative;
}

.sobre-img-main {
  border-radius: 20px;
  object-fit: cover;
  width: 100%;
  max-height: 460px;
  box-shadow: var(--shadow-lg);
}

.sobre-img-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 140px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}

.sobre-img-badge {
  position: absolute;
  top: 20px;
  right: -16px;
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  min-width: 100px;
}

.sobre-img-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: var(--gold);
  line-height: 1;
}

.sobre-img-badge span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.3;
  display: block;
}

/* ===== COMO FUNCIONA ===== */
#como-funciona { background: var(--white); }

.step-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(26,44,88,0.09);
  border-radius: 20px;
  padding: 2rem 1.8rem;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.step-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}

.step-card:hover::before { transform: scaleX(1); }

.step-number {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(26,44,88,0.05);
  line-height: 1;
  user-select: none;
}

.step-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
  color: var(--gold);
  font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(26,44,88,0.25);
  transition: var(--transition);
}

.step-card:hover .step-icon {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy-dark);
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(200,168,64,0.35);
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.step-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 35px;
  color: var(--gold);
  opacity: 0.5;
  font-size: 1.1rem;
}

/* ===== MODELOS ===== */
#modelos {
  background: linear-gradient(160deg, var(--navy-dark) 0%, #1A2C58 60%, #1e3060 100%);
  position: relative;
  overflow: hidden;
}

#modelos::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(200,168,64,0.07) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(200,168,64,0.05) 0%, transparent 50%);
}

.modelo-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  height: 100%;
}

.modelo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
  border-color: rgba(200,168,64,0.4);
}

.modelo-img-wrap {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  aspect-ratio: 3/4;
}

.modelo-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.modelo-card:hover .modelo-img-wrap img {
  transform: scale(1.06);
}

.modelo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(10,18,40,0.9) 0%, transparent 100%);
}

.modelo-color-dot {
  position: absolute;
  top: 16px; right: 16px;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,0.6);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.modelo-info {
  padding: 1.3rem 1.5rem;
}

.modelo-info h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.modelo-info p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.modelo-badge {
  display: inline-block;
  background: rgba(200,168,64,0.15);
  border: 1px solid rgba(200,168,64,0.3);
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.22rem 0.7rem;
  border-radius: 50px;
  margin-top: 0.5rem;
}

/* ===== EVENTOS ===== */
#eventos { background: var(--off-white); }

.evento-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

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

.evento-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

.evento-card:hover .evento-img-bg {
  transform: scale(1.05);
}

.evento-img-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, rgba(26,44,88,0.35) 0%, rgba(0,0,0,0.45) 100%);
}

.evento-img-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}

.evento-body {
  padding: 1.6rem 1.5rem;
}

.evento-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.evento-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.evento-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--gold-pale);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  margin-right: 0.3rem;
  margin-bottom: 0.3rem;
}

/* ===== DEPOIMENTOS ===== */
#depoimentos {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

.depoimento-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  transition: var(--transition);
}

.depoimento-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(200,168,64,0.3);
  transform: translateY(-4px);
}

.depoimento-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.2rem;
}

.depoimento-text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.80);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 1.4rem;
  position: relative;
}

.depoimento-text::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  line-height: 1;
}

.depoimento-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.depoimento-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.depoimento-author-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 600;
}

.depoimento-author-info span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

/* ===== CONTACT ===== */
#contato { background: var(--white); }

.contact-info-card {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.contact-info-item:last-child { margin-bottom: 0; }

.contact-info-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(200,168,64,0.15);
  border: 1px solid rgba(200,168,64,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.contact-info-text a,
.contact-info-text span {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
  display: block;
}

.contact-info-text a:hover { color: var(--gold); }

.contact-social {
  margin-top: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-social span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.8rem;
}

.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-right: 0.5rem;
  transition: var(--transition);
}

.social-icon-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(26,44,88,0.07);
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.form-control, .form-select {
  border: 1.5px solid rgba(26,44,88,0.13);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition);
  background: var(--off-white);
}

.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,168,64,0.15);
  background: var(--white);
  outline: none;
}

.form-control::placeholder { color: #aab0bc; }

textarea.form-control { resize: none; }

.btn-submit {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  padding: 0.9rem 2.4rem;
  border-radius: 50px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(26,44,88,0.25);
  width: 100%;
  justify-content: center;
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(200,168,64,0.35);
}

.form-feedback {
  border-radius: 10px;
  padding: 0.9rem 1.2rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 1rem;
  display: none;
}

.form-feedback.success {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: #15803d;
}

.form-feedback.error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #b91c1c;
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy-dark);
  padding: 56px 0 28px;
}

.footer-logo img {
  height: 50px;
  opacity: 0.9;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.7rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.footer-links { list-style: none; padding: 0; margin: 0; }

.footer-links li { margin-bottom: 0.55rem; }

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-copy a { color: var(--gold); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #25D366;
  color: var(--white);
  border-radius: 50px;
  padding: 0.75rem 1.3rem;
  box-shadow: 0 8px 28px rgba(37,211,102,0.40);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
  max-width: 200px;
  overflow: hidden;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(37,211,102,0.50);
}

.whatsapp-float .wf-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.whatsapp-float .wf-text {
  white-space: nowrap;
  font-size: 0.83rem;
}

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed;
  bottom: 90px;
  right: 32px;
  z-index: 998;
  width: 40px; height: 40px;
  background: var(--navy);
  border: 1.5px solid rgba(200,168,64,0.35);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}

.back-top.show {
  opacity: 1;
  pointer-events: all;
}

.back-top:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-3px);
}

/* ===== UTILITIES ===== */
.text-gold { color: var(--gold) !important; }
.bg-navy { background-color: var(--navy) !important; }
.border-gold { border-color: var(--gold) !important; }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.fade-in.visible { opacity: 1; }

/* Stagger delays */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .section-py { padding: 70px 0; }
  .hero-phone-wrap { margin-top: 3rem; }
  .sobre-img-accent { display: none; }
  .sobre-img-badge { right: 0; }
  .step-connector { display: none; }
  .contact-info-card { margin-bottom: 1.5rem; }
}

@media (max-width: 767.98px) {
  .section-py { padding: 56px 0; }
  .hero-content { padding: 100px 0 60px; }
  .hero-phone-img { max-width: 260px; }
  .hero-phone-badge { left: 50%; transform: translateX(-50%); bottom: -10px; }
  .hero-scroll { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form-card { padding: 1.8rem 1.4rem; }
  .contact-info-card { padding: 2rem 1.6rem; }
  .whatsapp-float .wf-text { display: none; }
  .whatsapp-float { padding: 0.8rem; border-radius: 50%; }
}

@media (max-width: 575.98px) {
  .stat-divider { display: none; }
  #stats .d-flex { flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
}
