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

body {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.3;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #2d3a43;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.navbar-logo img {
  height: 30px;
  width: auto;
  display: block;
}

.navbar-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  transition: transform 0.2s;
}

.navbar-icon:hover {
  transform: scale(1.15);
}

.navbar-icon img {
  width: 25px;
  height: auto;
}

/* ── HEADER ── */
header {
  background: #111 url('skyline.jpg') center/cover no-repeat;
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

header h1,
header h2,
header img,
header p,
header .btn {
  position: relative;
  z-index: 1;
}

header img {
  max-width: 280px;
  width: 60%;
  margin-bottom: 12px;
}

header p {
  font-size: 18px;
  margin-top: 12px;
  color: #fff;
  font-style: italic;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 0 5px rgba(0,0,0,0.8);
  line-height: 1.3;
}

header h2 {
  font-size: 32px;
  font-weight: normal;
  letter-spacing: 2px;
  color: #ffffff;
  margin-top: 8px;
}

.header-logo {
  max-width: 660px;
  width: 60%;
  height: auto;
  margin-bottom: 12px;
}



/* ── SECCIONES ── */
.seccion {
  background: #000000;
  color: #ffffff;
  padding: 50px 20px;
  border-top: 1px solid #444;
}

.seccion-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto 36px;
}

.seccion-header h2 {
  font-family: 'Archivo', sans-serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0;
  margin: 0;
  text-transform: uppercase;
  line-height: 1;
}

.grafismo {
  height: 2rem;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.seccion-footer {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.estrellas {
  max-width: 150px;
  width: 30%;
  height: auto;
}

.mapa-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.mapa-wrap iframe {
  width: 100%;
  height: 380px;
  border-radius: 8px;
}

.quienes-somos p {
  max-width: 900px;
  margin: 0 auto 16px;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.3;
  text-align: center;
}

/* ── BARRA ROJA ── */
.barra-roja {
  background-color: #000000;
  text-align: center;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.barra-roja-grafismo {
  height: 1em;
  width: auto;
  display: block;
  flex-shrink: 0;
  vertical-align: middle;
}

.barra-roja h2 {
  font-size: 42px;
  font-weight: bold;
  font-style: italic;
  color: #ffffff;
  letter-spacing: 3px;
  text-transform: capitalize;
  margin: 0;
  padding: 22px 20px;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

/* ── BOTÓN ── */
.btn {
  display: inline-block;
  margin-top: 28px;
  background: #e30a17;
  color: white;
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.2s;
}

.btn:hover {
  background: #ff3b47;
}

/* ── CONTENEDOR ── */
.container {
  max-width: 100%;
  margin: 0;
  padding: 60px 20px;
  background: #000000;
}

.container > * {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* ── TÍTULOS DE SECCIÓN ── */
.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #ffffff;
  letter-spacing: 1px;
}

.barra-roja .section-title {
  margin-bottom: 0;
  padding: 22px 20px;
  line-height: 1.4;
  position: relative;
  z-index: 1;
  font-style: italic;
  font-weight: bold;
  text-transform: none;
  letter-spacing: 1px;
}

/* ── SERVICIOS ── */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .services {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #000000;
  border: 1px solid #000000;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(227, 10, 23, 0.6);
}



.card-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.card-img-wrap h3 {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 10px 16px;
  font-family: 'Archivo', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  width: 100%;
  background: transparent;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 0 5px rgba(0,0,0,0.8);
  z-index: 1;
}

.card h3 {
  font-size: 24px;
  margin: 18px 16px 12px;
  color: #ffffff;
}

.card p {
  font-size: 16px;
  color: #ffffff;
  padding: 0 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.card.active p {
  max-height: 200px;
  padding: 16px 16px 20px;
}

.card {
  cursor: pointer;
}

/* ── BARRA GRIS ── */
.barra-gris-section {
  position: relative;
  margin: 0;
  padding: 0;
  line-height: 0;
  background: #000000;
  display: flex;
  align-items: center;
}

.barra-gris-section img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

.barra-gris-section h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  color: #ffffff;
  font-size: 36px;
  font-style: italic;
  text-align: center;
  width: 100%;
  line-height: 1.3;
  z-index: 1;
}

.about-banner {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

/* ── SOBRE NOSOTROS ── */
.about {
  background: #111;
  color: white;
  text-align: center;
  padding: 70px 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.about h2 {
  font-size: 30px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.about p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.8;
}

.about-logo {
  display: block;
  margin: 28px auto 0;
  max-width: 250px;
  width: 50%;
  height: auto;
}

/* ── FOOTER ── */
footer {
  background: #222;
  color: #ccc;
  font-size: 14px;
  padding: 36px 24px 24px;
  border-top: 1px solid #444;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-brand img {
  height: 40px;
  width: auto;
}

.footer-divider {
  border: none;
  border-top: 1px solid #444;
  margin: 0 0 24px;
}

.footer-contacto {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.footer-contacto span {
  color: #ccc;
}

.footer-contacto a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contacto a:hover {
  color: #e30a17;
}

.footer-creator {
  text-align: center;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-creator p {
  font-size: 12px;
  color: #666;
}

.footer-creator a {
  color: #ccc;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s;
}

.footer-creator a:hover {
  color: #e30a17;
}

.footer-creator img {
  height: 28px;
  width: auto;
  opacity: 0.4;
}

.footer-copy {
  text-align: center;
  color: #666;
  padding-top: 4px;
}

@media (max-width: 640px) {
  .footer-contacto {
    flex-direction: column;
    align-items: center;
  }

  .footer-brand {
    flex-direction: column;
    gap: 12px;
  }
}
.mapa {
  padding: 40px 20px;
  text-align: center;
}

.mapa iframe {
  width: 100%;
  max-width: 400px;
  height: 400px;
  border-radius: 5px;
}

.estrellas {
  width: 100%;
  height: auto;
}

