/* ========================================
   VARIABLES & RESET
   ======================================== */

:root {
  --primary: #0B4F8A;
  --primary-fg: #fff;
  --secondary: #f59e0b;
  --secondary-fg: #1f2937;
  --muted: #f3f4f6;
  --muted-fg: #6b7280;
  --background: #fff;
  --foreground: #1f2937;
  --card: #fff;
  --border: #e5e7eb;
  --destructive: #dc2626;
  --whatsapp: #25d366;
  --section-alt: #f9fafb;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.5;
}

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

button {
  cursor: pointer;
  font-family: inherit;
}

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

svg {
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ========================================
   LAYOUT & SPACING
   ======================================== */

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

section {
  padding: 80px 32px;
}

@media (max-width: 1024px) {
  section {
    padding: 64px 16px;
  }
}

.section-light {
  background: var(--background);
}

.section-dark {
  background: var(--section-alt);
}

/* ========================================
   HEADER
   ======================================== */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 300ms ease;
  background: transparent;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo {
  height: 40px;
  width: auto;
}

header .scrolled .logo {
  opacity: 0.9;
}

/* Desktop Navigation */
.desktop-nav {
  display: none;
  gap: 28px;
  align-items: center;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
}

.desktop-nav a {
  font-size: 14px;
  font-weight: 500;
  transition: color 300ms ease;
  color: #fff;
}

header.scrolled .desktop-nav a {
  color: #1e293b;
}

.cta-button {
  background: var(--whatsapp) !important;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: opacity 300ms;
}

.cta-button:hover {
  opacity: 0.9;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  font-size: 24px;
  color: #fff;
}

header.scrolled .menu-toggle {
  color: #1e293b;
}

.iframe-preview header {
  background: rgba(255, 255, 255, 0.95) !important;
}

.iframe-preview .desktop-nav a,
.iframe-preview .menu-toggle {
  color: #1e293b !important;
}

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 24px;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  color: var(--foreground);
  font-weight: 500;
  padding: 8px 0;
  margin-bottom: 16px;
  transition: color 300ms;
}

.mobile-menu a:hover {
  color: var(--primary);
}

/* ========================================
   HERO SECTION
   ======================================== */

#inicio {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 120px;
}

#inicio::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-bg-new.png');
  background-size: cover;
  background-position: center;
  z-index: -2;
  opacity: 0.5;
}

#inicio::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 35, 82, 0.808), rgba(0, 46, 88, 0.836));
  z-index: -1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
}

/* Hero Text */
.hero-text h1 {
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-text h1 .italic {
  font-style: italic;
}

.hero-text h1 .secondary-text {
  color: var(--secondary);
}

.hero-subtitle {
  font-size: 24px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}

.hero-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 300ms;
}

.button.primary {
  background: var(--secondary);
  color: var(--secondary-fg);
}

.button.primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.button.secondary {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--secondary);
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 4px;
  margin-bottom: 32px;
}

/* Especialidades */
.especialidades {
  display: none;
  background: rgba(7, 65, 255, 0.062);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 24px;
}

@media (min-width: 1024px) {
  .especialidades {
    display: block;
  }
}

.especialidade {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.especialidade:last-child {
  border-bottom: none;
}

.especialidade-tag {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--secondary);
}

.especialidade h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 8px 0;
}

.especialidade p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* ART Badge */
.art-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.art-icon {
  width: 36px;
  height: 36px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.art-text h4 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.art-text p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 8px;
  animation: float 3s ease-in-out infinite;
}

.scroll-indicator::after {
  content: '';
  width: 6px;
  height: 12px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 3px;
  animation: scroll 2s ease-in-out infinite;
}

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

@keyframes scroll {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

/* ========================================
   SECTION HEADERS
   ======================================== */

.section-header {
  max-width: 672px;
  margin-bottom: 56px;
}

.section-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--secondary);
  display: block;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--muted-fg);
  line-height: 1.6;
}

/* ========================================
   CARDS
   ======================================== */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: all 300ms;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 500ms;
}

.card:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
  border-color: rgba(245, 158, 11, 0.4);
}

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

.card-numbered::after {
  content: attr(data-number);
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 48px;
  font-weight: 700;
  color: rgba(243, 244, 246, 0.3);
  font-family: monospace;
  user-select: none;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 300ms;
  flex-shrink: 0;
}

.card:hover .card-icon {
  background: rgba(245, 158, 11, 0.2);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--secondary);
}

.card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 8px;
}

.card p {
  font-size: 14px;
  color: var(--muted-fg);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.card ul {
  list-style: none;
}

.card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--muted-fg);
  margin-bottom: 8px;
}

.card li::before {
  content: '▸';
  color: var(--secondary);
  margin-top: 2px;
  flex-shrink: 0;
}

/* ========================================
   LAYOUT: TWO COLUMNS
   ======================================== */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 1024px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ========================================
   ALERTS
   ======================================== */

.alert {
  background: rgba(220, 38, 38, 0.05);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-left: 4px solid #dc2626;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
}

.alert-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #dc2626;
  margin-bottom: 4px;
}

.alert p {
  font-size: 14px;
  color: var(--muted-fg);
}

/* ========================================
   STATUS ITEMS
   ======================================== */

.status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

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

.status-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

@media (max-width: 768px) {
  .status-list {
    grid-template-columns: 1fr;
  }
}

.status-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: border-color 300ms;
}

.status-item:hover {
  border-color: rgba(245, 158, 11, 0.3);
}

.status-item span:first-child {
  font-size: 14px;
  font-weight: 500;
  color: var(--foreground);
}

.status-badge {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid;
  white-space: nowrap;
}

