@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --burgundy-900: #3D0A1A;
  --burgundy-800: #5C1028;
  --burgundy-700: #7B1636;
  --burgundy-600: #8B1A3D;
  --burgundy-500: #A32248;
  --burgundy-400: #C43A62;
  --burgundy-300: #D96B8A;
  --burgundy-200: #EAAABB;
  --burgundy-100: #F5D5DE;
  --burgundy-50: #FDF0F3;
  --silver-400: #9CA3AF;
  --silver-300: #C0C5CE;
  --silver-200: #E2E5EA;
  --silver-100: #F3F4F6;
  --dark: #1A0A10;
  --white: #FFFFFF;
  --gold: #D4A853;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--burgundy-900);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a {
  color: var(--burgundy-200);
  text-decoration: none;
  transition: color 0.3s;
}
.top-bar a:hover { color: var(--white); }
.top-bar .phone-top {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.5px;
}
.top-bar .phone-top svg {
  vertical-align: middle;
  margin-right: 4px;
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--white);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(61,10,26,0.08);
  transition: box-shadow 0.3s;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .logo img {
  height: 52px;
  transition: transform 0.3s;
}
.navbar .logo img:hover { transform: scale(1.05); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--burgundy-900);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--burgundy-600);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--burgundy-600); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--burgundy-700);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700 !important;
  transition: all 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--burgundy-500) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123,22,54,0.3);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 26px; height: 3px;
  background: var(--burgundy-800);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--burgundy-900);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('hero-bg.png') center/cover no-repeat;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61,10,26,0.92) 0%, rgba(123,22,54,0.7) 50%, rgba(61,10,26,0.85) 100%);
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-content { max-width: 700px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 18px;
  border-radius: 50px;
  color: var(--burgundy-200);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  animation: fadeInDown 0.8s ease;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 900;
  animation: fadeInUp 0.8s ease;
}
.hero h1 span {
  background: linear-gradient(135deg, var(--gold), #F0D080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.2rem;
  color: var(--burgundy-100);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
  animation: fadeInUp 0.8s 0.2s ease both;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.4s ease both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--burgundy-600), var(--burgundy-700));
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(123,22,54,0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(123,22,54,0.5);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.3s;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-3px);
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  animation: fadeInUp 0.8s 0.6s ease both;
}
.hero-stat { text-align: center; }
.hero-stat .number {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
}
.hero-stat .label {
  font-size: 0.85rem;
  color: var(--burgundy-200);
  font-weight: 500;
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 90px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  background: var(--burgundy-50);
  color: var(--burgundy-600);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--burgundy-900);
  margin-bottom: 16px;
  font-weight: 800;
}
.section-header p {
  color: var(--silver-400);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(61,10,26,0.12);
}
.about-image img {
  width: 100%;
  display: block;
  border-radius: 20px;
}
.about-experience-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--burgundy-700);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 16px;
  backdrop-filter: blur(8px);
}
.about-experience-badge .num {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  display: block;
}
.about-experience-badge .txt {
  font-size: 0.85rem;
  opacity: 0.9;
}
.about-text h2 {
  font-size: 2rem;
  color: var(--burgundy-900);
  margin-bottom: 20px;
  font-weight: 800;
}
.about-text p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1.02rem;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--burgundy-50);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--burgundy-800);
}
.about-feature svg {
  flex-shrink: 0;
  color: var(--burgundy-600);
}

/* ===== SERVICES ===== */
.services-bg {
  background: linear-gradient(180deg, var(--burgundy-50) 0%, var(--white) 100%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 30px;
  border: 1px solid var(--silver-200);
  transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--burgundy-600), var(--burgundy-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(61,10,26,0.1);
  border-color: var(--burgundy-200);
}
.service-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--burgundy-600), var(--burgundy-800));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 1.5rem;
  transition: transform 0.3s;
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }
.service-card h3 {
  font-size: 1.25rem;
  color: var(--burgundy-900);
  margin-bottom: 12px;
  font-weight: 700;
}
.service-card p {
  color: #666;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  text-align: center;
  padding: 36px 20px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--silver-200);
  transition: all 0.3s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(61,10,26,0.08);
}
.why-icon {
  width: 70px; height: 70px;
  background: var(--burgundy-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--burgundy-600);
  font-size: 1.6rem;
  transition: all 0.3s;
}
.why-card:hover .why-icon {
  background: var(--burgundy-700);
  color: var(--white);
  transform: scale(1.1);
}
.why-card h4 {
  font-size: 1.05rem;
  color: var(--burgundy-900);
  margin-bottom: 8px;
  font-weight: 700;
}
.why-card p {
  color: #777;
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--burgundy-900) 0%, var(--burgundy-700) 50%, var(--burgundy-800) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 800;
}
.cta-banner p {
  color: var(--burgundy-200);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--burgundy-900);
  color: var(--burgundy-200);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 48px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 700;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: var(--burgundy-200);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer ul a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}
.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--burgundy-400);
}
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}
.footer-phone-big {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}
.footer-phone-big:hover { color: var(--gold); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE ===== */
@media (max-width: 968px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 20px; gap: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
  .nav-links.active { display: flex; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
}
@media (max-width: 600px) {
  .top-bar .container { justify-content: center; text-align: center; }
  .hero { min-height: 75vh; }
  .hero h1 { font-size: 1.8rem; }
  .hero-buttons { flex-direction: column; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; align-items: flex-start; }
}
