/* RESET Y BASE */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
  color: #fafafa;
  min-height: 100vh;
  background: #0f0f0f url("assets/bg.png") center/cover no-repeat fixed;
  cursor: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
  z-index: -1;
}

/* CURSOR PERSONALIZADO */
.custom-cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: #d6006f;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease;
  box-shadow: 0 0 10px rgba(214, 0, 111, 0.5);
}

.custom-cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 2px solid #d6006f;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.2s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  opacity: 0.5;
}

.custom-cursor.hover {
  transform: scale(1.5) translate(-50%, -50%);
  background: #e91e63;
  box-shadow: 0 0 20px rgba(233, 30, 99, 0.8);
}

.custom-cursor-ring.hover {
  width: 60px;
  height: 60px;
  opacity: 0.8;
  border-color: #e91e63;
  border-width: 2px;
}

.custom-cursor.click {
  transform: scale(0.8) translate(-50%, -50%);
}

.custom-cursor-ring.click {
  width: 50px;
  height: 50px;
  opacity: 1;
}

/* Cursor blanco para fondos magenta */
.custom-cursor.white {
  background: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.custom-cursor-ring.white {
  border-color: #fff;
  opacity: 0.6;
}

.custom-cursor.white.hover {
  background: #fff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.custom-cursor-ring.white.hover {
  border-color: #fff;
}

/* PRELOADER */
.preloader {
  position: fixed;
  inset: 0;
  background: #0f0f0f;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  width: 200px;
  height: auto;
  margin-bottom: 2rem;
  animation: pulse 2s ease-in-out infinite;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.preloader-progress {
  height: 100%;
  background: linear-gradient(90deg, #d6006f, #e91e63);
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 10px;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* HEADER STICKY */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  z-index: 500;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #1e1e1e;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.sticky-header.visible {
  transform: translateY(0);
}

.sticky-header-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.sticky-logo {
  height: auto;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

/* HAMBURGER MENU */
.hamburger {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid #d6006f;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all 0.3s ease;
  padding: 0;
  z-index: 700;
  margin-left: auto;
}

.hamburger:hover {
  background: #d6006f;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: #d6006f;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger:hover span {
  background: #fff;
}

.hamburger.active {
  background: #d6006f;
}

.hamburger.active span {
  background: #fff;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  max-width: 90vw;
  background: rgba(15, 15, 15, 0.98);
  backdrop-filter: blur(10px);
  border-left: 2px solid #1e1e1e;
  border-radius: 0;
  padding: 5rem 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 600;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  height: 100vh;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu a {
  color: #fafafa;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: block;
  border: 2px solid transparent;
}

.mobile-menu a:hover {
  background: #d6006f;
  border-color: #d6006f;
  transform: translateX(-5px);
}

/* HERO SECTION */
.hero-section {
  width: 100%;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 80%;
  max-width: 280px;
  height: auto;
  margin: 2rem auto 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.5s;
}

.reel-header {
  text-align: center;
  margin: 0 auto 2rem;
  max-width: 800px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.6s;
}

.reel-duration {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(214, 0, 111, 0.1);
  border: 2px solid #d6006f;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: #d6006f;
  font-weight: 600;
  margin-top: 0.5rem;
}

.reel-duration svg {
  width: 16px;
  height: 16px;
  fill: #d6006f;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16/9;
  margin-bottom: 0.2rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.7s;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  overflow: hidden;
}

.video-wrapper::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #d6006f, #e91e63, #d6006f);
  border-radius: 12px;
  z-index: -1;
  opacity: 0;
  animation: borderPulse 3s ease-in-out infinite;
}

@keyframes borderPulse {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 0.6;
  }
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
  background: #000;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
}

.play-overlay:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.play-btn-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d6006f, #e91e63);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(214, 0, 111, 0.6);
  animation: playPulse 2s ease-in-out infinite;
  position: relative;
}

.play-btn-circle::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 3px solid rgba(214, 0, 111, 0.3);
  animation: ringPulse 2s ease-in-out infinite;
}

@keyframes playPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 40px rgba(214, 0, 111, 0.6);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(214, 0, 111, 0.8);
  }
}

