/* DESIGN SYSTEM ABEMDIS */
:root {
    --abemdis-deep-blue: #0F7385;
    --abemdis-turquoise: #14A5C0;
    --abemdis-light-teal: #59C2BB;
    --abemdis-white: #FFFFFF;
    --abemdis-soft-bg: #F8FBFC;
    --abemdis-text: #1E272E;
    --abemdis-text-light: #3D4852;
    
    /* Efeito Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-blur: blur(12px);
    
    --shadow-soft: 0 10px 30px rgba(15, 115, 133, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--abemdis-soft-bg);
    color: var(--abemdis-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER & NAVIGATION */
.main-header {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: var(--shadow-soft);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 120px;
    width: auto;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 25px;
}

.nav-list a {
    text-decoration: none;
    color: var(--abemdis-deep-blue);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-list a:hover {
    color: var(--abemdis-turquoise);
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 220px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 10px 0;
    top: 100%;
    left: 0;
    margin-top: 15px;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

.dropdown-content li a {
    padding: 10px 20px;
    display: block;
    font-weight: 500;
}

.dropdown-content li a:hover {
    background-color: #f0f9fa;
}

/* BUTTONS */
.btn-associe, .btn-doe {
    padding: 10px 22px;
    border-radius: 50px;
    text-align: center;
}

.btn-associe {
    background: var(--abemdis-deep-blue);
    color: white !important;
}

.btn-doe {
    background: var(--abemdis-turquoise);
    color: white !important;
}

.btn-primary {
    background: linear-gradient(135deg, var(--abemdis-deep-blue), var(--abemdis-turquoise));
    color: white;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 800;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(20, 165, 192, 0.2);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(20, 165, 192, 0.3);
}

/* HERO SECTION */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: 
        linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.85)), 
        url('hero_pessoas.png');
    background-size: cover;
    background-position: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

/* Decoração sutil do cérebro (marca d'água) */
.hero::after {
    content: '';
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 600px;
    height: 600px;
    background: url('Logo ABEMDIS.png') no-repeat;
    background-size: contain;
    opacity: 0.05;
    pointer-events: none;
    filter: grayscale(1);
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--abemdis-deep-blue);
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero p {
    font-size: 1.2rem;
    color: var(--abemdis-text-light);
    margin-bottom: 35px;
}

/* FOOTER */
.main-footer {
    background: var(--abemdis-deep-blue);
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    height: 120px;
    width: auto;
    margin-bottom: 15px;
}

.footer-social a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ANIMATIONS */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ACCESS COUNTER */
.access-counter {
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 15px;
    border-radius: 20px;
    font-family: monospace;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.counter-label {
    font-family: 'Nunito', sans-serif;
    opacity: 0.8;
}

.counter-number {
    color: var(--abemdis-turquoise);
    font-weight: 800;
    letter-spacing: 2px;
}

/* RESPONSIVO */
@media (max-width: 992px) {
    .nav-list { display: none; } /* Mobile menu would go here */
    .hero h1 { font-size: 2.5rem; }
}
