/* ===================================================== */
/*  main.css – NoEsTuAgencia                              */
/*  Versión FINAL – Todo coherente, responsive y brutal   */
/* ===================================================== */

:root {
  --bg: #f5f5f5;
  --white: #ffffff;
  --black: #000000;
  --gray: #cccccc;
  --transition: all 0.3s ease;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--black);
  line-height: 1.6;
}

/* ================== NAVBAR ================== */
.navbar {
  background: var(--white);
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid var(--black);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1.5px;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: var(--black);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  transition: var(--transition);
}

.nav-links a:hover { opacity: 0.6; }
.nav-links a.active { opacity: 0.5; pointer-events: none; cursor: default; }

/* ================== CONTAINER ================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================== HERO HOME ================== */
.hero-home {
  background: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 40px;
}

/* ================== HERO ACERCA ================== */
.hero {
  background: var(--white);
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 100px 40px 140px;
}

/* ================== TEXTOS GRANDES ================== */
.claim {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2.5px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.claim span {
  background: var(--black);
  color: var(--white);
  padding: 4px 18px;
  display: inline-block;
}

.description {
  font-size: 1.85rem;
  line-height: 1.4;
  max-width: 960px;
  margin-bottom: 60px;
  font-weight: 500;
}

.values {
  font-size: 1.3rem;
  line-height: 1.7;
  max-width: 860px;
}

/* ================== BOTONES ================== */
.cta-button,
.submit-btn {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 20px 40px;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.cta-button:hover,
.submit-btn:hover {
  background: #333;
  transform: translateY(-3px);
}

/* ================== FORMULARIO CONTACTO ================== */
.contact-form-section {
  background: var(--white);
  padding: 120px 40px 160px;
}

.form-title {
  font-size: 3.4rem;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: -1.8px;
  margin-bottom: 20px;
}

.form-subtitle {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 50px;
  opacity: 0.9;
}

.contact-form {
  max-width: 900px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px;
  border: 3px solid var(--black);
  font-size: 1.1rem;
  font-family: inherit;
  background: var(--white);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 22px;
  font-size: 1.4rem;
}

.success-message {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #006400;
  margin-top: 30px;
  display: none;
}

/* ================== PÁGINA LEGAL ================== */
.legal-page {
  background: var(--white);
  padding: 100px 40px 160px;
  min-height: 80vh;
}

.legal-page h1 {
  font-size: 3.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.legal-page .update {
  font-size: 1.1rem;
  opacity: 0.7;
  margin-bottom: 60px;
}

.legal-page h2 {
  font-size: 1.8rem;
  font-weight: 900;
  margin: 50px 0 20px;
  text-transform: uppercase;
}

.legal-page p {
  font-size: 1.15rem;
  margin-bottom: 20px;
}

/* ================== FOOTER ================== */
.footer {
  background: var(--bg);
  padding: 100px 40px 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 60px;
  margin-bottom: 60px;
}

.footer-section h3 {
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 12px; }
.footer-section a {
  color: var(--black); text-decoration: none; transition: var(--transition); }
.footer-section a:hover { opacity: 0.6; }

.footer-bottom {
  border-top: 1px solid var(--gray);
  padding-top: 30px;
  text-align: center;
  font-size: 0.95rem;
  opacity: 0.8;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 992px) {
  .claim { font-size: 4.2rem; }
  .description { font-size: 1.6rem; }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 24px;
    padding: 24px 20px;
  }
  .nav-links { gap: 24px; flex-wrap: wrap; justify-content: center; }

  .hero-home, .hero, .contact-form-section, .legal-page {
    padding: 80px 20px;
  }

  .claim { font-size: 2.8rem; letter-spacing: -1.5px; }
  .description { font-size: 1.4rem; }
  .form-title { font-size: 2.6rem; }
  .form-subtitle { font-size: 1.2rem; }
  .legal-page h1 { font-size: 2.8rem; }
}

@media (max-width: 480px) {
  .claim { font-size: 2.4rem; }
  .description { font-size: 1.25rem; }
}