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

/* --- CUSTOM DESIGN SYSTEM VARIABLES --- */
:root {
  --font-primary: 'Outfit', sans-serif;
  --font-secondary: 'Plus Jakarta Sans', sans-serif;
  
  /* Brand Colors */
  --brand-navy: #083a6b;
  --brand-navy-light: #125492;
  --brand-navy-dark: #052648;
  --brand-yellow: #eab308;
  --brand-yellow-light: #fef08a;
  
  /* Color Palette - Light Theme */
  --bg-main: #f8fafc;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-card-hover: rgba(255, 255, 255, 0.95);
  --border-glow: rgba(8, 58, 107, 0.08);
  
  --primary-neon: #083a6b;
  --primary-deep: #125492;
  --primary-gradient: linear-gradient(135deg, #083a6b 0%, #125492 100%);
  --secondary-gradient: linear-gradient(135deg, #0f172a 0%, #334155 100%);
  
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  
  --success: #15803d;
  --success-glow: rgba(21, 128, 61, 0.15);
  --warning: #b45309;
  
  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET & GLOBAL STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

body {
  background-color: #f1f5f9;
  color: var(--text-primary);
  font-family: var(--font-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* --- DESKTOP APP SIMULATOR CONTAINER --- */
/* This simulates a sleek, modern smartphone frame on desktop, but takes full viewport on mobile */
.app-viewport-wrapper {
  width: 100%;
  max-width: 480px;
  min-height: 100vh;
  background-color: var(--bg-main);
  position: relative;
  box-shadow: 0 15px 50px rgba(8, 58, 107, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-left: 1px solid rgba(8, 58, 107, 0.05);
  border-right: 1px solid rgba(8, 58, 107, 0.05);
}

/* Background Glowing Orbs */
.bg-glow-orbs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.06;
  animation: floatOrb 12s infinite alternate ease-in-out;
}

.orb-1 {
  top: 10%;
  right: -50px;
  width: 250px;
  height: 250px;
  background: var(--brand-navy);
}

.orb-2 {
  top: 45%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: var(--brand-navy-light);
  animation-delay: -3s;
}

.orb-3 {
  bottom: 10%;
  right: -50px;
  width: 200px;
  height: 200px;
  background: var(--brand-yellow);
  animation-delay: -6s;
}

@keyframes floatOrb {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(50px) scale(1.2); }
}

/* --- SPLASH SCREEN --- */
#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-main);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.splash-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-logo-container {
  text-align: center;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.splash-logo-img {
  max-width: 180px;
  height: auto;
  margin-bottom: 16px;
  animation: splashPulse 2s infinite ease-in-out;
}

.splash-slogan {
  font-family: var(--font-secondary);
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  font-weight: 500;
}

.splash-progress-container {
  width: 180px;
  height: 4px;
  background: rgba(8, 58, 107, 0.08);
  border-radius: 10px;
  margin-top: 40px;
  overflow: hidden;
  position: relative;
}

.splash-progress-bar {
  width: 0%;
  height: 100%;
  background: var(--primary-gradient);
  box-shadow: 0 0 10px rgba(8, 58, 107, 0.2);
  border-radius: 10px;
  transition: width 2s cubic-bezier(0.1, 0.8, 0.3, 1);
}

@keyframes splashPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* --- SCROLL CONTAINER --- */
.app-content {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* --- REVEAL ON SCROLL --- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- GLASS CARD COMPONENT --- */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(8, 58, 107, 0.06);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 8px 32px 0 rgba(8, 58, 107, 0.03);
  transition: var(--transition-medium);
  overflow: hidden;
  position: relative;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
  pointer-events: none;
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(8, 58, 107, 0.15);
  box-shadow: 0 12px 40px rgba(8, 58, 107, 0.06);
}

/* --- HERO SECTION --- */
.hero-section {
  padding: 40px 24px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  min-height: 92vh;
  justify-content: space-between;
}

.hero-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.hero-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

/* Atendimento Online Status Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(21, 128, 61, 0.06);
  border: 1px solid rgba(21, 128, 61, 0.2);
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
  color: var(--success);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-dot {
  width: 7px;
  height: 7px;
  background-color: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--success);
  animation: statusPulse 1.5s infinite;
}

@keyframes statusPulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.4; }
  100% { transform: scale(1); opacity: 1; }
}

/* Profile Photo Section */
.profile-container {
  position: relative;
  width: 140px;
  height: 140px;
  margin-bottom: 20px;
}

.profile-glow-ring {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--brand-navy), var(--brand-navy-light), var(--brand-yellow), var(--brand-navy));
  animation: rotateRing 6s linear infinite;
  opacity: 0.8;
  filter: blur(2px);
}

.profile-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid var(--bg-main);
  overflow: hidden;
  background-color: #f1f5f9;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes rotateRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero-info-wrapper {
  margin-bottom: 25px;
}

.hero-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.15;
  background: linear-gradient(135deg, var(--brand-navy) 40%, var(--brand-navy-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.hero-subtitle {
  font-size: 15px;
  font-family: var(--font-secondary);
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 12px;
}

.hero-tags {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-tag {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(8, 58, 107, 0.04);
  border: 1px solid rgba(8, 58, 107, 0.08);
  padding: 4px 10px;
  border-radius: 20px;
  color: var(--brand-navy);
}

/* Quick Actions Button Grid */
.hero-actions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  margin-bottom: 24px;
}

.action-btn-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 8px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(8, 58, 107, 0.08);
  border-radius: 16px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  transition: var(--transition-fast);
  cursor: pointer;
}

.action-btn-card i {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--brand-navy);
  transition: var(--transition-fast);
}

.action-btn-card:hover {
  background: rgba(8, 58, 107, 0.04);
  border-color: var(--brand-navy);
  transform: translateY(-2px);
}

.action-btn-card:hover i {
  transform: scale(1.1);
  filter: drop-shadow(0 0 5px rgba(8, 58, 107, 0.25));
}

.action-btn-card.highlight {
  border-color: rgba(21, 128, 61, 0.2);
}

.action-btn-card.highlight i {
  color: var(--success);
}

.action-btn-card.highlight:hover {
  background: rgba(21, 128, 61, 0.04);
  border-color: var(--success);
}

.action-btn-card.highlight:hover i {
  filter: drop-shadow(0 0 5px var(--success));
}

/* Call to Actions main buttons */
.cta-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-primary {
  width: 100%;
  background: var(--primary-gradient);
  color: #fff;
  border: none;
  padding: 16px 28px;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(8, 58, 107, 0.25);
  transition: var(--transition-medium);
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(8, 58, 107, 0.4);
}

.btn-secondary {
  width: 100%;
  background: rgba(8, 58, 107, 0.03);
  color: var(--brand-navy);
  border: 1px solid rgba(8, 58, 107, 0.12);
  padding: 15px 28px;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition-medium);
  text-decoration: none;
}

