/* =============================================
   PINTURAPREMIUM FLORIPA - MAIN CSS (UNIFICADO)
   Design System: Navy + Gold + Syne
   Optimizado para experiencia mobile app-like
   ============================================= */

/* =============================================
   RESET CSS
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { 
  scroll-behavior: smooth; 
  font-size: 16px; 
  -webkit-tap-highlight-color: transparent; 
  -webkit-text-size-adjust: 100%;
}

/* =============================================
   VARIÁVEIS DE DESIGN (TOKENS)
   ============================================= */
:root {
  --navy: #0D1B2A;
  --navy-mid: #162638;
  --navy-light: #1E3448;
  --gold: #D4AF37;
  --gold-light: #E8CC62;
  --gold-pale: #F5E9AC;
  --white: #FFFFFF;
  --off-white: #F7F5F0;
  --gray-100: #EDEAE4;
  --gray-200: #D5D1C9;
  --gray-400: #9A9590;
  --gray-600: #6B6760;
  --text-dark: #0D1B2A;
  --text-body: #3A3530;
  --text-muted: #72706C;
  --green: #10B981;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(13,27,42,0.08);
  --shadow-md: 0 8px 32px rgba(13,27,42,0.12);
  --shadow-lg: 0 20px 60px rgba(13,27,42,0.18);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 16px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* =============================================
   TIPOGRAFIA BASE
   ============================================= */
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 0;
  padding-bottom: var(--safe-bottom);
  padding-left: var(--safe-left);
  padding-right: var(--safe-right);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
}

p {
  color: var(--text-body);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

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

/* =============================================
   UTILITÁRIOS
   ============================================= */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}

@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }
}

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

.text-gradient {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   BOTÕES GLOBAIS - Touch targets 44px+
   ============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.85rem, 2vw, 0.9rem);
  padding: clamp(12px, 3vw, 14px) clamp(20px, 4vw, 24px);
  min-height: 48px;
  min-width: 48px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
  border: none;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,175,55,0.4);
}

.btn-primary:active {
  transform: scale(0.97);
  transition: transform 0.1s ease;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.85rem, 2vw, 0.9rem);
  padding: clamp(12px, 3vw, 14px) clamp(20px, 4vw, 24px);
  min-height: 48px;
  min-width: 48px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
}

.btn-secondary:active {
  transform: scale(0.97);
  transition: transform 0.1s ease;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.8rem, 2vw, 0.85rem);
  padding: clamp(10px, 2.5vw, 12px) clamp(16px, 4vw, 20px);
  min-height: 48px;
  min-width: 48px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 1.5px solid var(--navy);
  transition: transform var(--transition), background var(--transition), color var(--transition);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-dark:active {
  transform: scale(0.97);
  transition: transform 0.1s ease;
}

/* =============================================
   HEADER (FIXO) - Compacto al scroll
   ============================================= */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
  padding: 0;
  padding-top: var(--safe-top);
  will-change: transform;
}

#header.scrolled {
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(12px, 4vw, 20px);
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 429px) {
  .header-inner {
    height: 60px;
  }
}

@media (min-width: 641px) {
  .header-inner {
    height: 64px;
  }
}

@media (min-width: 768px) {
  .header-inner {
    height: 72px;
    padding: 0 32px;
  }
}

#header.scrolled .header-inner {
  height: 48px;
}

@media (min-width: 429px) {
  #header.scrolled .header-inner {
    height: 52px;
  }
}

@media (min-width: 641px) {
  #header.scrolled .header-inner {
    height: 56px;
  }
}

@media (min-width: 768px) {
  #header.scrolled .header-inner {
    height: 60px;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: clamp(6px, 2vw, 10px);
  text-decoration: none;
  min-height: 44px;
  padding: 4px 0;
}

