/* styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

.header {
  text-align: center;
  color: #8c433c;
  padding: 2rem 1rem;
}

.header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.header p {
  font-size: 1rem;
}

.product-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.product-logo {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.product-title {
  font-size: 1.5rem;
  margin: 1rem 0;
}

.product-description {
  font-size: 1rem;
  color: #666;
  padding: 0 1rem;
}

.btn {
  display: inline-block;
  margin: 1rem 0 2rem;
  padding: 0.5rem 1.5rem;
  background-color: #a87168;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #e2cdc1;
  color: brown;
}

/* Sección de Publicidad */
.advertising-section {
  padding: 2rem;
  background-color: #f9f9f9;
  text-align: center;
}

.advertising-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.plan {
  background-color: #fff;
  padding: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.plan-title {
  font-size: 1.8rem;
  color: #2a7ae4;
  margin-bottom: 0.5rem;
}

.plan-price {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.plan-details {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  text-align: left;
}

.plan-details li {
  margin: 0.5rem 0;
  font-size: 1rem;
  color: #555;
}

.contact-button {
  display: inline-block;
  padding: 0.8rem 1.2rem;
  background-color: #2a7ae4;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: #1d5fb8;
}