:root {
  --bg-primary: #0b0d10;
  --bg-secondary: #12151b;
  --bg-card: rgba(22, 26, 34, 0.7);
  --bg-card-hover: rgba(30, 35, 46, 0.9);
  --bg-glass: rgba(255, 255, 255, 0.04);

  --border-color: rgba(217, 180, 120, 0.18);
  --border-glow: rgba(217, 180, 120, 0.5);

  --accent-gold: #c29a6b;
  --accent-gold-light: #e5c189;
  --accent-gold-dark: #9e7643;
  --accent-gold-glow: rgba(194, 154, 107, 0.25);

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --dark-charcoal: #25282f;
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 0 35px rgba(194, 154, 107, 0.2);

  --font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="light"] {
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --bg-glass: #f1f5f9;

  --border-color: #e2e8f0;
  --border-glow: rgba(154, 109, 40, 0.2);

  --accent-gold: #9a6d28;
  --accent-gold-light: #8a6020;
  --accent-gold-dark: #6e4815;
  --accent-gold-glow: rgba(154, 109, 40, 0.12);

  --text-primary: #2d3748;
  --text-secondary: #5a6e85;
  --text-muted: #718096;

  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.06);
}


[data-theme="light"] .bg-ambient,
[data-theme="light"] .ambient-orb,
[data-theme="light"] .orb-1,
[data-theme="light"] .orb-2,
[data-theme="light"] .orb-3 {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

[data-theme="light"] body,
[data-theme="light"] html,
[data-theme="light"] main,
[data-theme="light"] .hero-section,
[data-theme="light"] .hero-first-fold {
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
}


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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}


.bg-ambient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
  animation: orbFloat 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.orb-1 {
  top: -10%;
  left: 20%;
  width: 500px;
  height: 500px;
  background: var(--accent-gold);
}

.orb-2 {
  bottom: -10%;
  right: 15%;
  width: 600px;
  height: 600px;
  background: #3b82f6;
  opacity: 0.08;
}

.orb-3 {
  top: 40%;
  left: 50%;
  width: 350px;
  height: 350px;
  background: var(--accent-gold-dark);
  opacity: 0.12;
  transform: translate(-50%, -50%);
}

@keyframes orbFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -40px) scale(1.1);
  }

  100% {
    transform: translate(-20px, 30px) scale(0.95);
  }
}


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.site-header {
  padding: 0.45rem 0;
 
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-header-link {
  display: flex;
  align-items: center;
  height: 52px;
  overflow: visible;
  text-decoration: none;
}


.header-brand-logo-img {
  width: auto;
  max-width: 240px;
  height: 180px;
  object-fit: contain;
  margin: -64px 0;
  display: block;
  transition: transform var(--transition-fast);
  filter: none;
}

.brand-header-link:hover .header-brand-logo-img {
  transform: scale(1.03);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-gold-light);
}

