/*
Theme Name: Tema BER Prueba
Theme URI: https://barilocheredes.com.ar/
Author: Antigravity
Description: Tema experimental desde cero para probar las redirecciones y la caché de Hostinger. Tiene círculos para las notas y el logo en óvalo.
Version: 1.0.0
Text Domain: tema-ber-prueba
*/

body {
  font-family: 'Public Sans', sans-serif;
  background-color: #f0f4f2;
  color: #222;
  margin: 0;
  padding: 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Cabecera Experimental Fija */
.site-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  border-bottom: 3px solid #1e3f20;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  z-index: 9999;
}
.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

/* Logo dentro de un Óvalo */
.logo-oval-container {
  border: 3px solid #1e3f20;
  border-radius: 50% / 50%;
  padding: 8px 18px;
  background-color: #e6eef5;
  display: inline-block;
}
.logo-oval {
  height: 48px;
  width: auto;
}

/* Slogan */
.slogan-text {
  font-size: 16px;
  font-weight: 700;
  color: #1e3f20;
  font-style: italic;
}

/* Menú Hamburguesa Simple */
.hamburguesa-btn {
  background: none;
  border: 2px solid #1e3f20;
  border-radius: 6px;
  padding: 6px 12px;
  color: #1e3f20;
  font-weight: 700;
  cursor: pointer;
}

/* Círculos para las notas en Portada */
.circulo-notes-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 48px 0;
  flex-wrap: wrap;
}
.nota-circulo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  width: 180px;
}
.nota-circulo-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 4px solid #1e3f20;
  transition: transform 0.3s ease;
}
.nota-circulo-item:hover .nota-circulo-img {
  transform: scale(1.08);
}
.nota-circulo-title {
  margin-top: 12px;
  font-weight: 700;
  text-align: center;
  font-size: 13.5px;
  line-height: 1.3;
}

/* Caja de Notas */
.nota-clean-box {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin-bottom: 24px;
}
