/* ==========================================================================
   GAITA DE FOLES ESCOCESA - ESTILOS PRINCIPAIS
   Nicolas Ramos & Victor Torres
   ========================================================================== */

:root {
  /* Cores Principais - Tradição Escocesa & Sofisticação */
  --royal-navy: #0b192c;
  --deep-navy: #050c18;
  --scottish-blue: #005eb8;
  --highland-blue-light: #1e88e5;
  --highland-green: #0e3b2e;
  --highland-green-light: #1b5e47;
  --scottish-gold: #c5a059;
  --scottish-gold-light: #dfba73;
  --scottish-gold-dark: #9e7d3b;
  --scottish-red: #990000;
  
  /* Cores Neutras */
  --bg-primary: #060d17;
  --bg-secondary: #0b1524;
  --bg-card: rgba(16, 29, 48, 0.82);
  --bg-card-hover: rgba(22, 39, 66, 0.92);
  --text-main: #f0f4f8;
  --text-muted: #94a3b8;
  --text-light: #cbd5e1;
  --border-glass: rgba(197, 160, 89, 0.25);
  --border-light: rgba(255, 255, 255, 0.08);
  
  /* Tipografia */
  --font-serif: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Efeitos e Sombras */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 0 25px rgba(197, 160, 89, 0.25);
  --glow-blue: 0 0 30px rgba(0, 94, 184, 0.35);
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
}

/* Reset Básico */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(0, 94, 184, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 85%, rgba(14, 59, 46, 0.08) 0%, transparent 40%),
    linear-gradient(rgba(6, 13, 23, 0.98), rgba(6, 13, 23, 0.98));
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.25;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.3;
}

p {
  color: var(--text-light);
  font-size: 1.05rem;
}

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

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

/* Bandeiras e Ícones SVG */
.flag-scotland-icon {
  width: 22px;
  height: 15px;
  border-radius: 2px;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.flag-scotland-hero {
  width: 24px;
  height: 16px;
  border-radius: 3px;
  display: inline-block;
  vertical-align: middle;
}

.flag-brazil-icon {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.instagram-icon-svg {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
}

/* Header & Navbar */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  background: rgba(6, 13, 23, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
}

.header.scrolled {
  background: rgba(5, 12, 24, 0.98);
  border-bottom: 1px solid var(--border-glass);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 1.5rem;
}

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

.logo-mark {
  width: 56px;
  height: 56px;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.55));
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo-subtitle {
  font-size: 0.72rem;
  color: var(--scottish-gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

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

.nav-link:hover {
  color: var(--scottish-gold-light);
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  margin-left: 0.5rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-main);
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.75rem 1.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  text-align: center;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--scottish-gold), var(--scottish-gold-dark));
  color: #060d17;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(197, 160, 89, 0.35);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--scottish-gold-light), var(--scottish-gold));
  box-shadow: 0 6px 25px rgba(197, 160, 89, 0.55);
  transform: translateY(-2px);
  color: #060d17;
}

.btn-outline-gold {
  background: transparent;
  color: var(--scottish-gold-light);
  border: 1.5px solid var(--scottish-gold);
}

.btn-outline-gold:hover {
  background: rgba(197, 160, 89, 0.12);
  color: #ffffff;
  border-color: var(--scottish-gold-light);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #20BA5A;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

/* ==================== SEÇÃO HERO (FUNDO AJUSTADO) ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 125px;
  padding-bottom: 70px;
  background: radial-gradient(circle at 60% 40%, rgba(0, 94, 184, 0.2) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(14, 59, 46, 0.25) 0%, transparent 50%),
              linear-gradient(to bottom, rgba(5, 12, 24, 0.8), rgba(6, 13, 23, 0.98)),
              url('../assets/images/ceremony_photo.jpg') center 28%/cover no-repeat;
  background-attachment: fixed;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(197, 160, 89, 0.14);
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--scottish-gold-light);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-title {
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.hero-title span {
  background: linear-gradient(135deg, #ffffff 30%, var(--scottish-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 620px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-trust-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border-light);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-icon {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
}

.trust-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.25;
}

.trust-text strong {
  color: #ffffff;
  display: block;
  font-size: 0.88rem;
}

/* Card Visual Hero & Avatares */
.hero-card-showcase {
  position: relative;
}

.hero-glass-card {
  background: rgba(16, 29, 48, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.hero-glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--scottish-blue), var(--scottish-gold), var(--highland-green));
}