.logo-icon {
  width: clamp(28px, 5vw, 36px);
  height: clamp(28px, 5vw, 36px);
  background: var(--gold);
  border-radius: clamp(6px, 1.5vw, 8px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.logo-icon svg {
  width: clamp(16px, 3vw, 20px);
  height: clamp(16px, 3vw, 20px);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(0.8rem, 2.5vw, 1rem);
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.logo-text span {
  color: var(--gold);
}

.logo-sub {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.5rem, 1.5vw, 0.6rem);
  font-weight: 300;
  color: var(--gray-400);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Navegação */
nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
}

nav a {
  font-family: var(--font-body);
  font-size: clamp(0.78rem, 1.5vw, 0.85rem);
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: clamp(8px, 2vw, 8px) clamp(10px, 2vw, 12px);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}

nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-header {
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.75rem, 1.5vw, 0.8rem);
  padding: clamp(8px, 2vw, 8px) clamp(14px, 3vw, 18px);
  min-height: 44px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: transform var(--transition), background var(--transition);
  white-space: nowrap;
  touch-action: manipulation;
}

.btn-header:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-header:active {
  transform: scale(0.97);
}

/* Menu Mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 5vw, 28px);
  padding: 40px 20px;
  padding-top: calc(60px + var(--safe-top));
  padding-bottom: var(--safe-bottom);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 5vw, 1.6rem);
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color var(--transition);
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 8px 16px;
}

.mobile-nav a:hover {
  color: var(--gold);
}

.mobile-nav-close {
  position: absolute;
  top: clamp(16px, 3vw, 20px);
  top: calc(clamp(16px, 3vw, 20px) + var(--safe-top));
  right: clamp(16px, 3vw, 20px);
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 12px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 899px) {
  nav, .btn-header {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
}

/* =============================================
   HERO SECTION - Otimizado 320px-428px
   ============================================= */
#hero {
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 56px;
  padding-top: calc(56px + var(--safe-top));
}

@media (min-width: 429px) {
  #hero {
    padding-top: 60px;
    padding-top: calc(60px + var(--safe-top));
  }
}

@media (min-width: 641px) {
  #hero {
    padding-top: 64px;
    padding-top: calc(64px + var(--safe-top));
  }
}

