/* Reset pequeño */
* {box-sizing: border-box; margin:0; padding:0}
html,body {height:100%}
body{
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color:#fff;
  background: #f7f7f7;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* Header */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #8e2de2 0%, #c13b60 50%, #ff7a5a 100%);
  z-index: -1;
}

.site-header {
  background: white;
  color:#111;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position:sticky;
  top:0;
  z-index:50;
}
.header-inner{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 20px;
}
.brand {display:flex; align-items:center; gap:18px;}
.logo{height:26px}
.top-nav a {margin-right:14px; color:#333; text-decoration:none; font-size:14px}
.auth .link {margin-right:12px; color:#333; text-decoration:none}
.auth .signup {border:1px solid #ddd; padding:6px 10px; border-radius:4px; text-decoration:none; color:#111; font-weight:600}

/* Hero */
.hero{
  padding:48px 0 60px;
}
.hero-inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}
.breadcrumbs{opacity:0.9; font-size:13px; margin-bottom:10px}
.title{font-size:40px; line-height:1.05; margin-bottom:12px; font-weight:700}
.lead{max-width:850px; opacity:0.95; margin-bottom:16px; font-size:16px}
.hero-cta{display:inline-block; margin-top:8px; background:rgba(255,255,255,0.12); padding:10px 14px; border-radius:12px; font-weight:600}

/* Showcase */
.showcase{
  margin-top:20px;
  padding:22px 0 60px;
}
.showcase-inner{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  gap:20px;
  padding:0 20px;
}
.left-panel{
  width:240px;
}
.panel-card{
  background:#2f3437;
  color:#dfe6e9;
  padding:18px;
  border-radius:8px;
  min-height:420px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.panel-card h3{margin-bottom:12px}
.event-item{display:flex; gap:12px; align-items:flex-start; margin-bottom:18px}
.dot{width:36px; height:36px; background:linear-gradient(180deg,#3bb78f,#0bab64); border-radius:6px}
.event-text strong{display:block; font-size:13px; margin-bottom:8px}
.small-btn{display:inline-block; background:#1f8ef1; color:white; padding:6px 8px; border-radius:6px; font-size:13px; text-decoration:none}
.add-site{margin-top:18px; width:100%; padding:12px; background:#09b76b; color:white; border:none; border-radius:8px; font-weight:700}

/* Widget area */
.widget-wrap{flex:1; display:flex; flex-direction:column}
.widget-bar{background:#fff; color:#333; padding:10px 12px; border-top-left-radius:8px; border-top-right-radius:8px; font-weight:600; text-align:center}
.widget-frame{
  background:#0b0b0b;
  border-radius:6px;
  padding:24px;
  margin-top:0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  overflow:hidden;
}
.calendar-img{
  width:100%;
  display:block;
  border-radius:4px;
  max-height:520px;
  object-fit:cover;
}

/* Features row */
.features-row{padding:50px 0 80px; background: linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.03) 100%);}
.features-inner{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  gap:20px;
  padding:0 20px;
}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  padding:24px;
  border-radius:12px;
  flex:1;
  min-height:140px;
  color:rgba(255,255,255,0.95);
}
.card ul{list-style:none; line-height:1.9}
.card h4{margin-bottom:8px}

/* Footer */
.site-footer{
  background:#0f0f10;
  padding:18px 0;
  color:#bbb;
}
.footer-inner{max-width:1200px; margin:0 auto; padding:0 20px; display:flex; justify-content:space-between; align-items:center; font-size:14px}
.footer-inner nav a{margin-left:16px; color:#999; text-decoration:none}

/* Responsive */
@media (max-width: 900px){
  .title{font-size:28px}
  .showcase-inner{flex-direction:column}
  .left-panel{width:100%}
  .widget-frame{padding:12px}
  .calendar-img{max-height:380px}
  .features-inner{flex-direction:column}
  .header-inner{padding:10px}
}
@media (max-width:480px){
  .title{font-size:22px}
  .lead{font-size:14px}
  .logo{height:20px}
  .top-nav{display:none}
  .auth .signup{display:none}
}
