body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
  color: #333;
}

header {
  background: linear-gradient(90deg, #0044cc 0%, #0066ff 100%);
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
  font-size: 2em;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

nav ul li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

nav ul li a:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.banner {
  background: url("../img/blogroturismo-2.jpg") no-repeat center;
  background-size: cover;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  position: relative;
}

.banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.1));
  z-index: 1;
}

.banner h2 {
  font-size: 2.2em;
  z-index: 2;
  position: relative;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.blog {
  max-width: 800px;
  margin: auto;
  padding: 40px 20px;
}

.blog h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #0044cc;
}

article {
  background-color: #ffffff;
  padding: 24px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

article h3 {
  color: #0044cc;
  margin-top: 0;
  font-size: 1.4em;
}

article p {
  color: #555555;
  line-height: 1.6;
}

article a {
  display: inline-block;
  margin-top: 12px;
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

article a:hover {
  color: #0056b3;
  text-decoration: underline;
}

figcaption {
  margin-top: 8px;
  font-style: italic;
  font-size: 0.9rem;
  color: #666;
  text-align: center;
}

footer {
    background-color: #0044cc;
    color: #ffffff;
    text-align: center;
    padding: 20px 10px;
    margin-top: 60px;
    font-size: 0.95rem;
}

footer a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background-color: #25d366;
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
}

@media (max-width: 600px) {
    header h1 {
        font-size: 1.7em;
    }

    .banner h2 {
        font-size: 1.7em;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
    }
}