
/* =======================
   BASE
========================== */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #1C1C1C;
  background: #F5F5F5;
  scroll-behavior: smooth;
}

/* =======================
   NAVIGATION BAR
========================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #1C1C1C;
  color: white;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 15px 0;
  z-index: 1000;
}
.navbar a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
}

/* =======================
   HOME PAGE
========================== */
.home header#hero {
  background: #00A3D6;
  color: white;
  padding: 40px 20px;
  text-align: center;
}
.home .logo {
  max-width: 240px;
  width: 100%;
  display: block;
  margin: 0 auto 30px auto;
}
.home h1 {
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 20px;
  color: white;
}
.home .cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #009688;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

/* =======================
   COMMON SECTIONS
========================== */
section {
  padding: 20px 20px;
  max-width: 1000px;
  margin: auto;
}

/* =======================
   SERVICES / BLOG GRIDS
========================== */
.servicios-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* =======================
   FOOTER
========================== */
footer {
  background: #1C1C1C;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9em;
  color: #fff;
}
.social-icons a {
  margin: 0 10px;
  color: #00A3D6;
  text-decoration: none;
  font-size: 1.2em;
}

/* =======================
   NAV CONTAINER
========================== */
.nav-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.nav-container a {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 10px 16px;
  margin: 5px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  display: inline-block;
}
.nav-container a:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

/* =======================
   WHATSAPP FLOAT
========================== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 12px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 9999;
}

/* =======================
   LANDING PAGE
========================== */
.landing header,
.landing section {
  max-width: 960px;
  margin: auto;
  padding: 60px 20px;
}
.landing h1 {
  color: #0077B6;
  font-size: 2.4em;
}
.landing h2 {
  color: #1C1C1C;
  margin-top: 40px;
}
.landing ul {
  padding-left: 20px;
}
.landing li {
  margin-bottom: 12px;
}
.landing .cta-btn {
  display: inline-block;
  background: #009688;
  color: white;
  padding: 14px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  margin-top: 30px;
}

/* =======================
   BLOG PAGE
========================== */
.blog-content {
  max-width: 800px;
  margin: auto;
  padding: 60px 20px;
  line-height: 1.8;
}
.blog-content h1 {
  font-size: 2.2em;
  margin-bottom: 20px;
}
.blog-footer {
  background: #111;
  color: #EEE;
  text-align: center;
  padding: 40px 20px;
  margin-top: 60px;
}
.blog-footer hr {
  border-color: #444;
  margin-bottom: 20px;
}
.blog-footer p {
  font-weight: normal;
  margin: 8px 0;
}
.blog-footer a {
  color: #00C8FF;
  text-decoration: none;
}
.blog-footer .cta {
  background: #009688;
  color: white;
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}
.blog-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
  line-height: 1.55;
}

.blog-content header {
  margin-bottom: 1.5rem;
}

.hero-container {
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero-container img.hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.blog-content section {
  margin-top: 2.5rem;
}

.blog-content h2 {
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-content p {
  margin-bottom: 1.2rem;
}

