/* Fuentes */
@import url('https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;600&display=swap');
@import url('https://cdn.jsdelivr.net/npm/aos@2.3.4/dist/aos.css');

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

body {
  font-family: 'Inter', sans-serif;
  background-color: #F8F5EE;
  color: #4C2818;
  line-height: 1.7;
  max-width: 900px;
  margin: auto;
  padding: 2rem 1rem;
}

/* Encabezados */
h1 {
  font-family: 'Cardo', serif;
  font-size: 5rem;      /* aún más grande */
  text-align: center;
  margin-bottom: 1.5rem;
}

h2 {
  font-family: 'Cardo', serif;
  font-size: 3rem;      /* más grande */
  margin-bottom: 1rem;
}

/* Header */
.site-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}

.logo {
  width: 200px;         /* logo aún más grande */
  margin-bottom: 1rem;
}

/* Switch de idioma */
.lang-switch {
  margin-top: 0.5rem;
}

.lang-switch a,
.lang-switch span {
  font-size: 1rem;
  color: #4C2818;
  text-decoration: none;
  margin: 0 0.5rem;
}

/* Secciones */
section {
  margin-bottom: 3rem;
}

section p {
  font-size: 1.25rem;   /* texto más grande */
  margin-top: 0.75rem;
}

ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

ul li {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* Botones de descarga */
.store-buttons a {
  display: inline-block;
  margin-right: 1rem;
  background-color: #EEE4D0;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  transition: transform .2s;
}

.store-buttons a:hover {
  transform: translateY(-3px);
}

/* Tarjeta Social */
.social-card {
  background: linear-gradient(135deg, #EEE4D0 0%, #F8F5EE 100%);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 8px 32px rgba(76, 40, 24, 0.1);
  border: 1px solid rgba(76, 40, 24, 0.05);
  transition: all 0.3s ease;
}

.social-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(76, 40, 24, 0.15);
}

.social-card-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  gap: 1.5rem;
}

.social-card-image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.social-card-content {
  flex: 1;
}

.social-card-content h3 {
  font-family: 'Cardo', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #4C2818;
}

.social-card-content p {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: #6B4423;
  line-height: 1.4;
}

.social-icons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.social-icons img {
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.social-card:hover .social-icons img {
  opacity: 1;
}

/* Footer */
footer {
  text-align: center;
  font-size: 1rem;
  margin-top: 4rem;
  color: #4C2818;
}

/* AOS */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}
