/* 
 * MAX BABY BANHO E TOSA - Landing Page Style
 * Design: Premium, Clean, Modern, Trust-focused
 */

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

/* --- CUSTOM PROPERTIES --- */
:root {
  /* Colors */
  --primary-color: #1292db;      /* Sky Blue from Logo */
  --primary-hover: #0e7bb9;
  --primary-rgb: 18, 146, 219;
  --primary-light: #f0f8fd;
  
  --dark-color: #0f223d;         /* Premium Dark Navy */
  --dark-light: #1b355a;
  --dark-rgb: 15, 34, 61;
  
  --text-color: #334155;         /* Readable Slate */
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  --accent-color: #ffbc0d;       /* Golden Yellow from Logo Sun */
  --accent-hover: #e0a300;
  
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --bg-dark: #071324;
  
  --success-color: #22c55e;
  
  /* Layout & Spacing */
  --header-height: 80px;
  --max-width: 1200px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 34, 61, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 34, 61, 0.06);
  --shadow-lg: 0 16px 40px rgba(15, 34, 61, 0.1);
  --shadow-premium: 0 24px 60px rgba(18, 146, 219, 0.12);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.06);
  
  /* Borders & Radius */
  --border-color: #e2e8f0;
  --border-light: #f1f5f9;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- RESET & BASIC STYLES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

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

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--dark-color);
  font-weight: 700;
  line-height: 1.25;
}

/* --- TYPOGRAPHY UTILITIES --- */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-accent {
  color: var(--accent-color);
}

/* --- CONTAINER & SECTION LAYOUTS --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

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

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px auto;
}

.section-tag {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-color);
  background-color: var(--primary-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-size: 40px;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }
  .section-subtitle {
    font-size: 16px;
  }
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--bg-white);
  box-shadow: 0 6px 20px rgba(18, 146, 219, 0.25);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transition: all 0.6s ease;
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(18, 146, 219, 0.35);
}

.btn-accent {
  background-color: var(--accent-color);
  color: var(--dark-color);
  box-shadow: 0 6px 20px rgba(255, 188, 13, 0.2);
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 188, 13, 0.3);
}

.btn-outline {
  border: 2px solid var(--border-color);
  color: var(--dark-color);
}

.btn-outline:hover {
  background-color: var(--primary-light);
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--bg-white);
  color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
  background-color: var(--success-color);
  color: var(--bg-white);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.25);
}

.btn-whatsapp:hover {
  background-color: #1eab50;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.35);
}

/* --- HEADER / NAVIGATION --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  z-index: 1000;
  transition: var(--transition-fast);
}

.header.scrolled {
  height: 70px;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border-light);
}

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

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

.logo-img {
  height: 50px;
  width: 50px;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

.header.scrolled .logo-img {
  height: 42px;
  width: 42px;
}

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

.logo-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1;
}

.logo-subtitle {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-color);
  font-weight: 600;
}

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

.nav-link {
  font-weight: 500;
  font-size: 15px;
  color: var(--dark-light);
  transition: var(--transition-fast);
  position: relative;
  padding: 8px 0;
}

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

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

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-toggle {
  display: none;
  font-size: 24px;
  color: var(--dark-color);
}

@media (max-width: 991px) {
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-white);
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    gap: 24px;
    transition: var(--transition-normal);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    border-top: 1px solid var(--border-light);
  }
  
  .nav-menu.open {
    left: 0;
  }
  
  .header-actions .btn {
    display: none; /* Em telas menores, esconde o CTA secundário no header e foca no Hero/Fixo */
  }
  
  .nav-toggle {
    display: block;
  }
}

/* --- HERO SECTION --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 40px);
  position: relative;
  background-color: var(--bg-light);
  overflow: hidden;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(18, 146, 219, 0.08);
  border: 1px solid rgba(18, 146, 219, 0.15);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--success-color);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--success-color);
  animation: pulse 2s infinite;
}

.hero-badge-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-hover);
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 54px;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-color);
  margin-bottom: 40px;
  font-weight: 400;
}

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

.hero-image-wrapper {
  position: relative;
  height: 520px;
  width: 100%;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 6px solid var(--bg-white);
}

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

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

/* Floating Badges in Hero */
.hero-floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}