@keyframes ringPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.6;
  }
}

.play-btn-circle svg {
  width: 40px;
  height: 40px;
  fill: #fff;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  margin-left: 5px;
}

.play-text {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  border: 2px solid rgba(214, 0, 111, 0.5);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SECCIONES */
section {
  width: 100%;
  max-width: 1200px;
  padding: 4rem 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.5px;
}

/* LOGOS MARCAS */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;
  align-items: center;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: all 0.4s ease;
  filter: grayscale(100%) brightness(1.1);
  cursor: pointer;
  padding: 1.5rem;
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-item:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1);
  transform: scale(1.08) translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(214, 0, 111, 0.3);
}

.brand-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d6006f, transparent);
  transition: transform 0.3s ease;
}

.brand-item:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.brand-item img {
  max-width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
}

/* ABOUT SECTION */
.about-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: flex-end;
  position: relative;
}

.about-photo {
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
}

.about-photo::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(214, 0, 111, 0.35) 0%, transparent 65%);
  filter: blur(50px);
  z-index: 0;
  opacity: 0.7;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

.about-photo img {
  width: 120%;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
  transform: translateX(0);
}

.about-content {
  text-align: left;
}

.about-content h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: -1px;
}

.about-role {
  color: #d6006f;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.about-text {
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #ccc;
  font-size: 1.1rem;
  max-width: 600px;
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.skill-badge {
  background: #d6006f;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid #d6006f;
}

.skill-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(214, 0, 111, 0.4);
  background: transparent;
  color: #d6006f;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #2a2a2a;
}

.stat-item {
  transition: transform 0.3s ease;
  padding: 1rem;
  background: rgba(214, 0, 111, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(214, 0, 111, 0.2);
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: #d6006f;
  background: rgba(214, 0, 111, 0.1);
}

.stat-item strong {
  display: block;
  font-size: 2.5rem;
  color: #d6006f;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-item span {
  font-size: 0.95rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}

/* SOCIAL PROOF */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #d6006f 0%, #e91e63 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title p {
  color: #cccccc;
  font-size: 1.1rem;
}

/* ===== UPWORK BADGE SIMPLIFICADO ===== */
.upwork-badge {
  background: linear-gradient(135deg, #14a800 0%, #0d8500 100%);
  border-radius: 24px;
  padding: 2.5rem 3rem;
  margin-top: 3rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 10px 40px rgba(20, 168, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.upwork-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.1) 0%, transparent 60%);
  opacity: 1;
  pointer-events: none;
}

/* Header Section */
.upwork-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  z-index: 1;
  flex-shrink: 0;
}

.upwork-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.upwork-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.upwork-title {
  text-align: left;
}

.upwork-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.25rem;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.upwork-role {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Badges Oficiales */
.upwork-badges-official {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  z-index: 1;
}

.badge-official {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.badge-official.job-success {
  background: rgba(23, 43, 77, 0.95);
  color: #fff;
}

.badge-official.job-success svg {
  width: 20px;
  height: 20px;
  color: #1890ff;
}

.badge-official.top-rated {
  background: rgba(233, 30, 99, 0.95);
  color: #fff;
}

.badge-official.top-rated svg {
  width: 18px;
  height: 18px;
  color: #ffd700;
}

/* CTA Button */
.upwork-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  color: #14a800;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #fff;
}

.upwork-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
}

.upwork-cta svg {
  width: 20px;
  height: 20px;
  stroke: #14a800;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.3s ease;
}

.upwork-cta:hover svg {
  transform: translateX(4px);
  stroke: #fff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d6006f 0%, #e91e63 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: #d6006f;
  box-shadow: 0 10px 40px rgba(214, 0, 111, 0.2);
}

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

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d6006f 0%, #e91e63 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.client-info {
  flex: 1;
}

