/* 
 * Adrimar Caça Vazamentos - Premium Design System Stylesheet
 * Philosophy: anti-slop, non-generic, high-trust, cold-luxury with emergency urgency pops.
 * Dials: DESIGN_VARIANCE: 7 | MOTION_INTENSITY: 6 | VISUAL_DENSITY: 4
 */

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

:root {
  /* HSL Colors */
  --bg-dark: 222 47% 11%;
  /* Deep Slate / Near Black */
  --bg-card-dark: 222 40% 15%;
  /* Deep Slate Card */
  --bg-light: 210 20% 98%;
  /* Off-White / Soft Blue-Grey */
  --bg-white: 0 0% 100%;
  /* Pure White */

  --text-dark: 222 47% 11%;
  /* Dark Slate Text */
  --text-muted: 215 15% 45%;
  /* Muted Slate Text */
  --text-light: 210 40% 98%;
  /* Cold Off-White Text */

  --accent-cyan: 188 90% 48%;
  /* Cyber Cyan / Water Precision */
  --accent-blue: 201 96% 40%;
  /* Hydro Blue */
  --accent-orange: 24 95% 53%;
  /* Emergency Warning / High-Contrast Accent */

  --border-light: 215 20% 90%;
  /* Subtle Light Border */
  --border-dark: 217 25% 20%;
  /* Subtle Dark Border */

  /* Timing Functions & Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: all 0.2s ease;

  /* Corner Radii System (Shape Consistency Lock) */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

/* Reset & Base Elements */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: hsl(var(--text-dark));
  background-color: hsl(var(--bg-white));
  overflow-x: hidden;
}

/* Typography Grid (Outfit for Display, Inter for Body) */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: hsl(var(--text-dark));
}

.display-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p {
  font-weight: 400;
  color: hsl(var(--text-muted));
}

.lead-text {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  color: hsl(var(--text-muted));
  max-w: 65ch;
  line-height: 1.5;
}

.eyebrow-text {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsl(var(--accent-blue));
  display: inline-block;
  margin-bottom: 0.75rem;
}

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

.section-spacing {
  padding-top: clamp(4rem, 8vw, 8rem);
  padding-bottom: clamp(4rem, 8vw, 8rem);
}

.grid-2 {
  display: grid;
  grid-template-cols: 1fr;
  gap: 2.5rem;
}

.grid-3 {
  display: grid;
  grid-template-cols: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-cols: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-cols: repeat(3, 1fr);
  }
}

/* Asymmetric / Bento Grid Styles */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 992px) {
  .bento-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
  }

  .bento-item-large {
    grid-column: span 7;
  }

  .bento-item-medium {
    grid-column: span 5;
  }

  .bento-item-wide {
    grid-column: span 8;
  }

  .bento-item-small {
    grid-column: span 4;
  }
}

/* Modern Nav Bar (Height Cap: 72px) */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(222, 227, 235, 0.5);
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

header.scrolled {
  height: 64px;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
  transition: var(--transition-smooth);
}

header.scrolled .logo img {
  height: 34px;
}

.nav-links {
  display: none;
}

.nav-cta {
  display: none;
}

@media (min-width: 992px) {
  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
  }

  .nav-links a {
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    color: hsl(var(--text-dark));
    transition: var(--transition-fast);
    position: relative;
    padding: 0.5rem 0;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: hsl(var(--accent-blue));
    transition: var(--transition-smooth);
  }

  .nav-links a:hover {
    color: hsl(var(--accent-blue));
  }

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

  .nav-links li.active a {
    color: hsl(var(--accent-blue));
  }

  .nav-links li.active a::after {
    width: 100%;
  }

  .nav-cta {
    display: block;
  }
}

/* Hamburger Menu Button */
.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: hsl(var(--text-dark));
  margin: 5px 0;
  transition: var(--transition-smooth);
}