.hero-floating-badge.badge-1 {
  bottom: 40px;
  left: -30px;
}

.hero-floating-badge.badge-2 {
  top: 40px;
  right: -20px;
  animation-delay: 2s;
}

.floating-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 20px;
}

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

.floating-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.floating-val {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-color);
}

/* Background details */
.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.shape-1 {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 600px;
  height: 600px;
  background-color: rgba(18, 146, 219, 0.03);
  border-radius: 50%;
  filter: blur(80px);
}

.shape-2 {
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background-color: rgba(255, 188, 13, 0.02);
  border-radius: 50%;
  filter: blur(80px);
}

@media (max-width: 991px) {
  .hero {
    padding-top: calc(var(--header-height) + 20px);
    min-height: auto;
    padding-bottom: 60px;
  }
  
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-badge {
    justify-content: center;
  }
  
  .hero-title {
    font-size: 38px;
  }
  
  .hero-desc {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    height: 380px;
    max-width: 480px;
    margin: 0 auto;
  }
  
  .hero-floating-badge.badge-1 {
    left: -10px;
  }
  
  .hero-floating-badge.badge-2 {
    right: -10px;
  }
}

/* --- TRUST BAR --- */
.trust-bar {
  background-color: var(--dark-color);
  padding: 24px 0;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-lg);
  margin-top: -30px;
  border-radius: var(--radius-md);
  margin-left: 24px;
  margin-right: 24px;
}

@media (max-width: 768px) {
  .trust-bar {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
    padding: 30px 0;
  }
}

.trust-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--bg-white);
  font-weight: 500;
  font-size: 15px;
}

.trust-icon {
  flex-shrink: 0;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

@media (max-width: 991px) {
  .trust-items {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .trust-item {
    width: 45%;
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  .trust-item {
    width: 100%;
  }
}

/* --- DIFFERENTIALS SECTION --- */
.diff {
  background-color: var(--bg-light);
}

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

.diff-card {
  background-color: var(--bg-white);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.diff-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(18, 146, 219, 0.15);
}

.diff-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background-color: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  transition: var(--transition-normal);
}

.diff-card:hover .diff-card-icon {
  background-color: var(--primary-color);
  color: var(--bg-white);
  transform: rotate(5deg);
}

.diff-card-title {
  font-size: 18px;
  margin-bottom: 12px;
}

.diff-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 1199px) {
  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .diff-grid {
    grid-template-columns: 1fr;
  }
  .diff-card {
    padding: 30px 24px;
  }
}

/* --- SERVICES SECTION --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(18, 146, 219, 0.15);
}

.service-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

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

.service-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(15, 34, 61, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--accent-color);
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: var(--radius-full);
}

.service-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}

.service-features-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--text-color);
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-feature svg {
  color: var(--primary-color);
  flex-shrink: 0;
}

.service-card .btn {
  width: 100%;
  font-size: 15px;
  padding: 12px 24px;
}

@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .service-img-wrapper {
    height: 200px;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* --- GALLERY SECTION --- */
.gallery {
  background-color: var(--bg-light);
}

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

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  border: 3px solid var(--bg-white);
  transition: var(--transition-normal);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 146, 219, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
}

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

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

.gallery-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-white);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(20px);
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.gallery-item:hover .gallery-icon {
  transform: translateY(0);
}

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* --- STRUCTURE SECTION --- */
.structure-wrapper {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 60px;
}

.structure-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.struct-feature-item {
  display: flex;
  gap: 16px;
}

.struct-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.struct-feature-content h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.struct-feature-content p {
  font-size: 13px;
  color: var(--text-muted);
}

.structure-images {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.structure-img-large {
  grid-row: span 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--bg-white);
  height: 100%;
  min-height: 400px;
}

.structure-img-small {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--bg-white);
}

.structure-img-large img,
.structure-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .structure-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .structure-images {
    order: -1;
  }
}

@media (max-width: 576px) {
  .structure-features {
    grid-template-columns: 1fr;
  }
}

/* --- HOW IT WORKS --- */
.steps {
  background-color: var(--bg-light);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

/* Connective Line for steps on large devices */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, rgba(18, 146, 219, 0.1) 0%, rgba(18, 146, 219, 0.6) 50%, rgba(18, 146, 219, 0.1) 100%);
  z-index: 1;
}

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