.btn-secondary:hover {
  background: rgba(8, 58, 107, 0.08);
  border-color: var(--brand-navy);
}

/* Scroll down indicator */
.scroll-indicator-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
  opacity: 0.8;
  transition: opacity 0.5s ease;
  z-index: 10;
}

.scroll-indicator-container.fade-out {
  opacity: 0;
  pointer-events: none;
}

.scroll-label {
  font-size: 11px;
  color: var(--text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 600;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid var(--text-muted);
  border-radius: 12px;
  position: relative;
  display: flex;
  justify-content: center;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background-color: var(--brand-navy);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  animation: scrollWheelAnim 1.6s infinite ease-in-out;
  box-shadow: 0 0 5px rgba(8, 58, 107, 0.3);
}

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

/* --- SECTION GENERAL STYLING --- */
.section-wrapper {
  padding: 40px 24px;
  width: 100%;
}

.section-header {
  margin-bottom: 25px;
  text-align: left;
}

.section-subtitle {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand-navy);
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  display: block;
}

.section-title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
  background: var(--secondary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- SERVICES AREA --- */
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.service-icon-box {
  width: 52px;
  height: 52px;
  background: rgba(8, 58, 107, 0.04);
  border: 1px solid rgba(8, 58, 107, 0.1);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(8, 58, 107, 0.02);
  transition: var(--transition-fast);
}

.service-icon-box i {
  font-size: 22px;
  color: var(--brand-navy);
}

.service-card:hover .service-icon-box {
  border-color: var(--brand-navy);
  box-shadow: 0 0 20px rgba(8, 58, 107, 0.15);
  transform: scale(1.05);
}

.service-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.service-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* --- DIFERENCIAIS PREMIUM --- */
.diferenciais-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.diferencial-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
}

.diferencial-badge {
  width: 44px;
  height: 44px;
  background: rgba(21, 128, 61, 0.06);
  border: 1px solid rgba(21, 128, 61, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--success);
  flex-shrink: 0;
}

.diferencial-badge i {
  font-size: 18px;
}

.diferencial-content {
  display: flex;
  flex-direction: column;
}