.mobile-menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 992px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* Mobile Sidebar Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100dvh;
  background-color: hsl(var(--bg-white));
  z-index: 999;
  padding: 100px 2rem 2rem;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  transition: var(--transition-smooth);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-links a {
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--text-dark));
  transition: var(--transition-fast);
}

.mobile-nav-links a:hover {
  color: hsl(var(--accent-blue));
}

.mobile-nav-cta {
  margin-top: auto;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Button & CTA Elements (Tactile Feedback & a11y Contrasts) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  gap: 0.5rem;
  white-space: nowrap;
}

.btn-primary {
  background-color: hsl(var(--accent-orange));
  color: hsl(var(--bg-dark));
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
  background-color: hsl(24, 95%, 45%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4);
}

.btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: hsl(var(--text-dark));
  border: 1px solid hsl(var(--border-light));
}

.btn-secondary:hover {
  background-color: rgba(2, 132, 199, 0.05);
  border-color: hsl(var(--accent-blue));
  color: hsl(var(--accent-blue));
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: translateY(1px);
}

.btn-cyan {
  background-color: hsl(var(--accent-cyan));
  color: hsl(var(--bg-dark));
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.25);
  font-weight: 700;
}

.btn-cyan:hover {
  background-color: hsl(188, 90%, 40%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.35);
}

.btn-cyan:active {
  transform: translateY(1px);
}

.btn-pill {
  border-radius: var(--radius-full);
}

/* Hero Section (Min-Height: 100dvh, Top-padding cap: 96px max) */
.hero {
  min-height: 100dvh;
  padding-top: 96px;
  /* Cap top padding */
  padding-bottom: 3rem;
  background-color: hsl(var(--bg-dark));
  color: hsl(var(--text-light));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Cyber Ambient Gradients (Aurora style) */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 40%;
  height: 50%;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.1) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-cols: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .hero-container {
    grid-template-cols: 1.2fr 0.8fr;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-content .eyebrow-text {
  color: hsl(var(--accent-cyan));
}

.hero-content h1 {
  color: hsl(var(--text-light));
  margin-bottom: 1.5rem;
}

.hero-content p {
  color: hsl(215, 20%, 75%);
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid hsl(var(--border-dark));
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease-out;
}

.hero-image-wrapper:hover img {
  transform: scale(1.05);
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 40%, rgba(15, 23, 42, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.hero-image-badge {
  background-color: rgba(6, 182, 212, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(6, 182, 212, 0.4);
  color: hsl(var(--accent-cyan));
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-image-badge::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: hsl(var(--accent-cyan));
  border-radius: 50%;
  box-shadow: 0 0 8px hsl(var(--accent-cyan));
}

/* Trust Banner / Logo Wall (Placed below Hero) */
.trust-banner {
  background-color: hsl(var(--bg-light));
  border-bottom: 1px solid hsl(var(--border-light));
  padding: 2rem 0;
}

.trust-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .trust-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}

.trust-title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: hsl(var(--text-muted));
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
}

.trust-logo-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.65;
  transition: var(--transition-fast);
}

.trust-logo-item:hover {
  opacity: 1;
}

.trust-logo-icon {
  width: 24px;
  height: 24px;
  fill: hsl(var(--text-dark));
}

.trust-logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: hsl(var(--text-dark));
}

/* Trust Cards Grid */
.trust-cards-section {
  background-color: hsl(var(--bg-white));
}

.trust-card {
  background-color: hsl(var(--bg-light));
  border: 1px solid hsl(var(--border-light));
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: hsl(var(--accent-blue));
  transition: var(--transition-smooth);
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
  border-color: rgba(2, 132, 199, 0.3);
}

.trust-card:hover::before {
  height: 100%;
}