.hero-duo-avatars {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.avatar-wrapper {
  position: relative;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--scottish-gold);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-wrapper:hover {
  transform: scale(1.08) translateY(-4px);
  z-index: 5;
  box-shadow: var(--shadow-gold);
}

.avatar-wrapper:nth-child(2) {
  margin-left: -18px;
}

.avatar-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-card-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.hero-card-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(0, 94, 184, 0.25);
  border: 1px solid rgba(0, 94, 184, 0.4);
  border-radius: 6px;
  font-size: 0.78rem;
  color: #92c5ff;
  margin-right: 6px;
  margin-bottom: 6px;
}

/* Seções Gerais */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 4rem auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--scottish-gold-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Seção de Boas-Vindas */
.welcome-box {
  background: linear-gradient(135deg, rgba(16, 29, 48, 0.85), rgba(11, 25, 44, 0.98));
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.welcome-text h2 {
  color: var(--scottish-gold-light);
  margin-bottom: 1.5rem;
}

.welcome-text p {
  font-size: 1.12rem;
  line-height: 1.8;
  margin-bottom: 1.4rem;
}

.welcome-sign {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sign-names {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--scottish-gold-light);
}

.welcome-duo-frame {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.welcome-photo-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--scottish-gold);
  box-shadow: var(--shadow-md);
  position: relative;
  background: #000;
}

.welcome-photo-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center top;
  transition: var(--transition);
}

.welcome-photo-item:hover img {
  transform: scale(1.05);
}

.photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 8px 12px;
  background: linear-gradient(to top, rgba(6, 13, 23, 0.95), transparent);
  font-size: 0.82rem;
  color: #ffffff;
  font-weight: 600;
}

/* ==================== SEÇÃO QUEM SOMOS ==================== */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.profile-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
  position: relative;
}

.profile-card:hover {
  border-color: var(--border-glass);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.profile-top {
  position: relative;
  height: 380px;
  overflow: hidden;
  background: #08121f;
  border-bottom: 2px solid var(--scottish-gold);
}

.profile-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: brightness(0.92);
  transition: var(--transition);
}

.profile-card:hover .profile-cover {
  transform: scale(1.04);
  filter: brightness(1);
}