@media (min-width: 768px) {
  #hero {
    padding-top: 72px;
    padding-top: calc(72px + var(--safe-top));
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-blob-1 {
  position: absolute;
  width: clamp(300px, 60vw, 500px);
  height: clamp(300px, 60vw, 500px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
  top: -80px;
  right: -80px;
}

.hero-blob-2 {
  position: absolute;
  width: clamp(180px, 40vw, 300px);
  height: clamp(180px, 40vw, 300px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
  bottom: -30px;
  left: 30px;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: clamp(30px, 8vw, 50px) clamp(30px, 8vw, 50px);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(30px, 8vw, 60px) 0 clamp(20px, 5vw, 40px);
  max-width: 700px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--gold-light);
  font-size: clamp(0.62rem, 2vw, 0.72rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: clamp(4px, 1.5vw, 6px) clamp(10px, 3vw, 14px);
  border-radius: 100px;
  margin-bottom: clamp(16px, 4vw, 24px);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
  will-change: transform, opacity;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.5); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 4.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: clamp(12px, 3vw, 20px);
}

.hero-title .line-2 {
  color: var(--gold);
}

.hero-title .line-3 {
  font-size: clamp(1rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
  letter-spacing: -0.01em;
  margin-top: 4px;
}

.hero-desc {
  font-size: clamp(0.88rem, 2vw, 1rem);
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin-bottom: clamp(20px, 4vw, 28px);
  font-weight: 300;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: clamp(8px, 2vw, 10px);
  flex-wrap: wrap;
  margin-bottom: clamp(24px, 5vw, 40px);
}

.hero-stats {
  display: flex;
  gap: clamp(16px, 4vw, 24px);
  flex-wrap: wrap;
  padding-top: clamp(20px, 4vw, 32px);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: clamp(0.62rem, 1.5vw, 0.7rem);
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =============================================
   EXPRESS STRIP (MARQUEE)
   ============================================= */
.express-strip {
  background: var(--gold);
  padding: clamp(8px, 2vw, 10px) 0;
  overflow: hidden;
  width: 100%;
}

.express-strip-inner {
  display: flex;
  gap: clamp(30px, 8vw, 50px);
  animation: marquee 20s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.express-strip-item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.62rem, 2vw, 0.7rem);
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.express-strip-item::before {
  content: '●';
  font-size: 0.35rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   SEÇÕES COMUNS
   ============================================= */
.section-kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-size: clamp(0.65rem, 1.5vw, 0.7rem);
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: clamp(4px, 1vw, 8px);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: clamp(8px, 2vw, 12px);
}

.section-desc {
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.7;
  font-weight: 300;
}

.section-header {
  margin-bottom: clamp(32px, 6vw, 48px);
}

/* =============================================
   SEÇÃO SERVIÇOS - Scroll horizontal mobile
   ============================================= */
#servicos {
  padding: clamp(48px, 10vw, 80px) 0;
  background: var(--white);
}

@media (min-width: 768px) {
  #servicos {
    padding: 100px 0;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 0 clamp(16px, 4vw, 32px);
}

/* Mobile: scroll horizontal com snap */
@media (max-width: 767px) {
  .services-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px clamp(16px, 4vw, 32px);
    margin: 0 -16px;
    padding-left: clamp(16px, 4vw, 32px);
    padding-right: clamp(16px, 4vw, 32px);
  }
  
  .services-grid::-webkit-scrollbar {
    display: none;
  }
  
  .services-grid .service-card {
    flex: 0 0 clamp(280px, 80vw, 340px);
    scroll-snap-align: start;
  }
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 0;
  }
}

.service-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 5vw, 28px) clamp(20px, 4vw, 24px);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  will-change: transform;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card-accent {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.service-icon {
  width: clamp(40px, 8vw, 44px);
  height: clamp(40px, 8vw, 44px);
  background: rgba(212,175,55,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(12px, 3vw, 16px);
}

.service-icon svg {
  width: clamp(18px, 4vw, 22px);
  height: clamp(18px, 4vw, 22px);
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.service-tag {
  display: inline-block;
  font-size: clamp(0.6rem, 1.5vw, 0.65rem);
  color: var(--gold);
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.2);
  padding: 3px 8px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: clamp(0.78rem, 2vw, 0.85rem);
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
  line-height: 1.6;
  font-weight: 300;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-list li {
  font-size: clamp(0.72rem, 2vw, 0.8rem);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 24px;
}

.service-list li::before {
  content: '';
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(212,175,55,0.2);
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='9' viewBox='0 0 9 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4.5L3.5 6L7 3' stroke='%23D4AF37' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* =============================================
   SEÇÃO EXPRESS
   ============================================= */
#express {
  padding: clamp(48px, 10vw, 80px) 0;
  background: var(--off-white);
}

@media (min-width: 768px) {
  #express {
    padding: 100px 0;
  }
}

.express-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 5vw, 32px);
  align-items: center;
}

@media (min-width: 768px) {
  .express-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.express-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.3);
  color: #8B6914;
  font-size: clamp(0.62rem, 1.5vw, 0.7rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: clamp(4px, 1vw, 5px) clamp(10px, 2vw, 12px);
  border-radius: 100px;
  margin-bottom: clamp(12px, 3vw, 16px);
}

.express-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: clamp(12px, 3vw, 16px);
}

.express-desc {
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  color: var(--text-muted);
  margin-bottom: clamp(18px, 4vw, 24px);
  line-height: 1.7;
  font-weight: 300;
}

.express-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: clamp(20px, 4vw, 28px);
}

