/* Larre Borges — Comunicación y Gestión | Reconstructed CSS */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  background: #f5f5f0;
}

a { color: #2a5d84; text-decoration: none; }
a:hover { color: #1a3d54; text-decoration: underline; }

#contentWrap {
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.08);
}

/* HEADER */
#header {
  background: #1a2a3a;
  padding: 30px 0;
  border-bottom: 3px solid #c9a96e;
}
#header .content {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 30px;
}
#header img {
  display: block;
  margin-bottom: 12px;
}
#header p {
  color: #b8c4d0;
  font-size: 13px;
  font-style: italic;
  line-height: 1.5;
}

/* NAVIGATION */
#nav {
  background: #2a4a6a;
  border-bottom: 1px solid #1a3a5a;
}
#nav .contentWrap {
  max-width: 960px;
  margin: 0 auto;
}
#nav .content {
  display: flex;
  max-width: 860px;
  margin: 0 auto;
  padding: 20px 30px;
  gap: 30px;
}
#nav .first,
#nav .second,
#nav .third {
  flex: 1;
}
#nav h3 {
  color: #c9a96e;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-weight: 600;
}
#nav p {
  color: #d0dae4;
  font-size: 12px;
  line-height: 1.7;
}
#nav a {
  color: #8ab4d8;
}
#nav a:hover {
  color: #fff;
  text-decoration: none;
}
#nav strong {
  color: #e0e8f0;
}

/* MAIN CONTENT */
#mainContent {
  padding: 40px 0 50px;
}
#mainContent .content {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 30px;
}
#mainContent h1 {
  font-size: 24px;
  color: #1a2a3a;
  margin-bottom: 20px;
  font-weight: 600;
  border-bottom: 2px solid #c9a96e;
  padding-bottom: 10px;
}
#mainContent h1 strong {
  font-weight: 600;
}
#mainContent p {
  margin-bottom: 15px;
  text-align: justify;
}
#mainContent p.dotted {
  border-bottom: 1px dotted #ccc;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
#mainContent em.copy {
  font-style: italic;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}
#mainContent ul {
  margin: 0 0 20px 20px;
  padding: 0;
}
#mainContent ul li {
  margin-bottom: 8px;
  padding-left: 5px;
}
#mainContent ul.dotted li {
  border-bottom: 1px dotted #e0e0e0;
  padding-bottom: 8px;
}
#mainContent img {
  border: 1px solid #ddd;
  padding: 3px;
  background: #fff;
}
#mainContent .top {
  text-align: right;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px dotted #ccc;
}
#mainContent .top a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* FOOTER */
#footer {
  background: #1a2a3a;
  padding: 20px 0;
  border-top: 3px solid #c9a96e;
}
#footer .content {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#footer p {
  color: #b8c4d0;
  font-size: 12px;
}
#footer a {
  color: #8ab4d8;
}
#footer a:hover {
  color: #fff;
}
#footer #crudo {
  color: #666;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  #nav .content { flex-direction: column; gap: 15px; }
  #footer .content { flex-direction: column; text-align: center; gap: 10px; }
  #mainContent h1 { font-size: 20px; }
}