.step-number-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--bg-white);
  color: var(--primary-color);
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--border-light);
  transition: var(--transition-normal);
}

.step-card:hover .step-number {
  background-color: var(--primary-color);
  color: var(--bg-white);
  border-color: var(--primary-light);
  transform: scale(1.1);
  box-shadow: var(--shadow-premium);
}

.step-badge {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 28px;
  height: 28px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-color);
  font-size: 13px;
  border: 2px solid var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.step-title {
  font-size: 18px;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  padding: 0 10px;
}

@media (max-width: 991px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .steps-grid::before {
    display: none;
  }
}

@media (max-width: 576px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* --- TESTIMONIALS SECTION --- */
.testimonials {
  overflow: hidden;
}

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

.testimonial-card {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(18, 146, 219, 0.1);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-color);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary-color);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--bg-white);
}

.author-info h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.author-info p {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

@media (max-width: 991px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

/* --- FAQ SECTION --- */
.faq {
  background-color: var(--bg-light);
}

.faq-wrapper {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(18, 146, 219, 0.2);
  box-shadow: var(--shadow-md);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  text-align: left;
  background: none;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-color);
  cursor: pointer;
  gap: 20px;
  transition: var(--transition-fast);
}

.faq-trigger svg {
  color: var(--primary-color);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open {
  border-color: rgba(18, 146, 219, 0.3);
  box-shadow: var(--shadow-md);
}

.faq-item.open .faq-trigger {
  color: var(--primary-color);
}

.faq-item.open .faq-trigger svg {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-content-inner {
  padding: 0 24px 24px 24px;
  font-size: 15px;
  color: var(--text-color);
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
}

@media (max-width: 768px) {
  .faq-trigger {
    padding: 20px;
    font-size: 16px;
  }
  .faq-content-inner {
    padding: 0 20px 20px 20px;
    font-size: 14px;
  }
}

/* --- FINAL CTA SECTION --- */
.cta-section {
  color: var(--bg-white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 34, 61, 0.95) 0%, rgba(18, 146, 219, 0.92) 100%);
  z-index: 1;
}

.cta-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}

.cta-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  color: var(--bg-white);
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.15;
}

.cta-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-title {
    font-size: 32px;
  }
  .cta-text {
    font-size: 16px;
  }
  .cta-section {
    padding: 70px 0;
  }
}

/* --- FOOTER --- */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.8fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-title {
  color: var(--bg-white);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.footer-logo-subtitle {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-color);
  font-weight: 600;
}

.footer-brand-desc {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-title {
  color: var(--bg-white);
  font-size: 16px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.footer-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
}

.footer-info-item {
  display: flex;
  gap: 12px;
  line-height: 1.5;
}

.footer-info-item svg {
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-link:hover {
  background-color: var(--primary-color);
  color: var(--bg-white);
  transform: translateY(-3px);
  border-color: var(--primary-color);
}

.footer-map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 200px;
}

.footer-map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.2) contrast(1.1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-link:hover {
  color: var(--primary-color);
}

@media (max-width: 991px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer-bottom-links {
    justify-content: center;
  }
}

/* --- WHATSAPP FLOATING BUTTON --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  z-index: 999;
  transition: var(--transition-normal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
}

.whatsapp-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(37, 211, 102, 0.45));
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background-color: var(--dark-color);
  color: var(--bg-white);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: var(--transition-fast);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background-color: var(--dark-color);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* --- LIGHTBOX (GALLERY POPUP) --- */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 19, 36, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

.lightbox-content-wrapper {
  position: relative;
  max-width: 90%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 4px solid var(--bg-white);
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  color: var(--bg-white);
  font-size: 28px;
  cursor: pointer;
  background: none;
  border: none;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--primary-color);
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bg-white);
  font-size: 32px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-nav:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

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

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

@media (max-width: 768px) {
  .lightbox-prev {
    left: -10px;
    background: rgba(7, 19, 36, 0.6);
  }
  .lightbox-next {
    right: -10px;
    background: rgba(7, 19, 36, 0.6);
  }
  .lightbox-close {
    right: 10px;
    top: -40px;
  }
}

/* --- ANIMATION EFFECTS --- */
@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

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

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

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

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

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

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