/* Enfoque Pilates - Structural Stylesheet */
:root {
    --core-primary: #5c7c8a;
    --core-secondary: #fdfaf6;
    --core-accent: #8e9a1c;
    --core-text-main: #34495e;
    --core-text-light: #ecf0f1;
    --core-footer-bg: #22313f;
    --core-white: #ffffff;
    --core-transition: all 0.4s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: var(--core-text-main); background: var(--core-white); line-height: 1.7; overflow-x: hidden; }

/* Navigation */
.header-surface { background: var(--core-white); box-shadow: 0 4px 15px rgba(0,0,0,0.05); padding: 1.2rem 6%; position: fixed; width: 100%; top: 0; z-index: 2000; display: flex; justify-content: space-between; align-items: center; }
.brand-identity { font-size: 1.6rem; font-weight: 700; color: var(--core-primary); text-decoration: none; letter-spacing: 1px; }
.portal-links { display: flex; gap: 2.5rem; list-style: none; }
.portal-links a { text-decoration: none; color: var(--core-text-main); font-weight: 500; font-size: 0.95rem; opacity: 0.85; transition: var(--core-transition); }
.portal-links a:hover { color: var(--core-primary); opacity: 1; }

/* Hero */
.hero-stage { padding: 10rem 6% 6rem; background: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.8)), url('../img/hero-pilates.jpg') center/cover; text-align: center; }
.hero-stage h1 { font-size: 3.5rem; color: var(--core-primary); margin-bottom: 2rem; line-height: 1.2; }
.hero-stage p { font-size: 1.3rem; max-width: 850px; margin: 0 auto 3rem; color: #555; }

/* Dynamic Sections */
.module-wrap { padding: 5.5rem 6%; }
.module-grey { background: var(--core-secondary); }
.module-head { text-align: center; margin-bottom: 4rem; }
.module-head h2 { font-size: 2.4rem; color: var(--core-primary); position: relative; display: inline-block; padding-bottom: 1rem; }
.module-head h2::after { content: ''; position: absolute; bottom: 0; left: 50%; width: 60px; height: 3px; background: var(--core-accent); transform: translateX(-50%); }

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 3rem; }
.pillar-card { background: var(--core-white); padding: 3rem; border-radius: 4px; border-bottom: 4px solid var(--core-accent); box-shadow: 0 5px 25px rgba(0,0,0,0.03); }
.pillar-card h3 { margin-bottom: 1.5rem; color: var(--core-primary); font-size: 1.5rem; }

/* Forms */
.enrollment-panel { max-width: 700px; margin: 0 auto; background: var(--core-primary); padding: 4rem; border-radius: 8px; color: var(--core-text-light); }
.enrollment-panel h2 { text-align: center; color: white; margin-bottom: 2.5rem; }
.input-control { width: 100%; padding: 1rem; margin-bottom: 1.5rem; border: none; border-radius: 4px; outline: none; }
.action-trigger { background: var(--core-accent); color: white; padding: 1.2rem 3rem; border: none; border-radius: 4px; cursor: pointer; font-weight: 700; width: 100%; font-size: 1.1rem; transition: var(--core-transition); }
.action-trigger:hover { background: #7a8518; }

/* FAQ */
.faq-block { margin-bottom: 2rem; border-left: 4px solid var(--core-primary); padding-left: 2rem; }
.faq-block h4 { margin-bottom: 0.8rem; font-size: 1.2rem; }

/* Cookies Banner */
.notice-strip { position: fixed; bottom: 20px; left: 20px; right: 20px; background: var(--core-footer-bg); color: white; padding: 1.5rem 2rem; border-radius: 12px; display: flex; align-items: center; justify-content: space-between; z-index: 9999; box-shadow: 0 10px 40px rgba(0,0,0,0.3); }
.notice-strip p { font-size: 0.9rem; margin-right: 20px; color: #bdc3c7; }
.notice-strip button { background: var(--core-accent); border: none; padding: 0.7rem 1.5rem; color: white; border-radius: 4px; cursor: pointer; font-weight: 600; }

/* Footer */
.basement { background: var(--core-footer-bg); color: var(--core-text-light); padding: 5rem 6% 2rem; }
.basement-layout { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 4rem; margin-bottom: 4rem; }
.footer-group h4 { margin-bottom: 2rem; font-size: 1.2rem; color: var(--core-white); }
.footer-group ul { list-style: none; }
.footer-group li { margin-bottom: 1rem; }
.footer-group a { color: #bdc3c7; text-decoration: none; font-size: 0.95rem; transition: var(--core-transition); }
.footer-group a:hover { color: var(--core-white); }

.copyright-bar { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; text-align: center; font-size: 0.85rem; color: #7f8c8d; }

@media (max-width: 768px) {
    .portal-links { display: none; }
    .hero-stage h1 { font-size: 2.2rem; }
    .enrollment-panel { padding: 2rem; }
}