.status-high {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  border-color: rgba(220, 38, 38, 0.2);
}

.status-medium {
  background: rgba(245, 158, 11, 0.1);
  color: var(--secondary);
  border-color: rgba(245, 158, 11, 0.2);
}

/* ========================================
   PROCESS SECTION
   ======================================== */

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 32px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(to right, var(--secondary), var(--secondary) 80%, transparent);
  z-index: 0;
  display: none;
}

@media (min-width: 768px) {
  .process-grid::before {
    display: block;
  }
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--background);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: monospace;
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
  transition: border-color 300ms;
}

.process-step:hover .process-number {
  border-color: var(--secondary);
}

.process-step h4 {
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  color: var(--muted-fg);
}

/* ========================================
   COBERTURA/CITIES
   ======================================== */

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 8px;
}

.city-tag {
  text-align: center;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid;
  font-size: 14px;
  transition: all 300ms;
}

.city-main {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.25);
  color: var(--secondary);
  font-weight: 600;
}

.city-other {
  background: var(--card);
  border-color: var(--border);
  color: var(--muted-fg);
}

.city-other:hover {
  color: var(--foreground);
  border-color: var(--secondary);
}

/* Location Card */
.location-card {
  background: var(--card);
  border: 1px solid;
  border-color: var(--border);
  border-top-color: var(--secondary);
  border-top-width: 2px;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.location-icon {
  width: 40px;
  height: 40px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-icon svg {
  width: 20px;
  height: 20px;
  color: var(--secondary);
}

.location-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--foreground);
}

.location-phone {
  font-size: 12px;
  color: var(--muted-fg);
  margin-top: 4px;
}

/* ========================================
   PORTFOLIO SECTION
   ======================================== */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 1;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms;
}

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

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 64, 212, 0.425), rgba(0, 119, 255, 0.295));
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 300ms;
}

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

.portfolio-overlay h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

/* ========================================
   VIDEOS SECTION
   ======================================== */

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.video-item {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 300ms, box-shadow 300ms;
}

.video-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.video-item iframe {
  border-radius: 12px;
}

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

  .video-item {
    min-height: 280px;
  }
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
}

@media (max-width: 1024px) {
  .faq-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 300ms;
}

.faq-button {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  background: var(--card);
  border: none;
  cursor: pointer;
  text-align: left;
  font-weight: 500;
  color: var(--foreground);
  transition: background 300ms;
}

.faq-button:hover {
  background: rgba(243, 244, 246, 0.5);
}

.faq-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  font-size: 14px;
  color: var(--muted-fg);
  line-height: 1.6;
  background: var(--card);
}

.faq-answer.open {
  display: block;
}

/* ========================================
   PROFILE SECTION
   ======================================== */

.profile-section {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .profile-section {
    flex-direction: row;
    align-items: flex-start;
  }
}

.profile-img {
  width: 224px;
  height: 224px;
  border-radius: 16px;
  border: 2px solid var(--border);
  overflow: hidden;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .profile-img {
    width: 256px;
    height: 256px;
  }
}

.profile-content {
  flex: 1;
}

.profile-info {
  text-align: center;
  margin-bottom: 32px;
}

@media (min-width: 1024px) {
  .profile-info {
    text-align: left;
  }
}

.profile-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 8px;
}

.profile-info p {
  font-size: 14px;
  color: var(--muted-fg);
}

.profile-badge {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  background: var(--primary);
  color: var(--primary-fg);
  padding: 4px 12px;
  border-radius: 20px;
}

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

.credential {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: all 300ms;
}

.credential:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border-color: rgba(245, 158, 11, 0.3);
}

.credential h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 8px;
}

.credential p {
  font-size: 14px;
  color: var(--muted-fg);
  line-height: 1.6;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
  background: var(--secondary);
  position: relative;
  overflow: hidden;
  color: var(--secondary-fg);
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .cta-section {
    flex-direction: row;
  }
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: linear-gradient(hsla(0, 0%, 0%, 0.08) 1px, transparent 1px),
                    linear-gradient(90deg, hsla(0, 0%, 0%, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
}

.cta-container {
  display: contents;
}

.cta-section > * {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}

.cta-section p {
  opacity: 0.7;
  max-width: 448px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 300ms;
  font-size: 16px;
}

.cta-btn.primary {
  background: var(--foreground);
  color: var(--background);
}

.cta-btn.primary:hover {
  opacity: 0.9;
}

.cta-btn.secondary {
  background: transparent;
  border: 2px solid var(--secondary-fg);
  color: var(--secondary-fg);
}

.cta-btn.secondary:hover {
  background: rgba(31, 41, 55, 0.1);
}

/* ========================================
   FOOTER
   ======================================== */

footer {
  background: var(--primary);
  color: var(--primary-fg);
  padding: 56px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

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

.footer-col {
  max-width: 320px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}

.footer-col p {
  font-size: 14px;
  opacity: 0.6;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms;
}

.social-link:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

.social-link svg {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 300ms;
}

.social-link:hover svg {
  color: #1f2937;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-nav a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 300ms;
}

.footer-nav a:hover {
  color: var(--primary-fg);
}

.footer-credit {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .footer-credit {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-credit p {
  font-size: 14px;
  opacity: 0.5;
}

.footer-credit span {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--secondary);
}

/* ========================================
   WHATSAPP FLOAT BUTTON
   ======================================== */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 300ms;
}

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

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */

@media (max-width: 768px) {
  .hero-content {
    gap: 32px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    gap: 24px;
  }

  .cta-section {
    gap: 24px;
    padding: 48px 32px;
  }
}