.profile-avatar-floating {
  position: absolute;
  bottom: 16px;
  left: 1.8rem;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--scottish-gold);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-avatar-floating img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.profile-body {
  padding: 2.2rem 2rem 2rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.profile-header {
  margin-bottom: 1.2rem;
}

.profile-name {
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.profile-role {
  font-size: 0.92rem;
  color: var(--scottish-gold-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.profile-origin {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.profile-origin svg {
  width: 14px;
  height: 14px;
  fill: var(--scottish-gold);
}

.profile-bio-list {
  list-style: none;
  margin-bottom: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.profile-bio-list li {
  font-size: 0.95rem;
  color: var(--text-light);
  position: relative;
  padding-left: 1.6rem;
  line-height: 1.5;
}

.profile-bio-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--scottish-gold);
  font-size: 0.85rem;
}

.profile-footer {
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-light);
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.social-link:hover {
  background: rgba(197, 160, 89, 0.15);
  color: var(--scottish-gold-light);
  border-color: var(--border-glass);
}

/* Seção Garantia & Abordagem */
.guarantee-card {
  background: linear-gradient(135deg, rgba(14, 59, 46, 0.45), rgba(11, 25, 44, 0.9));
  border: 1.5px solid rgba(197, 160, 89, 0.35);
  border-radius: var(--radius-lg);
  padding: 3.2rem;
  margin-bottom: 4rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.guarantee-highlight h3 {
  font-size: 1.8rem;
  color: var(--scottish-gold-light);
  margin-bottom: 1rem;
}

.guarantee-highlight p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.guarantee-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.pillar-item {
  display: flex;
  gap: 1rem;
  padding: 1.2rem;
  background: rgba(6, 13, 23, 0.65);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.pillar-item:hover {
  border-color: var(--border-glass);
  background: rgba(6, 13, 23, 0.9);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(197, 160, 89, 0.15);
  border: 1px solid var(--scottish-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.pillar-info h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  color: #ffffff;
}

.pillar-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  border-color: var(--border-glass);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(0, 94, 184, 0.25), rgba(197, 160, 89, 0.2));
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.4rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Seção de Trajes & Tartan */
.tartan-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

.tartan-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.tartan-card:hover {
  border-color: var(--border-glass);
  box-shadow: var(--shadow-md);
}

.tartan-pattern-box {
  height: 140px;
  position: relative;
  border-bottom: 2px solid var(--scottish-gold);
}

.tartan-black-watch {
  background: 
    repeating-linear-gradient(0deg, #0e2a47 0px, #0e2a47 20px, #0c3e2e 20px, #0c3e2e 40px, #051622 40px, #051622 60px),
    repeating-linear-gradient(90deg, #0e2a47 0px, #0e2a47 20px, #0c3e2e 20px, #0c3e2e 40px, #051622 40px, #051622 60px);
  background-blend-mode: multiply;
}

.tartan-saint-andrew {
  background: 
    repeating-linear-gradient(0deg, #005eb8 0px, #005eb8 18px, #134e3f 18px, #134e3f 36px, #ffffff 36px, #ffffff 39px),
    repeating-linear-gradient(90deg, #005eb8 0px, #005eb8 18px, #134e3f 18px, #134e3f 36px, #ffffff 36px, #ffffff 39px);
  background-blend-mode: multiply;
}

.tartan-badge {
  position: absolute;
  bottom: 12px;
  left: 16px;
  background: rgba(6, 13, 23, 0.85);
  border: 1px solid var(--scottish-gold);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 0.78rem;
  color: var(--scottish-gold-light);
  font-weight: 600;
  text-transform: uppercase;
}

.tartan-content {
  padding: 1.8rem;
}

.tartan-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.tartan-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Timeline Cerimonial */
.timeline-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.tab-btn {
  padding: 0.75rem 1.4rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 50px;
  color: var(--text-light);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--scottish-gold);
  color: #060d17;
  border-color: var(--scottish-gold-light);
  box-shadow: var(--shadow-gold);
}

.timeline-display-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.timeline-info h3 {
  font-size: 1.8rem;
  color: var(--scottish-gold-light);
  margin-bottom: 1rem;
}

.timeline-info p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.timeline-suggestion {
  background: rgba(0, 94, 184, 0.15);
  border-left: 3px solid var(--scottish-gold);
  padding: 1rem 1.2rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 1.5rem;
}

.timeline-suggestion strong {
  color: #ffffff;
  display: block;
  font-size: 0.95rem;
}

.timeline-suggestion span {
  font-size: 0.88rem;
  color: var(--scottish-gold-light);
}

.timeline-img-box {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--scottish-gold);
  box-shadow: var(--shadow-md);
  background: #08121f;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: var(--transition);
}

/* Áudio Player Interativo */
.audio-player-container {
  background: linear-gradient(135deg, rgba(16, 29, 48, 0.9), rgba(6, 13, 23, 0.95));
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.audio-controls-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.now-playing {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sound-wave-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.15);
  border: 1.5px solid var(--scottish-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.track-details h4 {
  font-size: 1.15rem;
  color: #ffffff;
}

.track-details p {
  font-size: 0.85rem;
  color: var(--scottish-gold-light);
}

.audio-playlist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.track-card {
  background: rgba(6, 13, 23, 0.6);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition);
}

.track-card:hover,
.track-card:focus-visible {
  border-color: var(--scottish-gold);
  background: rgba(197, 160, 89, 0.08);
  transform: translateY(-2px);
}

.track-btn-mini svg {
  width: 18px;
  height: 18px;
}

.track-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.track-index {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--scottish-gold);
  font-weight: 700;
  width: 24px;
}

.track-info-inner h5 {
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 2px;
}

.track-info-inner span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.track-btn-mini {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-light);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: var(--transition);
}

.track-card:hover .track-btn-mini,
.track-card:focus-visible .track-btn-mini {
  background: #ff0033;
  color: #ffffff;
  border-color: #ff0033;
}

/* Pacotes & Formatos */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-md);
}

.pricing-card.featured {
  border: 1.5px solid var(--scottish-gold);
  background: linear-gradient(180deg, rgba(16, 29, 48, 0.95), rgba(11, 25, 44, 0.9));
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  transform: translateY(-6px);
}

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

.featured-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--scottish-gold);
  color: #060d17;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}

.pricing-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border-light);
}

.pricing-header h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.pricing-header p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pricing-features li {
  font-size: 0.92rem;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-icon {
  color: var(--scottish-gold);
  font-weight: bold;
}

.pricing-footer {
  margin-top: auto;
}

/* Formulário de Proposta Rápida */
.proposal-request-box {
  background: linear-gradient(135deg, rgba(16, 29, 48, 0.9), rgba(6, 13, 23, 0.96));
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  max-width: 860px;
  margin: 0 auto;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(6, 13, 23, 0.7);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--scottish-gold);
  box-shadow: 0 0 10px rgba(197, 160, 89, 0.25);
}

/* Depoimentos */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.review-card:hover {
  border-color: var(--border-glass);
  transform: translateY(-4px);
}

.review-stars {
  color: var(--scottish-gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  flex: 1;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.2);
  border: 1px solid var(--scottish-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--scottish-gold-light);
  font-size: 0.9rem;
}

.author-info h5 {
  font-size: 0.92rem;
  color: #ffffff;
}

.author-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* FAQ Acordeão */
.faq-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--border-glass);
}