.diferencial-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.diferencial-text {
  font-size: 12px;
  color: var(--text-secondary);
}

/* --- TECNOLOGIA E GESTÃO --- */
.tech-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tech-hero-img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(8, 58, 107, 0.08);
  box-shadow: 0 10px 30px rgba(8, 58, 107, 0.05);
  margin-bottom: 10px;
}

/* App Simulator Component inside Technology area */
.app-simulator-view {
  background: #ffffff;
  border: 1px solid rgba(8, 58, 107, 0.08);
  border-radius: 24px;
  padding: 20px;
  box-shadow: inset 0 0 10px rgba(8, 58, 107, 0.03), 0 8px 32px rgba(8, 58, 107, 0.04);
}

.simulator-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(8, 58, 107, 0.06);
  margin-bottom: 16px;
}

.simulator-user {
  display: flex;
  align-items: center;
  gap: 8px;
}

.simulator-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: #fff;
  font-weight: 700;
}

.simulator-app-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
}

.simulator-status {
  font-size: 10px;
  color: var(--success);
  font-weight: 600;
  background: rgba(21, 128, 61, 0.06);
  padding: 2px 8px;
  border-radius: 10px;
}

/* Interactive Poll Panel */
.poll-panel {
  margin-bottom: 18px;
}

.poll-question {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.poll-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.poll-option {
  position: relative;
  background: rgba(8, 58, 107, 0.02);
  border: 1px solid rgba(8, 58, 107, 0.06);
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  transition: var(--transition-fast);
}

.poll-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: rgba(8, 58, 107, 0.08);
  transition: width 0.8s cubic-bezier(0.1, 0.8, 0.3, 1);
  z-index: 1;
}

.poll-text {
  font-size: 12px;
  color: var(--text-secondary);
  position: relative;
  z-index: 2;
}

.poll-percent {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-navy);
  position: relative;
  z-index: 2;
}

.poll-option.selected {
  border-color: var(--brand-navy);
}

.poll-option.selected .poll-text {
  color: var(--text-primary);
  font-weight: 600;
}

/* Interactive Booking Panel */
.booking-panel {
  margin-bottom: 18px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(8, 58, 107, 0.01);
  border: 1px solid rgba(8, 58, 107, 0.05);
  padding: 12px;
  border-radius: 14px;
}

.booking-select, .booking-date-input, .booking-input-text, .complaint-textarea, .complaint-select {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(8, 58, 107, 0.12);
  border-radius: 10px;
  padding: 8px 12px;
  color: var(--text-primary);
  font-size: 12px;
  font-family: var(--font-primary);
}

.btn-small {
  width: 100%;
  background: var(--primary-gradient);
  border: none;
  border-radius: 10px;
  padding: 8px 16px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.btn-small:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(8, 58, 107, 0.25);
}

.bookings-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}

.booking-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(8, 58, 107, 0.02);
  border: 1px solid rgba(8, 58, 107, 0.05);
  padding: 8px 12px;
  border-radius: 8px;
}

.booking-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-primary);
}

.booking-date {
  font-size: 10px;
  color: var(--text-muted);
}

.booking-status {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 6px;
}

.booking-status.approved {
  background: rgba(21, 128, 61, 0.06);
  color: var(--success);
}

.booking-status.pending {
  background: rgba(245, 158, 11, 0.08);
  color: var(--warning);
}

/* Mail/Notification Panel */
.mail-panel {
  margin-bottom: 18px;
}

.mail-notification-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(8, 58, 107, 0.03);
  border: 1px solid rgba(8, 58, 107, 0.12);
  padding: 10px 14px;
  border-radius: 12px;
}

.mail-icon-pulse {
  position: relative;
  display: flex;
}

.mail-icon-pulse i {
  color: var(--brand-navy);
  font-size: 18px;
}

.mail-pulse-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 6px;
  height: 6px;
  background-color: var(--success);
  border-radius: 50%;
  animation: statusPulse 1s infinite;
}

.mail-text-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-primary);
}

.mail-text-desc {
  font-size: 10px;
  color: var(--text-secondary);
}