.client-name {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.client-role {
  color: #cccccc;
  font-size: 0.9rem;
}

.rating {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.rating svg {
  width: 18px;
  height: 18px;
  fill: #ffd700;
}

.testimonial-text {
  color: #cccccc;
  line-height: 1.6;
  font-size: 0.95rem;
  font-style: italic;
}

.testimonial-project {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #2a2a2a;
  font-size: 0.85rem;
  color: #999;
}

.testimonial-project strong {
  color: #d6006f;
}

.quote-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  opacity: 0.1;
}

.quote-icon svg {
  width: 100%;
  height: 100%;
  fill: #d6006f;
}

/* FORMULARIO DE CONTACTO */
/* CTA SECTION */
.cta-section {
  width: 100%;
  max-width: 960px;
  margin: 4rem auto;
  background: linear-gradient(135deg, #d6006f 0%, #b8005c 100%);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(214, 0, 111, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  line-height: 1.2;
  color: #fff;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #fff;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  min-width: 200px;
  border: 2px solid transparent;
}

.cta-whatsapp {
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  border-color: #25D366;
}

.cta-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
  background: transparent;
  color: #25D366;
}

.cta-email {
  background: #fff;
  color: #d6006f;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
  border-color: #fff;
}

.cta-email:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(214, 0, 111, 0.4);
  background: transparent;
  color: #fff;
}

.cta-email:hover svg {
  fill: #fff;
}

.cta-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  transition: all 0.3s ease;
}

.contact-info {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin: 0;
}

.contact-info svg {
  width: 20px;
  height: 20px;
  fill: rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
}

/* FOOTER */
footer {
  width: 100%;
  background: #0a0a0a;
  padding: 3rem 1.5rem 1.5rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.copyright {
  font-size: 0.875rem;
  opacity: 0.75;
  line-height: 1.4;
}

/* WHATSAPP */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 100;
  transition: transform 0.2s ease;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.08);
}

.whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

@keyframes pulse-whatsapp {
  0%, 100% {
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
  }
}

/* LANGUAGE SWITCHER */
.lang-btn {
  background: transparent;
  border: 2px solid #2a2a2a;
  color: #999;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  border-color: #d6006f;
  color: #d6006f;
}

.lang-btn.active {
  background: #d6006f;
  border-color: #d6006f;
  color: #fff;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem 3rem;
  }
  
  .brand-item img {
    max-height: 70px;
  }
  
  .about-container {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    align-items: flex-end;
  }
  
  .about-photo {
    max-width: none;
    overflow: visible;
  }
  
  .about-photo img {
    width: 130%;
    transform: translateX(0);
  }
  
  .about-content h3 {
    font-size: 3rem;
  }
  
  .about-role {
    font-size: 1.4rem;
  }
  
  .about-text {
    font-size: 1.15rem;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .cta-section h2 {
    font-size: 2.5rem;
  }
  
  .cta-whatsapp-btn {
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
  }
  
  .upwork-badge {
    flex-direction: row;
    text-align: left;
  }
}

@media (max-width: 768px) {
  section {
    padding: 2rem 1.5rem;
  }
  
  #about {
    padding-top: 1.5rem;
  }
  
  .upwork-badge {
    padding: 2rem 1.5rem;
    flex-direction: column;
    text-align: center;
  }
  
  .upwork-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .upwork-avatar {
    width: 60px;
    height: 60px;
  }
  
  .upwork-title {
    text-align: center;
  }
  
  .upwork-name {
    font-size: 1.3rem;
  }
  
  .upwork-role {
    font-size: 0.9rem;
  }
  
  .upwork-badges-official {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    align-items: center;
  }
  
  .badge-official {
    justify-content: center;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  
  .upwork-cta {
    font-size: 0.9rem;
    padding: 0.9rem 2rem;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .about-content h3 {
    font-size: 2rem;
  }
  
  .stat-item strong {
    font-size: 2rem;
  }
  
  body {
    cursor: auto;
  }
  
  .custom-cursor,
  .custom-cursor-ring {
    display: none;
  }
}

@media (max-width: 767px) {
  .stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .about-content h3 {
    font-size: 2rem;
  }
  
  .stat-item strong {
    font-size: 2rem;
  }
}

@media (min-width: 1200px) {
  .logo {
    max-width: 320px;
  }
  
  .sticky-logo {
    max-width: 320px;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  .brands-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .cta-section {
    padding: 4rem 3rem;
  }
}