@media (min-width: 480px) {
  .express-features {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}

.express-feature {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: clamp(12px, 3vw, 16px);
  border: 1px solid var(--gray-100);
}

.express-feature-icon {
  font-size: clamp(1rem, 3vw, 1.2rem);
  margin-bottom: 6px;
  display: block;
}

.express-feature h4 {
  font-family: var(--font-display);
  font-size: clamp(0.72rem, 2vw, 0.8rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.express-feature p {
  font-size: clamp(0.65rem, 1.5vw, 0.7rem);
  color: var(--text-muted);
  line-height: 1.4;
  font-weight: 300;
}

.express-visual {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: clamp(20px, 5vw, 28px);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .express-visual {
    padding: 36px;
  }
}

.express-visual-accent {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.schedule-title {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.schedule-sub {
  font-size: clamp(0.68rem, 1.5vw, 0.75rem);
  color: rgba(255,255,255,0.5);
  margin-bottom: clamp(14px, 3vw, 20px);
  font-weight: 300;
}

.schedule-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 16px;
}

.schedule-day {
  aspect-ratio: 1;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.52rem, 1.5vw, 0.6rem);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.day-off {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.2);
}

.day-express {
  background: rgba(212,175,55,0.2);
  border: 1px solid rgba(212,175,55,0.5);
  color: var(--gold-light);
  cursor: pointer;
  min-width: 32px;
  min-height: 32px;
}

.schedule-day span {
  font-size: 0.5rem;
  font-weight: 400;
  margin-top: 1px;
  opacity: 0.7;
}

.schedule-legend {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: clamp(0.62rem, 1.5vw, 0.7rem);
  color: rgba(255,255,255,0.5);
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 3px;
}

.legend-dot.gold {
  background: rgba(212,175,55,0.5);
}

.legend-dot.gray {
  background: rgba(255,255,255,0.08);
}

.slots-info {
  margin-top: clamp(12px, 3vw, 16px);
  padding: clamp(8px, 2vw, 10px) clamp(10px, 2vw, 14px);
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-sm);
  font-size: clamp(0.65rem, 1.5vw, 0.72rem);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* =============================================
   SEÇÃO PORTFÓLIO - VITRINE AIRBNB STYLE
   Experiencia App Nativa en Móvil
   ============================================= */
#portfolio {
  padding: clamp(48px, 10vw, 80px) 0;
  background: var(--white);
}

@media (min-width: 768px) {
  #portfolio {
    padding: 100px 0;
  }
}

/* =============================================
   🏆 VITRINE GRID - AIRBNB CARDS
   ============================================= */
.vitrine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: clamp(200px, 30vw, 260px);
  gap: clamp(10px, 2vw, 16px);
  margin-top: clamp(20px, 4vw, 32px);
}

/* Tablet: 2 columnas */
@media (max-width: 1024px) {
  .vitrine-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: clamp(180px, 35vw, 240px);
    gap: 12px;
  }
}

/* 📱 MOBILE: Scroll horizontal tipo App Store/Netflix */
@media (max-width: 640px) {
  .vitrine-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 8px 0;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .vitrine-grid::-webkit-scrollbar {
    display: none;
  }
}

/* =============================================
   CARDS - Estilo Airbnb
   ============================================= */
.vitrine-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--navy);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 12px rgba(13,27,42,0.08);
  text-decoration: none;
  display: block;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  outline: 1px solid rgba(212,175,55,0.08);
  outline-offset: -1px;
}

/* Mobile: tarjetas con snap + tamaño fijo */
@media (max-width: 640px) {
  .vitrine-card {
    flex: 0 0 clamp(280px, 82vw, 360px);
    scroll-snap-align: start;
    height: clamp(360px, 70vw, 420px);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(13,27,42,0.15);
  }
}

/* Efecto hover desktop */
@media (hover: hover) {
  .vitrine-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(13,27,42,0.2), 
                0 0 0 1px rgba(212,175,55,0.25);
  }
}

/* Efecto tap en móvil (feedback háptico) */
@media (hover: none) and (pointer: coarse) {
  .vitrine-card:active {
    transform: scale(0.96);
    transition: transform 0.15s ease;
  }
}

/* Imagen */
.vitrine-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

@media (hover: hover) {
  .vitrine-card:hover img {
    transform: scale(1.06);
  }
}

/* Efecto shimmer sutil */
.vitrine-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.02) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

