/* —— VARIABLES —— */
:root {
  --red:       #e8112f;
  --red-dim:   rgba(200, 16, 46, 0.3);
  --black:     #0a0a0a;
  --white:     #f5f5f0;
  --white-dim: rgba(245, 245, 240, 0.5);
}

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

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200, 16, 46, 0.15);
}
.nav-logo a {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
}
.nav-logo a span { color: var(--red); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 110;
  padding: 4px;
}
.hamburger span {
  width: 25px; height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav-menu li a {
  text-decoration: none;
  color: var(--white-dim);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-menu li a:hover,
.nav-menu li a.active { color: var(--red); }

/* ===== PAGE ===== */
#contact-page {
  position: relative;
  overflow: hidden;
  padding: 8rem 6% 5rem;
  min-height: 100vh;
}

.glow-bloom {
  position: absolute;
  top: -10%; left: -5%;
  width: 60%; height: 80%;
  background: radial-gradient(ellipse at 40% 40%,
    rgba(200,16,46,0.18) 0%,
    rgba(120,0,20,0.06) 45%,
    transparent 70%);
  pointer-events: none;
  animation: breathe 5s ease-in-out infinite;
}
.glow-ray {
  position: absolute; inset: 0;
  background: linear-gradient(118deg,
    transparent 38%,
    rgba(200,16,46,0.04) 48%,
    rgba(240,60,80,0.09) 53%,
    rgba(200,16,46,0.04) 58%,
    transparent 68%);
  pointer-events: none;
}
@keyframes breathe { 0%,100%{opacity:1} 50%{opacity:0.5} }

/* PAGE HEADER */
.page-header {
  position: relative;
  z-index: 2;
  margin-bottom: 4rem;
}
.eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.8rem;
}
.page-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1rem;
}
.page-title span { color: var(--red); }
.page-sub {
  font-size: 0.9rem;
  color: var(--white-dim);
  max-width: 480px;
  line-height: 1.7;
}

/* CONTACT GRID */
.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

/* Contact cards */
.contact-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.4rem 1.6rem;
  border: 1px solid rgba(200,16,46,0.2);
  border-radius: 6px;
  background: rgba(200,16,46,0.03);
  text-decoration: none;
  margin-bottom: 1rem;
  transition: all 0.3s;
}
.contact-card:hover {
  background: rgba(200,16,46,0.08);
  border-color: rgba(200,16,46,0.5);
  transform: translateX(4px);
}
.whatsapp-card {
  border-color: rgba(200,16,46,0.4);
  background: rgba(200,16,46,0.06);
}

.contact-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(200,16,46,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}
.contact-icon svg { width: 20px; height: 20px; }

.contact-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.2rem;
}
.contact-value {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.contact-hint {
  font-size: 0.7rem;
  color: var(--red);
}

/* Social */
.social-section { margin-top: 2rem; }
.section-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1rem;
  border-left: 2px solid var(--red);
  padding-left: 0.8rem;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.6rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  color: var(--white-dim);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s;
}
.social-btn:hover {
  border-color: var(--red);
  color: var(--red);
}
.social-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.social-btn.ig svg { fill: #E1306C; }
.social-btn.tw svg { fill: #ffffff; }
.social-btn.li svg { fill: #0A66C2; }
.social-btn.fb svg { fill: #1877F2; }

/* Form */
.form-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.5rem;
  border-left: 2px solid var(--red);
  padding-left: 0.8rem;
}

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 0.8rem 1rem;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group input:focus,
.form-group textarea:focus { border-color: rgba(200,16,46,0.6); }

.btn-send {
  padding: 1rem 2.5rem;
  background: var(--red);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  align-self: flex-start;
}
.btn-send:hover { background: #a00020; }

/* Responsive */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px; right: 0;
    background: rgba(15,10,10,0.97);
    width: 200px;
    border: 1px solid rgba(200,16,46,0.2);
    border-top: none;
    border-radius: 0 0 0 8px;
  }
  .nav-menu.open { display: flex; }
  .nav-menu li a {
    display: block;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  #contact-page { padding: 9rem 8% 6rem; }
  .contact-card { padding: 1.8rem 2rem; }
  .form-group input,
  .form-group textarea { font-size: 0.95rem; padding: 1rem 1.2rem; }
}
.social-btn i { margin-right: 6px; }