/*
Theme Name: Yedmilk Base
Theme URI:  https://yedmilk.com
Author:     Yedmilk Team
Description: Tema Base (Reset Seguro).
Version:    7.0
*/

/* 1. REGLA DE ORO: Evita que el padding aumente el ancho total */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. RESET UNIVERSAL */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden; /* Esto corta cualquier cosa que se salga lateralmente */
}

body {
  background-color: #ffffff;
  font-family: 'Poppins', sans-serif;
  color: #1e293b;
  min-height: 100vh;
}

/* 3. SEGURIDAD DE OBJETOS */
img, video, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 4. SEGURIDAD DE CONTENEDORES */
main, footer, header, .site-content {
  max-width: 100%;
  overflow-x: hidden;
}