.trust-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: rgba(2, 132, 199, 0.1);
  color: hsl(var(--accent-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.trust-card-icon svg {
  width: 24px;
  height: 24px;
}

.trust-card h3 {
  margin-bottom: 0.75rem;
}

/* Services Bento Grid Section */
.services-section {
  background-color: hsl(var(--bg-light));
  border-top: 1px solid hsl(var(--border-light));
  border-bottom: 1px solid hsl(var(--border-light));
}

.section-header {
  margin-bottom: 4rem;
  max-width: 800px;
}

.bento-card {
  background-color: hsl(var(--bg-white));
  border: 1px solid hsl(var(--border-light));
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
}

.bento-card-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: multiply;
  transition: var(--transition-smooth);
}

.bento-card:hover .bento-card-bg {
  transform: scale(1.05);
  opacity: 0.12;
}

.bento-card-content {
  position: relative;
  z-index: 2;
}

.bento-card-badge {
  background-color: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.15);
  color: hsl(var(--accent-blue));
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.875rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  margin-bottom: 1.5rem;
}

.bento-card-title {
  margin-bottom: 1rem;
}

.bento-card-desc {
  margin-bottom: 2rem;
  max-width: 45ch;
}

.bento-card-action {
  position: relative;
  z-index: 2;
  margin-top: 1.5rem;
}

.service-features-list {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: hsl(var(--text-muted));
}

.service-features-list li svg {
  width: 16px;
  height: 16px;
  color: hsl(var(--accent-blue));
  flex-shrink: 0;
}

/* History / Experience Section (Asymmetric Split Screen) */
.about-section {
  background-color: hsl(var(--bg-white));
}

.about-grid {
  display: grid;
  grid-template-cols: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-cols: 1fr 1.1fr;
  }
}

.about-image-stack {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
}

.about-img-main {
  grid-column: 1 / span 9;
  grid-row: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid hsl(var(--border-light));
  aspect-ratio: 1;
}

.about-img-sub {
  grid-column: 7 / span 6;
  grid-row: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  border: 4px solid hsl(var(--bg-white));
  aspect-ratio: 3/4;
  transform: translateY(20%);
}

.about-image-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background-color: hsl(var(--bg-dark));
  color: hsl(var(--text-light));
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
  z-index: 10;
  border: 1px solid hsl(var(--border-dark));
}

.about-experience-badge .years {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: hsl(var(--accent-cyan));
  display: block;
}

.about-experience-badge .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-cols: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  border-top: 1px solid hsl(var(--border-light));
  padding-top: 2rem;
}

.stat-item .num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: hsl(var(--accent-blue));
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item .label {
  font-size: 0.85rem;
  font-weight: 500;
  color: hsl(var(--text-muted));
}

/* Video Section (Refined Gallery with Custom Player Cards) */
.video-section {
  background-color: hsl(var(--bg-dark));
  color: hsl(var(--text-light));
  position: relative;
}

.video-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.video-section .section-title,
.video-section p {
  color: hsl(var(--text-light));
}

.video-section p {
  color: hsl(215, 20%, 70%);
}

.video-grid {
  display: grid;
  grid-template-cols: 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .video-grid {
    grid-template-cols: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .video-grid {
    grid-template-cols: repeat(3, 1fr);
  }
}

.video-card {
  background-color: hsl(var(--bg-card-dark));
  border: 1px solid hsl(var(--border-dark));
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.video-card:hover {
  transform: translateY(-6px);
  border-color: rgba(6, 182, 212, 0.3);
}

.video-thumbnail-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  cursor: pointer;
  background-color: #000;
}

.video-thumbnail-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: var(--transition-smooth);
}

.video-card:hover .video-thumbnail-wrapper img {
  opacity: 0.65;
  transform: scale(1.03);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: hsl(var(--accent-cyan));
  color: hsl(var(--bg-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(6, 182, 212, 0.4);
  transition: var(--transition-bounce);
  z-index: 2;
}

.video-play-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  transform: translateX(2px);
}

.video-card:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.15);
  background-color: hsl(var(--text-light));
  color: hsl(var(--bg-dark));
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3);
}

.video-info {
  padding: 1.5rem;
}