@media (hover: hover) {
  .vitrine-card:hover::before {
    opacity: 1;
  }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* =============================================
   TAMAÑOS ESPECIALES
   ============================================= */
.vitrine-featured { grid-column: span 2; grid-row: span 2; }
.vitrine-tall { grid-row: span 2; }
.vitrine-wide { grid-column: span 2; }

/* Mobile: todos los tamaños vuelven a ser normales */
@media (max-width: 640px) {
  .vitrine-featured,
  .vitrine-tall,
  .vitrine-wide {
    grid-column: unset;
    grid-row: unset;
    flex: 0 0 clamp(280px, 82vw, 360px);
    height: clamp(360px, 70vw, 420px);
  }
  
  .vitrine-featured {
    flex: 0 0 clamp(300px, 86vw, 380px);
    height: clamp(380px, 72vw, 440px);
  }
}

/* =============================================
   BADGES & TAGS
   ============================================= */

/* Badge animado (esquina superior derecha) */
.vitrine-badge {
  position: absolute;
  top: clamp(8px, 2vw, 12px);
  right: clamp(8px, 2vw, 12px);
  z-index: 5;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(0.5rem, 1.5vw, 0.58rem);
  text-transform: uppercase;
  padding: clamp(4px, 1vw, 6px) clamp(8px, 2vw, 12px);
  border-radius: 100px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 16px rgba(212,175,55,0.5);
  animation: pulseBadge 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  will-change: transform;
}

@keyframes pulseBadge {
  0%, 100% { 
    transform: scale(1); 
    box-shadow: 0 4px 16px rgba(212,175,55,0.5);
  }
  50% { 
    transform: scale(1.06); 
    box-shadow: 0 6px 24px rgba(212,175,55,0.65);
  }
}

/* Tags de categoría (esquina superior izquierda) */
.vitrine-tags {
  position: absolute;
  top: clamp(8px, 2vw, 12px);
  left: clamp(8px, 2vw, 12px);
  z-index: 4;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  max-width: 65%;
}

.vtag {
  padding: clamp(3px, 1vw, 5px) clamp(7px, 1.5vw, 10px);
  font-family: var(--font-display);
  font-size: clamp(0.5rem, 1.3vw, 0.58rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 6px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.2s ease;
}

.vtag:hover {
  transform: scale(1.05);
}

.vtag-luxo {
  background: linear-gradient(135deg, #D4AF37, #F4D03F);
  color: #0D1B2A;
}

.vtag-trend {
  background: rgba(139,92,246,0.9);
  color: #fff;
}

.vtag-destaque {
  background: rgba(212,175,55,0.92);
  color: #0D1B2A;
}

.vtag-local {
  background: rgba(255,255,255,0.9);
  color: var(--navy);
}

.vtag-premium {
  background: rgba(13,27,42,0.88);
  color: var(--gold-light);
  border: 1px solid rgba(212,175,55,0.35);
}

/* =============================================
   OVERLAY - Info al hacer hover/tap
   ============================================= */
.vitrine-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(13,27,42,0.75) 70%,
    rgba(13,27,42,0.95) 100%
  );
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(14px, 3vw, 20px);
  pointer-events: none;
}

/* Desktop: aparece al hover */
@media (hover: hover) {
  .vitrine-card:hover .vitrine-overlay {
    opacity: 1;
  }
}

/* Mobile: siempre visible sutil */
@media (hover: none) and (pointer: coarse) {
  .vitrine-overlay {
    opacity: 1;
    background: linear-gradient(
      180deg,
      transparent 35%,
      rgba(13,27,42,0.6) 80%,
      rgba(13,27,42,0.85) 100%
    );
  }
}

.vitrine-title {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.vitrine-meta {
  font-size: clamp(0.6rem, 1.4vw, 0.68rem);
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.vitrine-meta span {
  color: var(--gold);
  font-weight: 700;
}

.vitrine-cta {
  margin-top: clamp(6px, 2vw, 10px);
  padding-top: clamp(6px, 2vw, 10px);
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: clamp(0.6rem, 1.4vw, 0.68rem);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.3s ease;
}

/* Flecha animada con CSS */
.vitrine-cta::after {
  content: '→';
  transition: transform 0.3s ease;
}

@media (hover: hover) {
  .vitrine-card:hover .vitrine-cta {
    gap: 8px;
  }
  
  .vitrine-card:hover .vitrine-cta::after {
    transform: translateX(3px);
  }
}

/* =============================================
   INDICADOR DE SCROLL MOBILE (Dots iOS)
   ============================================= */
.vitrine-scroll-indicator {
  display: none;
  justify-content: center;
  gap: 6px;
  margin-bottom: 12px;
}

@media (max-width: 640px) {
  .vitrine-scroll-indicator {
    display: flex;
  }
}

.vitrine-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gray-200);
  transition: all 0.3s ease;
}

.vitrine-dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 3px;
}

/* =============================================
   BOTONES CTA ROW
   ============================================= */
