/* ===== Variables y Reset ===== */
:root {
  --color-yellow: #fae915;
  --color-black: #000000;
  --color-dark: #0a0a0a;
  --color-gray: #1a1a1a;
  --color-light-gray: #2a2a2a;
  --color-text: #ffffff;
  --color-text-muted: #a0a0a0;
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--color-black);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* ===== Header/Navigation ===== */
#header {
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(250, 233, 21, 0.1);
  transition: all 0.3s ease;
  z-index: 1000;
}

#header.scrolled {
  box-shadow: 0 4px 20px rgba(250, 233, 21, 0.1);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-text) !important;
  text-decoration: none;
}

.logo-container {
  width: 50px;
  height: 50px;
  background-color: var(--color-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.nav-link {
  color: var(--color-text-muted) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--color-yellow) !important;
}

.btn-yellow {
  background-color: var(--color-yellow);
  color: var(--color-black);
  border: none;
  padding: 0.625rem 1.5rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-yellow:hover {
  background-color: #e8d614;
  color: var(--color-black);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(250, 233, 21, 0.3);
}

/* ===== Hero Section ===== */
.hero-section {
  min-height: 100vh;
  background-color: var(--color-black);
  position: relative;
  overflow: hidden;
}

.diagonal-stripe {
  position: absolute;
  top: 0;
  right: -10%;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, var(--color-yellow) 50%, transparent 100%);
  opacity: 0.05;
  transform: skewX(-15deg);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.badge-yellow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-yellow);
  color: var(--color-black);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.875rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

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

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn-outline-light {
  background-color: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-yellow);
  padding: 0.625rem 1.5rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-outline-light:hover {
  background-color: var(--color-yellow);
  color: var(--color-black);
  border-color: var(--color-yellow);
  transform: translateY(-2px);
}

.feature-card {
  background-color: var(--color-gray);
  border: 2px solid var(--color-yellow);
  border-radius: 0.75rem;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(250, 233, 21, 0.2);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-yellow);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  stroke: var(--color-black);
}

.feature-title {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-yellow);
}

.feature-text {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  border: 3px solid var(--color-yellow);
  box-shadow: 0 20px 60px rgba(250, 233, 21, 0.2);
}

/* ===== About Section ===== */
.about-section {
  background-color: var(--color-dark);
  position: relative;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text);
}

.about-image img {
  border: 3px solid var(--color-yellow);
  box-shadow: 0 20px 60px rgba(250, 233, 21, 0.15);
}

.about-card {
  background-color: var(--color-gray);
  border: 2px solid rgba(250, 233, 21, 0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  height: 100%;
}

.about-card:hover {
  border-color: var(--color-yellow);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(250, 233, 21, 0.2);
}

.about-icon {
  width: 56px;
  height: 56px;
  background-color: var(--color-yellow);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.about-icon svg {
  stroke: var(--color-black);
}

.about-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-yellow);
  margin-bottom: 0.5rem;
}

.about-card-text {
  color: var(--color-text-muted);
  margin: 0;
}

/* ===== Services Section ===== */
.services-section {
  background-color: var(--color-black);
}

.badge-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-black);
  color: var(--color-yellow);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.875rem;
}

.section-title-dark {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-black);
}

.text-dark-muted {
  color: rgba(0, 0, 0, 0.7);
}

.service-card {
  background-color: var(--color-gray);
  border: 2px solid rgba(250, 233, 21, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--color-yellow);
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(250, 233, 21, 0.2);
}

.service-icon {
  width: 64px;
  height: 64px;
  background-color: var(--color-yellow);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon svg {
  stroke: var(--color-black);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-yellow);
  margin-bottom: 1rem;
}

.service-description {
  color: var(--color-text-muted);
  margin: 0;
}

/* ===== Contact Section ===== */
.contact-section {
  background-color: var(--color-dark);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.contact-icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-yellow);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  stroke: var(--color-black);
}

.contact-label {
  font-weight: 600;
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.contact-value {
  font-weight: 700;
  color: var(--color-text);
  font-size: 1.125rem;
  text-decoration: none;
}

.contact-value:hover {
  color: var(--color-yellow);
  text-decoration: underline;
}

.contact-cta-card {
  background-color: var(--color-gray);
  border: 2px solid var(--color-yellow);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  box-shadow: 0 20px 60px rgba(250, 233, 21, 0.15);
}

.cta-icon {
  width: 80px;
  height: 80px;
  background-color: var(--color-yellow);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.cta-icon svg {
  stroke: var(--color-black);
}

.cta-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-yellow);
  margin-bottom: 1rem;
}

.cta-text {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.btn-dark {
  background-color: var(--color-yellow);
  color: var(--color-black);
  border: none;
  padding: 1rem 2rem;
  font-weight: 700;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-decoration: none;
}

.btn-dark:hover {
  background-color: #e8d614;
  color: var(--color-black);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(250, 233, 21, 0.4);
}

/* ===== Footer ===== */
.footer {
  background-color: var(--color-dark);
  border-top: 1px solid rgba(250, 233, 21, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  width: 40px;
  height: 40px;
  background-color: var(--color-yellow);
  border-radius: 50%;
  padding: 6px;
}

.footer-brand-text {
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--color-text);
}

.footer-text {
  color: var(--color-text-muted);
  margin-top: 1rem;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-yellow);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-divider {
  border-color: rgba(250, 233, 21, 0.1);
  margin: 2rem 0;
}

.footer-copyright {
  color: var(--color-text-muted);
  margin: 0;
}

/* ===== Floating WhatsApp Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 64px;
  height: 64px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
  }
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: var(--color-gray);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    border: 1px solid rgba(250, 233, 21, 0.2);
  }

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

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
  }
}
@media (max-width: 1400px) {
  .feature-title{
    font-size: 0.8rem;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }
  .feature-title{
    font-size: 1.1rem;
  }

  .section-title,
  .section-title-dark {
    font-size: 1.75rem;
  }

  .feature-card {
    flex-direction: column;
    text-align: center;
  }

  .contact-cta-card {
    padding: 2rem 1.5rem;
  }
}