.video-info h3 {
  font-size: 1.15rem;
  color: hsl(var(--text-light));
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.video-info p {
  font-size: 0.85rem;
  color: hsl(215, 15%, 65%);
}

.video-iframe-container {
  width: 100%;
  height: 100%;
  border: none;
}

/* Testimonials / Quote Section */
.testimonials-section {
  background-color: hsl(var(--bg-light));
  border-bottom: 1px solid hsl(var(--border-light));
}

.testimonial-card {
  background-color: hsl(var(--bg-white));
  border: 1px solid hsl(var(--border-light));
  border-radius: var(--radius-md);
  padding: 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-quote {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  color: hsl(var(--text-dark));
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-family: 'Outfit', sans-serif;
  font-size: 4rem;
  color: rgba(2, 132, 199, 0.1);
  position: absolute;
  top: -2rem;
  left: -1rem;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(2, 132, 199, 0.1);
  color: hsl(var(--accent-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
}

.testimonial-meta h4 {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.testimonial-meta span {
  font-size: 0.8rem;
  color: hsl(var(--text-muted));
}

/* Call To Action Form Section */
.cta-section {
  background-color: hsl(var(--bg-white));
}

.cta-box {
  background-color: hsl(var(--bg-dark));
  color: hsl(var(--text-light));
  border-radius: var(--radius-lg);
  padding: 3rem 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
  border: 1px solid hsl(var(--border-dark));
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.cta-grid {
  display: grid;
  grid-template-cols: 1fr;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .cta-box {
    padding: 5rem;
  }

  .cta-grid {
    grid-template-cols: 1fr 1.1fr;
    align-items: center;
  }
}

.cta-info h2 {
  color: hsl(var(--text-light));
  margin-bottom: 1.5rem;
}

.cta-info p {
  color: hsl(215, 20%, 75%);
  margin-bottom: 2.5rem;
}

.cta-phone-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: 400px;
}

.cta-phone-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: hsl(var(--accent-orange));
  color: hsl(var(--text-light));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(249, 115, 22, 0.4);
}

.cta-phone-icon svg {
  width: 20px;
  height: 20px;
}

.cta-phone-details span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(215, 15%, 65%);
}

.cta-phone-details a {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: hsl(var(--text-light));
  text-decoration: none;
  transition: var(--transition-fast);
}

.cta-phone-details a:hover {
  color: hsl(var(--accent-cyan));
}

/* Contact / Scheduling Form */
.cta-form {
  background-color: hsl(var(--bg-card-dark));
  border: 1px solid hsl(var(--border-dark));
  padding: 2.5rem;
  border-radius: var(--radius-md);
}

.cta-form h3 {
  color: hsl(var(--text-light));
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: hsl(215, 15%, 75%);
}

.form-control {
  background-color: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: hsl(var(--text-light));
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  width: 100%;
}

.form-control:focus {
  outline: none;
  border-color: hsl(var(--accent-cyan));
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

select.form-control option {
  background-color: hsl(var(--bg-card-dark));
  color: hsl(var(--text-light));
}

.cta-form .btn {
  width: 100%;
  margin-top: 1rem;
}

/* Footer Section */
footer {
  background-color: hsl(var(--bg-dark));
  color: hsl(var(--text-light));
  padding-top: 5rem;
  padding-bottom: 2rem;
  border-top: 1px solid hsl(var(--border-dark));
}

.footer-grid {
  display: grid;
  grid-template-cols: 1fr;
  gap: 3rem;
  border-bottom: 1px solid hsl(var(--border-dark));
  padding-bottom: 4rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-cols: 1.5fr repeat(2, 1fr);
  }
}

.footer-info img {
  height: 48px;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer-info p {
  color: hsl(215, 15%, 65%);
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.footer-links-col h3 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: hsl(var(--text-light));
  font-weight: 600;
}

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

.footer-links-col a {
  color: hsl(215, 15%, 65%);
  text-decoration: none;
  transition: var(--transition-fast);
  font-size: 0.95rem;
}

.footer-links-col a:hover {
  color: hsl(var(--accent-cyan));
  padding-left: 4px;
}

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

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: hsl(215, 15%, 65%);
  font-size: 0.95rem;
}

.footer-contact-list li svg {
  width: 20px;
  height: 20px;
  color: hsl(var(--accent-cyan));
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-copy {
  font-size: 0.85rem;
  color: hsl(215, 15%, 55%);
}

.footer-payment {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-payment img {
  height: 24px;
  width: auto;
  opacity: 0.5;
  transition: var(--transition-fast);
  filter: grayscale(1) brightness(2);
}

.footer-payment img:hover {
  opacity: 0.9;
  filter: none;
}

/* ==========================================
   Fotos Page / Gallery Specific Styles
   ========================================== */

.gallery-hero {
  background-color: hsl(var(--bg-dark));
  color: hsl(var(--text-light));
  padding-top: 120px;
  padding-bottom: 5rem;
  position: relative;
  text-align: center;
}

.gallery-hero h1 {
  color: hsl(var(--text-light));
  margin-bottom: 1rem;
}

.gallery-hero p {
  color: hsl(215, 20%, 70%);
  margin-left: auto;
  margin-right: auto;
}

/* Gallery Section & Filter Controls */
.gallery-section {
  background-color: hsl(var(--bg-light));
}

.filter-controls {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.filter-btn {
  background-color: hsl(var(--bg-white));
  border: 1px solid hsl(var(--border-light));
  color: hsl(var(--text-dark));
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn:hover {
  border-color: hsl(var(--accent-blue));
  color: hsl(var(--accent-blue));
}

.filter-btn.active {
  background-color: hsl(var(--accent-blue));
  border-color: hsl(var(--accent-blue));
  color: hsl(var(--text-light));
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.25);
}

/* Responsive Asymmetric Gallery Grid */
.gallery-grid {
  display: flex;
  grid-template-cols: 1fr;
  gap: 1.5rem;
  align-items: center;
  flex-direction: column;
  margin-bottom: 5rem;
}

@media (min-width: 576px) {
  .gallery-grid {
    grid-template-cols: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .gallery-grid {
    grid-template-cols: repeat(3, 1fr);
  }
}

.gallery-item {
  background-color: hsl(var(--bg-white));
  border: 1px solid hsl(var(--border-light));
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
  max-width: 85%;
}

.gallery-item.hidden {
  display: none;
  opacity: 0;
  transform: scale(0.9);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.2) 60%, transparent 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: var(--transition-smooth);
  z-index: 2;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.06);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-tag {
  background-color: hsl(var(--accent-cyan));
  color: hsl(var(--bg-dark));
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  align-self: flex-start;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.gallery-item-title {
  color: hsl(var(--text-light));
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
}

/* Lightbox Modal Styles */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.lightbox-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.95);
  transition: var(--transition-bounce);
}

.lightbox-modal.open .lightbox-content {
  transform: scale(1);
}

.lightbox-img {
  max-width: 100%;
  max-height: 70dvh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-caption {
  color: hsl(var(--text-light));
  text-align: center;
  margin-top: 1.5rem;
}

.lightbox-caption h3 {
  color: hsl(var(--text-light));
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.lightbox-caption p {
  color: hsl(215, 15%, 70%);
  font-size: 0.95rem;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: hsl(var(--text-light));
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

@media (min-width: 768px) {
  .lightbox-close {
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
  }
}

.lightbox-close svg {
  width: 24px;
  height: 24px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: hsl(var(--text-light));
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 10;
  user-select: none;
}

.lightbox-nav:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: hsl(var(--accent-cyan));
}

.lightbox-prev {
  left: -24px;
}

.lightbox-next {
  right: -24px;
}

@media (min-width: 768px) {
  .lightbox-prev {
    left: -70px;
  }

  .lightbox-next {
    right: -70px;
  }
}

/* ==========================================
   Animations & Scroll Reveals
   ========================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}