/* ==========================================================================
   CONFIGURACIÓN GENERAL (Premailer lo convertirá a inline styles)
   ========================================================================== */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #F8F4EF;
  color: #4A4A4A;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

/* El contenedor principal de fondo beige */
.email-wrapper {
  background-color: #F8F4EF;
  width: 100%;
}

/* LA TARJETA BLANCA (Corregida con los padding y bordes de Figma) */
.email-content {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02);
  font-size: 16px;
  line-height: 1.62;
  color: #4A4A4A;
}

/* ==========================================================================
   TIPOGRAFÍA Y TITULARES
   ========================================================================== */
h2, .greeting {
  font-size: 20px;
  color: #43683D; /* Verde Oliva del diseño */
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 24px;
  line-height: 1.4;
}

p {
  font-size: 16px;
  line-height: 1.62;
  color: #4A4A4A;
  margin-top: 0;
  margin-bottom: 20px;
}

strong {
  color: #1A362B; /* Verde bosque oscuro para resaltar texto importante */
  font-weight: 600;
}

/* ==========================================================================
   BOTÓN COMPACTO (Fiel a Figma, sin width: 100%)
   ========================================================================== */
.button-container {
  text-align: center;
  margin: 36px 0;
}

.button {
  display: inline-block;
  background-color: #43683D;
  color: #ffffff !important;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
}

/* Separador horizontal fino */
hr, .divider {
  border: 0;
  border-top: 1px solid #F1ECE4;
  margin: 28px 0;
}

/* Firma final */
.signature {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.5;
  color: #4A4A4A;
}

.signature-brand {
  color: #43683D;
  font-weight: 600;
}

/* ==========================================================================
   PIE DE PÁGINA (FOOTER)
   ========================================================================== */
.email-footer {
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
  color: #A08E79;
  padding: 32px 16px 48px 16px;
}

.email-footer p {
  font-size: 12px;
  color: #A08E79;
  margin: 0 0 10px 0;
}

.email-footer .legal-text {
  font-size: 11px;
  line-height: 1.5;
}

.email-footer a {
  color: #8C765C;
  margin-bottom: 0.75rem;
  text-decoration: underline;
}

@media only screen and (max-width: 600px) {
  .email-content {
    padding: 32px 20px !important;
  }
  .logo-space {
    padding: 30px 0 20px 0 !important;
  }
}