[data-theme="light"] .status-badge {
  color: #7a5214;
  background: rgba(194, 154, 107, 0.15);
  border-color: rgba(122, 82, 20, 0.35);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  box-shadow: 0 0 10px var(--accent-gold);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.3);
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-toggle-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.theme-toggle-btn:hover {
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.sun-icon {
  display: none;
}

[data-theme="light"] .sun-icon {
  display: block;
}

[data-theme="light"] .moon-icon {
  display: none;
}


.hero-section {
  padding: 0.5rem 0 2rem;
  text-align: center;
}

.hero-first-fold {
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-badge-wrap {
  display: inline-block;
  margin-bottom: 0.4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.4rem;
  background: linear-gradient(135deg, rgba(194, 154, 107, 0.25), rgba(194, 154, 107, 0.1));
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-gold-light);
  letter-spacing: 0.8px;
  box-shadow: 0 4px 20px rgba(194, 154, 107, 0.15);
}

[data-theme="light"] .hero-badge {
  background: rgba(194, 154, 107, 0.2);
  border-color: rgba(122, 82, 20, 0.35);
  color: #7a5214;
  font-weight: 800;
}


.hero-logo-box {
  margin: -1rem auto 0;
  width: 100%;
  max-width: 370px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.hero-logo-box img {
  width: 100%;
  max-width: 370px;
  height: auto;
  margin: 0 auto;
  display: block;
  filter: none;
  transition: transform var(--transition-normal);
}

.hero-logo-box:hover img {
  transform: scale(1.02);
}


.hero-title {
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin-top: 0.4rem; 
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, #ffffff 40%, #e5c189 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

[data-theme="light"] .hero-title {
  background: linear-gradient(135deg, #1e293b 0%, #334155 40%, #9a6d28 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 2px rgba(30, 41, 59, 0.06));
}


.scroll-hint {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  color: var(--accent-gold-light);
  animation: bounceHint 2s infinite;
  opacity: 0.85;
}

@keyframes bounceHint {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(6px);
  }

  60% {
    transform: translateY(3px);
  }
}


.hero-second-fold {
  padding-top: 1.2rem;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
}


.timer-container {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.timer-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 1.25rem 1.5rem;
  min-width: 100px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.timer-box:hover {
  border-color: var(--accent-gold);
  transform: translateY(-3px);
}

.timer-val {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-gold-light);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

[data-theme="light"] .timer-val {
  color: #8a6020;
  font-weight: 800;
}

.timer-lbl {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-top: 0.4rem;
  font-weight: 600;
}

[data-theme="light"] .timer-lbl {
  color: #475569;
}


.lead-card {
  max-width: 620px;
  margin: 0 auto 4rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
  text-align: left;
}

.lead-header {
  margin-bottom: 1.5rem;
  text-align: center;
}

.lead-header h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.lead-header p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.input-field {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

[data-theme="light"] .input-field {
  background: #ffffff;
  border-color: #cbd5e1;
  color: #2d3748;
}

.input-field:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px var(--accent-gold-glow);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 4px 15px var(--accent-gold-glow);
}

[data-theme="light"] .btn-primary {
  background: linear-gradient(135deg, #9a6d28 0%, #5c3c0c 100%);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(194, 154, 107, 0.4);
}

.form-response-msg {
  display: none;
  padding: 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  text-align: center;
  margin-top: 0.5rem;
}

.form-response-msg.success {
  display: block;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
}

[data-theme="light"] .form-response-msg.success {
  background: rgba(16, 185, 129, 0.2);
  color: #065f46;
}


.services-section {
  padding: 3rem 0;
  margin-bottom: 4rem;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(194, 154, 107, 0.2), rgba(194, 154, 107, 0.05));
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold-light);
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

[data-theme="light"] .service-icon {
  color: #9a6d28;
  background: #f8fafc;
  border-color: #cbd5e1;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}


.contact-fast-section {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  margin-bottom: 4rem;
  backdrop-filter: blur(16px);
}

.contact-fast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold-light);
  flex-shrink: 0;
}

[data-theme="light"] .contact-item-icon {
  color: #9a6d28;
  background: #f8fafc;
  border-color: #cbd5e1;
}

.contact-item-info h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.contact-item-info a,
.contact-item-info span {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-item-info a:hover {
  color: var(--accent-gold-light);
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.5rem;
  background: #25d366;
  color: #ffffff;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.btn-whatsapp:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}


.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-address {
  font-size: 0.85rem;
  margin-top: 0.2rem;
  color: var(--text-secondary);
}

.footer-email-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-gold-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

[data-theme="light"] .footer-email-link {
  color: #9a6d28;
}

.footer-email-link:hover {
  text-decoration: underline;
}

.footer-seo-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.6rem;
}

.footer-seo-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition-fast);
}

.footer-seo-links a:hover {
  color: var(--accent-gold-light);
}


@media (max-width: 768px) {
  .site-header {
    padding: 0.35rem 0;
  }

  .header-wrapper {
    position: relative;
  }

  .brand-header-link {
    height: 44px;
  }

  .header-brand-logo-img {
    max-width: 175px;
    height: 135px;
    margin: -45px 0;
  }

 
  .status-badge {
    display: none !important;
  }

  
  .hero-first-fold {
    min-height: calc(100vh - 55px);
    height: calc(100vh - 55px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0 0.5rem;
    box-sizing: border-box;
  }

  .hero-badge-wrap {
    margin-bottom: 0;
  }

  .hero-badge {
    padding: 0.4rem 1.1rem;
    font-size: 0.9rem;
  }

  .hero-logo-box {
    max-width: 250px;
    margin: 0 auto;
  }

  .hero-logo-box img {
    max-width: 250px;
  }

  .hero-title {
    font-size: clamp(1.35rem, 5.5vw, 1.8rem);
    line-height: 1.25;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0 0.5rem;
  }

  .scroll-hint {
    margin-top: 0;
    margin-bottom: 0.2rem;
    font-size: 1.3rem;
  }

 
  .hero-second-fold {
    padding-top: 2rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .form-group-row {
    grid-template-columns: 1fr;
  }

  .lead-card {
    padding: 1.5rem;
  }

  .timer-container {
    gap: 0.6rem;
  }

  .timer-box {
    min-width: 72px;
    padding: 0.85rem 0.6rem;
  }

  .timer-val {
    font-size: 1.7rem;
  }

  .timer-lbl {
    font-size: 0.72rem;
  }
}

@media (max-width: 480px) {
  .header-brand-logo-img {
    max-width: 150px;
    height: 115px;
    margin: -36px 0;
  }

  .hero-logo-box {
    max-width: 220px;
  }

  .hero-logo-box img {
    max-width: 220px;
  }

  .hero-title {
    font-size: 1.4rem;
  }
}

@media (min-width: 769px) {
  .status-badge {
    display: inline-flex !important;
  }
}