.portfolio-cta-row {
  display: flex;
  justify-content: center;
  gap: clamp(8px, 2vw, 14px);
  margin-top: clamp(24px, 5vw, 40px);
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .portfolio-cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 0 20px;
  }
  
  .portfolio-cta-row .btn-outline-dark,
  .portfolio-cta-row .btn-primary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* =============================================
   SEÇÃO DEPOIMENTOS
   ============================================= */
#depoimentos {
  padding: clamp(48px, 10vw, 80px) 0;
  background: var(--navy);
}

@media (min-width: 768px) {
  #depoimentos {
    padding: 100px 0;
  }
}

#depoimentos .section-title {
  color: var(--white);
}

#depoimentos .section-desc {
  color: rgba(255,255,255,0.5);
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.25);
  padding: clamp(6px, 2vw, 8px) clamp(12px, 3vw, 16px);
  border-radius: 100px;
  margin-top: clamp(8px, 2vw, 12px);
  margin-bottom: clamp(24px, 6vw, 40px);
}

.rating-stars {
  color: var(--gold);
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  letter-spacing: 2px;
}

.rating-text {
  font-size: clamp(0.68rem, 1.5vw, 0.78rem);
  color: rgba(255,255,255,0.6);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: clamp(32px, 6vw, 48px);
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: clamp(18px, 4vw, 24px);
  transition: background var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.07);
}

.t-stars {
  color: var(--gold);
  font-size: clamp(0.78rem, 2vw, 0.85rem);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.t-quote {
  font-size: clamp(0.78rem, 2vw, 0.85rem);
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
  font-weight: 300;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.t-avatar {
  width: clamp(32px, 6vw, 36px);
  height: clamp(32px, 6vw, 36px);
  border-radius: 50%;
  background: rgba(212,175,55,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.62rem, 1.5vw, 0.7rem);
  color: var(--gold);
  flex-shrink: 0;
}

.t-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.72rem, 2vw, 0.8rem);
  color: var(--white);
}

.t-location {
  font-size: clamp(0.62rem, 1.5vw, 0.7rem);
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}

@media (min-width: 768px) {
  .trust-bar {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  padding: clamp(12px, 3vw, 16px);
  background: rgba(255,255,255,0.03);
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trust-item:nth-child(2n) {
  border-right: none;
}

@media (min-width: 768px) {
  .trust-item:nth-child(2n) {
    border-right: 1px solid rgba(255,255,255,0.06);
  }
  .trust-item:last-child {
    border-right: none;
  }
  .trust-item {
    border-bottom: none;
  }
}

.trust-icon {
  font-size: clamp(1rem, 3vw, 1.2rem);
  margin-bottom: 4px;
  display: block;
}

.trust-text {
  font-size: clamp(0.62rem, 1.5vw, 0.72rem);
  color: rgba(255,255,255,0.5);
}

/* =============================================
   SEÇÃO CONTATO - Formulário otimizado
   ============================================= */
#contato {
  padding: clamp(48px, 10vw, 80px) 0;
  background: var(--off-white);
}

@media (min-width: 768px) {
  #contato {
    padding: 100px 0;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 5vw, 32px);
  align-items: start;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
  }
}

.contact-info .section-kicker {
  color: var(--gold);
}

.contact-info .section-title {
  font-size: clamp(1.4rem, 5vw, 2.4rem);
}

.contact-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: clamp(16px, 4vw, 24px) 0;
}

.contact-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(0.78rem, 2vw, 0.85rem);
  color: var(--text-body);
  font-weight: 300;
}

.benefit-check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-check svg {
  width: 10px;
  height: 10px;
  stroke: white;
  fill: none;
  stroke-width: 2.5;
}

.whatsapp-direct {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.78rem, 2vw, 0.85rem);
  padding: clamp(10px, 2.5vw, 12px) clamp(16px, 4vw, 20px);
  min-height: 48px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
  margin-top: 6px;
  touch-action: manipulation;
}

