/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  line-height: 1.6;
}

/* GRID */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

[class^="col-"] {
  padding: 15px;
}

.col-12 { flex: 0 0 100%; }
.col-6  { flex: 0 0 50%; }
.col-4  { flex: 0 0 33.333%; }

/* HERO */
.hero {
  display:flex;
  background: linear-gradient(135deg, #aaaaaa, #cccccc);
  color: white;
  padding: 80px 0;
  text-align: center;
  
  min-height: 100vh;
  align-items: center;
}

.hero h1 {
  font-size: 4rem;
  font-family: 'Broadway', Times, serif;
  letter-spacing: -0.05em;
  word-spacing: 0.51em;
  font-weight: 650;
  font-stretch: 110%;
  
}

.hero p {
  margin: 20px 0;
  font-size: 1.2rem;
}

.hero-content {
  margin: auto;

}

/* NAV */
.nav-bar {
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-weight: bold;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
}

/* SECTIONS */
.section {
  padding: 60px 0;
}

.section.light {
  background: #f5f5f5;
}

.align-center {
  align-items: center;
}

.align-top {
  align-items: start;
}

/* FEATURES */
.feature {
  text-align: center;
}

/* MOCKUP */
.mockup .box {
  background: #00cccc;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CARDS */
.card {
  border: 1px solid #ddd;
  text-align: center;
  padding: 30px;
}

.card.featured {
  border: 2px solid #0077cc;
}

.price {
  font-size: 2rem;
  margin: 15px 0;
}

.imagen {
  max-width: 100%;
  margin: 15px 0;
}

img.fit{
	width:100%;
  height: 100%;
	
}

figcaption {
  font-size: 0.8rem;
  margin: 0px 0px 15px 0px;
}

/* BUTTONS */
.btn,
.btn-outline {
  display: inline-block;
  padding: 12px 25px;
  margin-top: 15px;
  text-decoration: none;
  border-radius: 4px;
}

.btn {
  background: #00cc77;
  color: white;
}

.btn-outline {
  border: 0px solid #00cc77;
  color: #00cc77;
}

/* CTA */
.cta {
  background: #afafaf;
  color: white;
  text-align: center;
  padding: 60px 0;
}

#map {
  margin: 15px 0;
  max-width: 100%;
}

/* FOOTER */
footer {
  background: #111;
  color: white;
  padding: 10px 0;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.footer-links a {
  color: white;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .col-6,
  .col-4 {
    flex: 0 0 100%;
  }

  .nav-links {
    justify-content: center;
    margin-top: 10px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }


}
