﻿/* =============================================
   SamuraiHost - Main Stylesheet
   Colors: crimson #DC143C | gold #FFD700 | dark #0A0A0A | light #F5F5F5
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* === CSS Variables === */
:root {
  --crimson: #DC143C;
  --gold: #FFD700;
  --dark: #0A0A0A;
  --dark-2: #111111;
  --light: #F5F5F5;
  --gray-400: #9CA3AF;
  --gray-300: #D1D5DB;
  --font: 'Inter', sans-serif;
  --transition: all 0.3s ease;
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background-color: var(--dark);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* === Scrollbar === */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0A0A0A; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #DC143C 0%, #FFD700 100%); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #FFD700 0%, #DC143C 100%); }

/* === Utilities === */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
.text-gradient { background: linear-gradient(to right, var(--crimson), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

/* === Animations === */
@keyframes pulse { 0%, 100% { opacity: 0.1; } 50% { opacity: 0.3; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
@keyframes slideDown { from { opacity: 0; height: 0; } to { opacity: 1; height: auto; } }
@keyframes waBounce { 0% { transform: scale(0); } 60% { transform: scale(1.1); } 100% { transform: scale(1); } }

.animate-fade-up { animation: fadeInUp 0.8s ease forwards; }
.animate-fade-in { animation: fadeIn 0.6s ease forwards; }
.animate-scale-in { animation: scaleIn 0.5s ease forwards; }

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(220,20,60,0.2);
}

.site-header nav { padding: 1rem 0; }
.site-header .nav-inner { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: 0.5rem; font-size: 1.5rem; font-weight: 700; }
.logo .samurai { color: var(--crimson); }
.logo .host { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links li a {
  color: var(--light);
  font-size: 0.95rem;
  transition: var(--transition);
}
.nav-links li a:hover { color: var(--crimson); }

.btn-admin {
  padding: 0.5rem 1.25rem;
  background: linear-gradient(to right, var(--crimson), var(--gold));
  color: #fff !important;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-admin:hover { box-shadow: 0 0 20px rgba(220,20,60,0.5); color: #fff !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--light); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}
.mobile-menu.open { display: flex; max-height: 400px; opacity: 1; }
.mobile-menu li a { display: block; color: var(--light); padding: 0.25rem 0; }
.mobile-menu li a:hover { color: var(--crimson); }
.mobile-menu .btn-admin { text-align: center; display: block; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark) 60%, #000 100%);
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-blob::before, .hero-blob::after {
  content: '';
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(80px);
  animation: pulse 3s ease-in-out infinite;
}
.hero-blob::before { top: 0; left: 0; background: var(--crimson); opacity: 0.1; }
.hero-blob::after { bottom: 0; right: 0; background: var(--gold); opacity: 0.1; animation-delay: 1.5s; }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 56rem;
  padding: 0 1rem;
  animation: fadeInUp 0.8s ease forwards;
}

.hero h1 { font-size: clamp(2.5rem, 7vw, 4.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; }
.hero p { font-size: clamp(1rem, 2vw, 1.375rem); color: var(--gray-300); margin-bottom: 2rem; max-width: 42rem; margin-left: auto; margin-right: auto; }

.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(to right, var(--crimson), var(--gold));
  color: #fff;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}
.btn-primary:hover { box-shadow: 0 20px 40px rgba(220,20,60,0.4); transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  padding: 1rem 2rem;
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}
.btn-outline:hover { background: var(--gold); color: var(--dark); }

/* === SECTIONS === */
section { padding: 5rem 0; }
.section-dark { background: rgba(0,0,0,0.3); }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 1rem; }
.section-header p { color: var(--gray-400); font-size: 1.125rem; max-width: 42rem; margin: 0 auto; }

/* === CARDS === */
.card {
  background: linear-gradient(135deg, var(--dark) 0%, #000 100%);
  border: 1px solid rgba(220,20,60,0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: var(--transition);
}
.card:hover { border-color: rgba(255,215,0,0.5); }

.card-icon { margin-bottom: 1rem; }
.card-icon svg, .card-icon span { width: 3rem; height: 3rem; color: var(--gold); display: block; }
.card h3 { font-size: 1.25rem; font-weight: 600; color: #fff; margin-bottom: 0.5rem; }
.card p { color: var(--gray-400); }

/* === FEATURES GRID === */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }

/* === PLAN CARDS === */
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; max-width: 1100px; margin: 0 auto; }
.plans-grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.plan-card {
  position: relative;
  background: linear-gradient(135deg, var(--dark) 0%, #000 100%);
  border: 2px solid rgba(220,20,60,0.2);
  border-radius: 1rem;
  padding: 2rem;
  transition: var(--transition);
}
.plan-card.popular {
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(255,215,0,0.15);
  transform: scale(1.03);
}
.plan-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, var(--crimson), var(--gold));
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}
.plan-card .plan-name { font-size: 1.5rem; font-weight: 700; color: #fff; text-align: center; margin-bottom: 0.5rem; }
.plan-card .plan-price { text-align: center; margin-bottom: 1.5rem; }
.plan-card .plan-price .amount { font-size: 2.5rem; font-weight: 700; }
.plan-card .plan-price .period { color: var(--gray-400); font-size: 0.875rem; }
.plan-card .plan-users { font-size: 1.75rem; font-weight: 700; color: var(--gold); text-align: center; margin-bottom: 0.5rem; }

.plan-features { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.plan-features li { display: flex; align-items: flex-start; gap: 0.5rem; color: var(--gray-300); font-size: 0.9rem; }
.plan-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.btn-plan {
  display: block;
  width: 100%;
  padding: 0.75rem;
  text-align: center;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-plan-primary {
  background: linear-gradient(to right, var(--crimson), var(--gold));
  color: #fff;
}
.btn-plan-primary:hover { box-shadow: 0 10px 30px rgba(220,20,60,0.4); }
.btn-plan-outline {
  border: 2px solid var(--crimson);
  color: var(--crimson);
}
.btn-plan-outline:hover { background: var(--crimson); color: #fff; }

/* === SERVICES GRID === */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; max-width: 1100px; margin: 0 auto; }

.service-card {
  display: block;
  background: linear-gradient(135deg, var(--dark) 0%, #000 100%);
  border: 2px solid rgba(220,20,60,0.2);
  border-radius: 0.75rem;
  padding: 2rem;
  transition: var(--transition);
  color: var(--light);
}
.service-card:hover { border-color: var(--gold); box-shadow: 0 20px 40px rgba(255,215,0,0.15); }
.service-card .icon { font-size: 3rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.service-card p { color: var(--gray-400); margin-bottom: 1rem; }
.service-card .cta { display: flex; align-items: center; gap: 0.5rem; color: var(--gold); font-weight: 600; }
.service-card:hover .cta { color: var(--crimson); }

/* === TESTIMONIALS === */
.testimonial-card {
  background: linear-gradient(135deg, var(--dark) 0%, #000 100%);
  border: 1px solid rgba(220,20,60,0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  background: rgba(220,20,60,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.testimonial-name { font-weight: 600; color: #fff; }
.stars { color: var(--gold); font-size: 0.875rem; }
.testimonial-text { color: var(--gray-400); }

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(to right, var(--crimson), var(--gold));
  border-radius: 1rem;
  padding: 3rem 2rem;
  text-align: center;
}
.cta-banner h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; color: #fff; margin-bottom: 1rem; }
.cta-banner p { font-size: 1.125rem; color: rgba(255,255,255,0.9); margin-bottom: 2rem; }
.btn-white {
  display: inline-block;
  padding: 1rem 2rem;
  background: #fff;
  color: var(--dark);
  border-radius: 0.5rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-white:hover { background: #f3f4f6; }

/* === RESOURCES BOX === */
.resources-box {
  background: linear-gradient(135deg, var(--dark) 0%, #000 100%);
  border: 1px solid rgba(220,20,60,0.2);
  border-radius: 1rem;
  padding: 2rem;
  max-width: 56rem;
  margin: 5rem auto 0;
}
.resources-box h2 { font-size: 1.875rem; font-weight: 700; text-align: center; margin-bottom: 2rem; }
.resources-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.resource-item { display: flex; align-items: center; gap: 0.75rem; color: var(--gray-300); }
.resource-item::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* === PAGE HEADER === */
.page-header { text-align: center; margin-bottom: 4rem; animation: fadeInUp 0.6s ease; }
.page-header h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); font-weight: 700; margin-bottom: 1rem; }
.page-header p { font-size: 1.125rem; color: var(--gray-400); max-width: 42rem; margin: 0 auto; }
.page-header .promo-badge {
  display: inline-block;
  margin-top: 1.5rem;
  background: rgba(220,20,60,0.2);
  border: 1px solid var(--crimson);
  color: var(--gold);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
}

/* === FAQ === */
.faq-list { max-width: 56rem; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: linear-gradient(135deg, var(--dark) 0%, #000 100%);
  border: 1px solid rgba(220,20,60,0.2);
  border-radius: 0.75rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  background: none;
  border: none;
  font-family: inherit;
}
.faq-question:hover { background: rgba(220,20,60,0.05); }
.faq-question .icon { color: var(--gold); flex-shrink: 0; font-size: 1.25rem; transition: var(--transition); }
.faq-question.open .icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease;
  opacity: 0;
}
.faq-answer.open { max-height: 300px; opacity: 1; }
.faq-answer p {
  padding: 1rem 1.5rem 1.5rem;
  color: var(--gray-400);
  border-top: 1px solid rgba(220,20,60,0.1);
  line-height: 1.7;
}

/* === CONTACT === */
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; max-width: 900px; margin: 0 auto 4rem; }
.contact-card {
  background: linear-gradient(135deg, var(--dark) 0%, #000 100%);
  border: 2px solid rgba(220,20,60,0.2);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  color: var(--light);
  display: block;
}
.contact-card.whatsapp:hover { border-color: #22c55e; box-shadow: 0 20px 40px rgba(34,197,94,0.15); }
.contact-card.email:hover { border-color: var(--crimson); box-shadow: 0 20px 40px rgba(220,20,60,0.15); }
.contact-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
}
.contact-icon.green { background: rgba(34,197,94,0.2); }
.contact-icon.red { background: rgba(220,20,60,0.2); }
.contact-icon.gold { background: rgba(255,215,0,0.2); }
.contact-card h3 { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.contact-card p { color: var(--gray-400); margin-bottom: 1rem; font-size: 0.9rem; }
.contact-card span { font-weight: 600; color: var(--gold); }
.contact-card.whatsapp:hover span { color: #22c55e; }

.hours-box {
  max-width: 48rem;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--dark) 0%, #000 100%);
  border: 1px solid rgba(220,20,60,0.2);
  border-radius: 1rem;
  padding: 2rem;
}
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; text-align: center; }
.hours-grid h3 { font-weight: 600; color: #fff; margin-bottom: 0.5rem; }
.hours-grid p { color: var(--gray-400); }

/* === SOBRE === */
.history-box {
  max-width: 56rem;
  margin: 0 auto 5rem;
  background: linear-gradient(135deg, var(--dark) 0%, #000 100%);
  border: 1px solid rgba(220,20,60,0.2);
  border-radius: 1rem;
  padding: 2.5rem 3rem;
}
.history-box h2 { font-size: 1.875rem; font-weight: 700; margin-bottom: 1.5rem; }
.history-box p { color: var(--gray-300); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1rem; }
.history-box p:last-child { margin-bottom: 0; }

.differentials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; margin-bottom: 5rem; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; max-width: 900px; margin: 0 auto 5rem; }
.value-card {
  background: linear-gradient(135deg, rgba(220,20,60,0.1) 0%, rgba(255,215,0,0.1) 100%);
  border: 2px solid rgba(255,215,0,0.3);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
}
.value-card .icon { font-size: 3rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.value-card p { color: var(--gray-300); }

/* === FOOTER === */
.site-footer {
  background: rgba(0,0,0,0.5);
  border-top: 1px solid rgba(220,20,60,0.2);
  margin-top: 5rem;
}
.footer-inner { padding: 3rem 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-brand .logo { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.footer-brand p { color: var(--gray-400); margin-bottom: 1rem; font-size: 0.9rem; }
.footer-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact a { color: var(--gray-400); display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; transition: var(--transition); }
.footer-contact a:hover { color: var(--gold); }
.footer-contact-icon { color: var(--crimson); }
.footer-col h3 { color: var(--gold); font-weight: 600; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a { color: var(--gray-400); font-size: 0.9rem; transition: var(--transition); }
.footer-col ul a:hover { color: var(--crimson); }
.footer-bottom { border-top: 1px solid rgba(220,20,60,0.2); padding-top: 2rem; text-align: center; color: var(--gray-400); font-size: 0.875rem; }

/* === WHATSAPP BUTTON === */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  background: #22c55e;
  color: #fff;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(34,197,94,0.4);
  transition: var(--transition);
  animation: waBounce 0.6s ease 0.5s both;
}
.whatsapp-btn:hover { background: #16a34a; transform: scale(1.1); }

/* === LOADING STATE === */
.loading-screen { min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.loading-text { font-size: 1.5rem; font-weight: 600; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: 1fr; gap: 1rem; }
  .plan-card.popular { transform: none; }
  .history-box { padding: 1.5rem; }
  .hero h1 { font-size: 2.5rem; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .contact-cards { grid-template-columns: 1fr; }
}

/* === SCROLL ANIMATION HELPERS === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* === Logo image in header === */
.logo-img { max-height: 48px; width: auto; display: block; }

/* === Área do Cliente button in nav === */
.btn-cliente {
  padding: 0.5rem 1.25rem;
  background: transparent;
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  border-radius: 0.5rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-cliente:hover {
  background: var(--gold);
  color: #000 !important;
}

/* === Site banner / announcement bar === */
.site-banner {
  text-align: center;
  padding: .5rem 1.5rem;
  font-size: .875rem;
  font-weight: 500;
}

/* === WhatsApp float button === */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 3.25rem;
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(37,211,102,.4); }

/* === Logo image in header === */
.logo-img { max-height: 48px; width: auto; display: block; }

/* === Área do Cliente nav button === */
.btn-cliente {
  padding: .5rem 1.25rem;
  background: transparent;
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  border-radius: .5rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-cliente:hover { background: var(--gold); color: #000 !important; }


/* === MAINTENANCE PAGE === */
.maintenance-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0A0A0A 0%, #000 100%);
  padding: 2rem;
}
.maintenance-box {
  text-align: center;
  max-width: 32rem;
}
.maintenance-box .maintenance-icon { font-size: 5rem; margin-bottom: 1.5rem; }
.maintenance-box h1 { font-size: clamp(2rem,5vw,3rem); font-weight: 700; margin-bottom: 1rem; }
.maintenance-box p { color: var(--gray-400); font-size: 1.125rem; }

/* === BANNER === */
.site-banner {
  position: relative;
  z-index: 200;
  width: 100%;
  padding: 0.5rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
}
.site-banner a { color: #fff; text-decoration: underline; }

/* === FOOTER SOCIAL === */
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; flex-wrap: wrap; }
.social-link {
  width: 2.25rem; height: 2.25rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: var(--transition);
}
.social-link:hover { background: rgba(255,215,0,0.15); border-color: var(--gold); }

/* === NAV AUTH BUTTONS === */
.nav-auth {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
}
.btn-nav-login {
  padding: 0.45rem 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0.375rem;
  color: #e5e7eb;
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-nav-login:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-nav-register {
  padding: 0.45rem 1rem;
  background: var(--crimson);
  border-radius: 0.375rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-nav-register:hover {
  background: #b01030;
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .nav-auth { display: none; }
}

/* === BTN LG === */
.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
}

/* === CLIENTE PAGE === */
.cliente-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.cliente-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, #111 0%, #000 100%);
  border: 1px solid rgba(220,20,60,0.2);
  border-radius: 1rem;
  color: var(--gray-300);
  transition: var(--transition);
}
.cliente-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(220,20,60,0.15);
}
.cliente-card-icon { font-size: 2.5rem; }
.cliente-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.cliente-card p {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin: 0;
}