.whatsapp-direct:hover {
  background: #20bc5c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

.whatsapp-direct:active {
  transform: scale(0.97);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(20px, 5vw, 28px);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

@media (min-width: 768px) {
  .contact-form-card {
    padding: 36px;
  }
}

.form-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.form-sub {
  font-size: clamp(0.72rem, 2vw, 0.8rem);
  color: var(--text-muted);
  margin-bottom: clamp(14px, 3vw, 20px);
  font-weight: 300;
}

.form-group {
  margin-bottom: clamp(12px, 3vw, 16px);
}

.form-group label {
  display: block;
  font-size: clamp(0.72rem, 1.5vw, 0.78rem);
  font-weight: 500;
  color: var(--text-body);
  margin-bottom: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: clamp(12px, 3vw, 14px);
  background: var(--off-white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 16px; /* Previene zoom automático en iOS */
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  min-height: 48px;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B6760' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(10px, 2vw, 14px);
}

@media (min-width: 480px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}

.btn-submit {
  width: 100%;
  padding: 14px;
  min-height: 48px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.9rem, 2vw, 0.95rem);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
  margin-top: 4px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.btn-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,175,55,0.4);
}

.btn-submit:active {
  transform: scale(0.98);
  transition: transform 0.1s ease;
}

.form-disclaimer {
  font-size: clamp(0.62rem, 1.5vw, 0.7rem);
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
  font-weight: 300;
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px 16px;
}

.form-success.show {
  display: block;
}

.success-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.success-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.2rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.success-text {
  font-size: clamp(0.78rem, 2vw, 0.85rem);
  color: var(--text-muted);
  font-weight: 300;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--navy);
  padding: clamp(32px, 8vw, 48px) 0 clamp(20px, 4vw, 24px);
  padding-bottom: calc(clamp(20px, 4vw, 24px) + var(--safe-bottom));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 4vw, 24px);
  margin-bottom: clamp(24px, 5vw, 32px);
}