/* Complaint Register Section */
.complaint-panel {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.complaint-textarea {
  min-height: 50px;
  resize: none;
}

/* Spinner */
.spinner {
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* --- DEPOIMENTOS CAROUSEL --- */
.swiper {
  width: 100%;
}

.testimonial-slide {
  padding: 10px 10px 30px;
  text-align: center;
}

.stars-rating {
  color: #eab308;
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 4px;
}

.testimonial-text {
  font-family: var(--font-secondary);
  font-size: 14.5px;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.testimonial-author {
  font-weight: 700;
  font-size: 13px;
  color: var(--brand-navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.swiper-pagination-bullet {
  background: var(--text-muted) !important;
}

.swiper-pagination-bullet-active {
  background: var(--brand-navy) !important;
  box-shadow: 0 0 8px rgba(8, 58, 107, 0.3);
}

/* --- GALERIA DE FOTOS CAROUSEL --- */
.gallery-swiper {
  padding-bottom: 30px;
}

.gallery-card {
  border-radius: 20px;
  overflow: hidden;
  height: 240px;
  border: 1px solid rgba(8, 58, 107, 0.08);
  box-shadow: 0 10px 25px rgba(8, 58, 107, 0.04);
  position: relative;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0) 100%);
  display: flex;
  flex-direction: column;
}

.gallery-tag {
  font-size: 9px;
  font-weight: 700;
  color: var(--brand-navy);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

/* --- VIDEO EMBEDS SECTION --- */
.videos-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.video-container {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(8, 58, 107, 0.08);
  box-shadow: 0 10px 25px rgba(8, 58, 107, 0.04);
  position: relative;
  aspect-ratio: 16/9;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-medium);
}

.video-placeholder:hover {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.video-play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(8, 58, 107, 0.2);
  color: #fff;
  font-size: 20px;
  margin-bottom: 12px;
  transition: var(--transition-fast);
}

.video-placeholder:hover .video-play-btn {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(8, 58, 107, 0.35);
}

.video-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

.video-subtitle {
  font-size: 11px;
  color: var(--text-secondary);
}

/* --- HORÁRIO E LOCALIZAÇÃO --- */
.location-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.contact-icon {
  color: var(--brand-navy);
  font-size: 16px;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-info-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.contact-info-val {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-primary);
}

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(8, 58, 107, 0.08);
  height: 180px;
}

/* --- FLOATING WHATSAPP BUTTON --- */
.whatsapp-floating-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  z-index: 999;
  text-decoration: none;
  cursor: pointer;
  animation: pulseGreen 2s infinite;
  transition: var(--transition-fast);
}

.whatsapp-floating-btn:hover {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.55);
}

@keyframes pulseGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* --- PREMIUM FOOTER --- */
.premium-footer {
  padding: 40px 24px 80px;
  text-align: center;
  border-top: 1px solid rgba(8, 58, 107, 0.08);
  margin-top: 20px;
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 35px;
  width: auto;
  object-fit: contain;
}

.footer-desc {
  font-size: 12.5px;
  color: var(--text-secondary);
  max-width: 320px;
  margin: 0 auto 20px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.social-circle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(8, 58, 107, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 16px;
  transition: var(--transition-fast);
}

.social-circle-btn:hover {
  background: rgba(8, 58, 107, 0.05);
  border-color: var(--brand-navy);
  color: var(--brand-navy);
  transform: translateY(-2px);
}

/* Call to action "Tenha seu cartão interativo" */
.footer-cta-box {
  background: rgba(8, 58, 107, 0.02);
  border: 1px solid rgba(8, 58, 107, 0.08);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 25px;
}

.footer-cta-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-gradient);
  color: #fff;
  padding: 8px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: var(--transition-fast);
}

.footer-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(8, 58, 107, 0.3);
}

.footer-copyright {
  font-size: 11px;
  color: var(--text-muted);
}

/* --- TOAST NOTIFICATIONS --- */
.toast-notification {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  width: calc(100% - 48px);
  max-width: 432px;
}

.toast-notification.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast-content {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--brand-navy);
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(8, 58, 107, 0.08);
  color: var(--text-primary);
  font-size: 12.5px;
}

.toast-content i {
  color: var(--brand-navy);
  font-size: 18px;
}

/* Responsive adjust for Desktop */
@media (min-width: 481px) {
  body {
    background-color: #f1f5f9;
    padding: 30px 10px;
    align-items: center;
  }
  
  .app-viewport-wrapper {
    border-radius: 36px;
    min-height: 880px;
    height: 88vh;
    max-height: 940px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(8, 58, 107, 0.1) transparent;
  }
  
  .app-viewport-wrapper::-webkit-scrollbar {
    width: 6px;
  }
  
  .app-viewport-wrapper::-webkit-scrollbar-thumb {
    background-color: rgba(8, 58, 107, 0.1);
    border-radius: 3px;
  }
  
  #splash-screen {
    position: absolute;
    border-radius: 36px;
  }
  
  .toast-notification {
    position: absolute;
    bottom: 30px;
  }
}
