:root {
  --primary-red: #c4001a; /* Adjusted to match the deep red in the logo */
  --accent-gold: #d4af37;
  --dark-bg: #0a0a0a;
  --text-white: #ffffff;
  --text-gray: #b0b0b0;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
  font-family: "Inter", sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-white);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1,
h2,
.main-logo {
  font-family: "Outfit", sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Background */
.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      135deg,
      rgba(10, 10, 10, 0.95) 0%,
      rgba(196, 0, 26, 0.15) 100%
    ),
    url("assets/latinhouse_bg.png");
  background-size: cover;
  background-position: center;
  z-index: -1;
  animation: zoomBg 20s infinite alternate linear;
}

@keyframes zoomBg {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

/* Header */
header {
  padding: 20px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-logo {
  height: 60px;
  filter: drop-shadow(0 0 10px rgba(196, 0, 26, 0.3));
  transition: transform 0.3s ease;
}

.main-logo:hover {
  transform: scale(1.05);
}

.lang-selector {
  display: flex;
  gap: 10px;
}

.lang-btn {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-gray);
  padding: 5px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.lang-btn.active,
.lang-btn:hover {
  border-color: var(--primary-red);
  color: var(--text-white);
  background: rgba(196, 0, 26, 0.1);
}

/* Hero Section */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(to bottom, #ffffff 0%, #e0e0e0 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 30px;
  max-width: 600px;
  margin-inline: auto;
}

.services-brief {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.05);
  display: inline-block;
  padding: 10px 24px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* Contact Card */
.contact-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 30px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.contact-card h2 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.contact-card p {
  color: var(--text-gray);
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
  text-align: left;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-white);
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-item:hover {
  color: var(--primary-red);
}

.icon {
  font-size: 1.2rem;
  width: 24px;
}

.phones {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-container {
  margin-top: 10px;
}

.whatsapp-btn {
  display: inline-block;
  background: var(--primary-red);
  color: white;
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(196, 0, 26, 0.3);
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(196, 0, 26, 0.5);
  background: #e6001e;
}

/* Footer */
footer {
  padding: 40px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  animation: revealIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}
.delay-3 {
  animation-delay: 0.6s;
}

@keyframes revealIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  .contact-card {
    padding: 30px 20px;
  }
}