.faq-question {
  padding: 1.4rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: #ffffff;
}

.faq-question:hover {
  color: var(--scottish-gold-light);
}

.faq-toggle-icon {
  font-size: 1.2rem;
  color: var(--scottish-gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.8rem 1.4rem 1.8rem;
  display: none;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ==================== CTA BANNER (COM FOTO DO VICTOR DA HERO) ==================== */
.cta-banner {
  background: radial-gradient(circle at center, rgba(0, 94, 184, 0.28) 0%, rgba(6, 13, 23, 0.94) 70%),
              url('../assets/images/victor_gaita_hero.jpg') center 20%/cover no-repeat;
  border: 1.5px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.15rem;
  max-width: 680px;
  margin: 0 auto 2.5rem auto;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card-box {
  background: rgba(6, 13, 23, 0.85);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.4rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.contact-card-box:hover {
  border-color: var(--scottish-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.15);
  border: 1px solid var(--scottish-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--scottish-gold-light);
}

.contact-card-box h4 {
  font-size: 1.05rem;
}

.contact-card-box p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Footer */
.footer {
  background: var(--deep-navy);
  border-top: 1px solid var(--border-light);
  padding: 4rem 0 2rem 0;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 380px;
}

.footer-col h4 {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--scottish-gold);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Botão Flutuante WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: var(--transition);
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: #ffffff;
}

.floating-whatsapp:hover {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* Responsividade Mobile */
@media (max-width: 1100px) {
  .nav-links {
    gap: 1rem;
  }
  .nav-link {
    font-size: 0.82rem;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .hero-card-showcase {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .profiles-grid,
  .guarantee-grid,
  .welcome-grid,
  .timeline-display-card,
  .pricing-grid,
  .reviews-grid,
  .features-grid,
  .tartan-showcase,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 84px;
    left: 0;
    width: 100%;
    height: calc(100vh - 84px);
    background: rgba(6, 13, 23, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }
  
  .nav-links.active {
    transform: translateX(0);
  }
  
  .nav-toggle {
    display: block;
  }
  
  .hero-trust-bar,
  .contact-cards-grid,
  .audio-playlist-grid,
  .welcome-duo-frame,
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  
  .welcome-box,
  .proposal-request-box,
  .timeline-display-card {
    padding: 1.8rem;
  }

  .profile-top {
    height: 300px;
  }

  .timeline-img-box {
    height: 300px;
  }
}

/* ==========================================================================
   REVIEW FORM (Avaliação de Clientes)
   ========================================================================== */

.review-form-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.8rem 3rem;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.star-rating-widget {
  display: flex;
  gap: 0.4rem;
  margin: 0.6rem 0 0.4rem;
}

.star-btn {
  font-size: 2.2rem;
  cursor: pointer;
  color: var(--border-glass);
  transition: color 0.15s ease, transform 0.15s ease;
  user-select: none;
  line-height: 1;
}

.star-btn:focus-visible {
  outline: 2px solid var(--scottish-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.star-btn:hover,
.star-btn.hovered,
.star-btn.selected {
  color: var(--scottish-gold-light);
  transform: scale(1.15);
}

.star-label-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.review-form-box > form > .form-group,
.review-form-box > form > .form-grid-2 {
  margin-bottom: 1.3rem;
}

.review-form-box > form > .form-group-extra {
  margin-bottom: 0;
}

/* Aprenda a tocar – mobile grid */
@media (max-width: 768px) {
  #aprenda .container > div:last-child {
    grid-template-columns: 1fr !important;
  }

  .review-form-box {
    padding: 1.8rem 1.4rem;
  }
}

/* ==========================================================================
   LOGO NO RODAPÉ
   ========================================================================== */

.footer-logo {
  width: auto;
  height: 140px;
  display: block;
  margin-bottom: 0.4rem;
}

.footer-partner-logos {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.footer-partner-logo {
  width: 62px;
  height: 62px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  flex-shrink: 0;
}

.footer-partner-logo:hover {
  border-color: var(--scottish-gold);
  transform: translateY(-2px);
}

.footer-partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ==========================================================================
   FORMULÁRIO DE PROPOSTA
   ========================================================================== */

.form-control-tall {
  min-height: 160px;
  resize: vertical;
}

.form-group-extra {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  line-height: 1.55;
  border: 1px solid transparent;
}

.form-status-ok {
  background: rgba(27, 94, 71, 0.28);
  border-color: var(--highland-green-light);
  color: #d7f0e4;
}

.form-status-error {
  background: rgba(153, 0, 0, 0.22);
  border-color: rgba(255, 120, 120, 0.45);
  color: #ffd9d9;
}

#prop-submit[disabled] {
  opacity: 0.6;
  cursor: progress;
}

[hidden] {
  display: none !important;
}

@media (max-width: 768px) {
  .logo-mark {
    width: 46px;
    height: 46px;
  }

  .logo {
    gap: 9px;
    min-width: 0;
  }

  .logo-title {
    font-size: 0.94rem;
    letter-spacing: 0.02em;
  }

  .logo-subtitle {
    display: none;
  }

  .header-actions .btn-gold {
    padding: 0.6rem 0.9rem;
    font-size: 0.8rem;
  }

  .footer-logo {
    height: 120px;
  }
}

@media (max-width: 480px) {
  .logo-text {
    display: none;
  }

  .footer-logo {
    height: 104px;
  }
}