@media (min-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

.footer-brand p {
  font-size: clamp(0.75rem, 2vw, 0.82rem);
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-top: 10px;
  font-weight: 300;
  max-width: 260px;
}

.footer-section h4 {
  font-family: var(--font-display);
  font-size: clamp(0.65rem, 1.5vw, 0.72rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(4px, 1vw, 6px);
}

.footer-links-list a {
  font-size: clamp(0.75rem, 2vw, 0.82rem);
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--transition);
  font-weight: 300;
  padding: 4px 0;
  min-height: 24px;
  display: inline-block;
}

.footer-links-list a:hover {
  color: var(--gold);
}

.footer-links-list li {
  font-size: clamp(0.75rem, 2vw, 0.82rem);
  color: rgba(255,255,255,0.45);
  font-weight: 300;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: clamp(0.75rem, 2vw, 0.82rem);
  color: rgba(255,255,255,0.45);
  margin-bottom: 6px;
  font-weight: 300;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: clamp(16px, 3vw, 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

@media (min-width: 480px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  font-size: clamp(0.65rem, 1.5vw, 0.72rem);
  color: rgba(255,255,255,0.3);
  font-weight: 300;
}

.footer-bottom-link {
  color: var(--gold);
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* =============================================
   WHATSAPP FLOAT - Safe area aware
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: calc(24px + var(--safe-bottom));
  right: calc(20px + var(--safe-right));
  width: clamp(48px, 10vw, 52px);
  height: clamp(48px, 10vw, 52px);
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  z-index: 500;
  transition: transform var(--transition);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

@media (min-width: 768px) {
  .whatsapp-float {
    bottom: calc(28px + var(--safe-bottom));
    right: calc(28px + var(--safe-right));
    width: 56px;
    height: 56px;
  }
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.05);
}

.whatsapp-float:active {
  transform: scale(0.95);
  transition: transform 0.1s ease;
}

.whatsapp-float svg {
  width: clamp(22px, 5vw, 26px);
  height: clamp(22px, 5vw, 26px);
}

@media (min-width: 768px) {
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* =============================================
   LIGHTBOX - Touch friendly
   ============================================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 92%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox-close {
  position: absolute;
  top: calc(16px + var(--safe-top));
  right: calc(16px + var(--safe-right));
  color: rgba(255,255,255,0.7);
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 12px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.lightbox-close:hover {
  color: var(--gold);
}

.lightbox-counter {
  position: absolute;
  bottom: calc(20px + var(--safe-bottom));
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  background: rgba(255,255,255,0.1);
  padding: 4px 14px;
  border-radius: 100px;
}

/* =============================================
   SCROLL ANIMATIONS - Solo opacity y transform
   ============================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

[data-reveal][data-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-delay="2"] { transition-delay: 0.2s; }
[data-reveal][data-delay="3"] { transition-delay: 0.3s; }
[data-reveal][data-delay="4"] { transition-delay: 0.4s; }

/* =============================================
   RESPONSIVE - AJUSTES POR BREAKPOINTS
   ============================================= */

/* Mobile pequeño: max-width: 374px (iPhone SE) */
@media (max-width: 374px) {
  .hero-ctas {
    flex-direction: column;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    gap: 12px;
  }
  .container {
    padding: 0 12px;
  }
  .hero-content {
    padding: 20px 0;
  }
}

/* Mobile medio: 375px - 428px (iPhone 12/13/14/15) */
@media (min-width: 375px) and (max-width: 428px) {
  .hero-ctas {
    flex-direction: column;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    gap: 14px;
  }
}

/* Mobile grande: 429px - 640px */
@media (min-width: 429px) and (max-width: 640px) {
  .hero-ctas {
    flex-direction: row;
  }
}

/* Tablet: 641px - 1024px */
@media (min-width: 641px) and (max-width: 1024px) {
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    overflow-x: visible;
  }
  
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    overflow-x: visible;
  }
}

/* =============================================
   PÁGINAS SECUNDÁRIAS (PORTFOLIO, ORCAMENTO)
   ============================================= */
.page-header-premium {
  background: var(--navy);
  color: var(--white);
  padding: clamp(5rem, 12vw, 6rem) 0 clamp(3rem, 8vw, 4rem);
  margin-top: 56px;
  margin-top: calc(56px + var(--safe-top));
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 429px) {
  .page-header-premium {
    margin-top: 60px;
    margin-top: calc(60px + var(--safe-top));
  }
}

@media (min-width: 641px) {
  .page-header-premium {
    margin-top: 64px;
    margin-top: calc(64px + var(--safe-top));
  }
}

@media (min-width: 768px) {
  .page-header-premium {
    margin-top: 72px;
    margin-top: calc(72px + var(--safe-top));
    padding: 7rem 0 5rem;
  }
}

.page-header-premium::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: clamp(300px, 80vw, 600px);
  height: clamp(300px, 80vw, 600px);
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-header-premium__content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(16px, 4vw, 32px);
}

.page-header-premium__kicker {
  display: inline-block;
  font-size: clamp(0.7rem, 2vw, 0.8rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.page-header-premium__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.page-header-premium__title-accent {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header-premium__subtitle {
  font-size: clamp(0.88rem, 2vw, 1rem);
  color: rgba(255,255,255,0.55);
  max-width: 550px;
  margin: 0 auto;
  font-weight: 300;
}

/* CTA Section para páginas secundarias */
.cta-section {
  text-align: center;
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding: clamp(1.5rem, 5vw, 3rem);
  background: var(--off-white);
  border-radius: var(--radius-xl);
}

.cta-section__text {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.cta-section__text strong {
  color: var(--text-dark);
}

.cta-section__actions {
  display: flex;
  justify-content: center;
  gap: clamp(8px, 2vw, 1rem);
  flex-wrap: wrap;
}

/* =============================================
   UTILITÁRIOS ADICIONAIS
   ============================================= */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
}

@media (min-width: 769px) {
  .hide-desktop { display: none !important; }
}

/* =============================================
   PERFORMANCE - Reducir repaints
   ============================================= */

/* Solo usar will-change donde hay animaciones activas */
.hero-blob-1,
.hero-blob-2,
.hero-grid-lines,
.express-visual-accent,
.service-card-accent {
  will-change: auto;
}

/* Transiciones solo con transform y opacity */
.portfolio-overlay,
.mobile-nav,
.lightbox {
  will-change: opacity;
}

/* Prevenir layout thrashing en scroll */
.services-grid,
.portfolio-grid {
  contain: layout style;
}

/* Smooth scrolling solo si el usuario no tiene preferencia de reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .express-strip-inner {
    animation: none;
  }
  
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}