﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #1f2937;
    background: #f8fafc;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1140px, 92%);
    margin: 0 auto;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
}

.header-container {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f4c81;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 22px;
}

    .nav-links a {
        font-weight: 500;
        color: #334155;
        transition: color .2s ease;
    }

        .nav-links a:hover,
        .nav-links a.active {
            color: #0f4c81;
        }

.menu-btn {
    display: none;
    width: 30px;
    height: 24px;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
}

    .menu-btn span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background: #0f4c81;
        border-radius: 4px;
        transition: .3s ease;
    }

        .menu-btn span:nth-child(1) {
            top: 0;
        }

        .menu-btn span:nth-child(2) {
            top: 10px;
        }

        .menu-btn span:nth-child(3) {
            top: 20px;
        }

    .menu-btn.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 10px;
    }

    .menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg);
        top: 10px;
    }

/* Hero */
.hero-section {
    padding: 72px 0 48px;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 60%, #ecfeff 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 40px;
    align-items: center;
}

.badge,
.subtitle {
    display: inline-block;
    color: #0f4c81;
    background: #dbeafe;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.hero-text h1 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.15;
    margin-bottom: 18px;
    color: #0f172a;
}

.hero-text p {
    font-size: 1.05rem;
    color: #475569;
}

.hero-image img {
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(15, 76, 129, 0.16);
    object-fit: cover;
    min-height: 320px;
    width: 100%;
}

/* Sections */
.about-section,
.team-section {
    padding: 72px 0;
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
}

    .section-header h2 {
        font-size: clamp(1.8rem, 3vw, 2.6rem);
        margin-bottom: 12px;
        color: #0f172a;
    }

    .section-header p {
        color: #64748b;
    }

/* About cards */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.info-card {
    background: #fff;
    padding: 28px;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    border: 1px solid #e5e7eb;
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e0f2fe;
    color: #0f4c81;
    font-size: 1.3rem;
    margin-bottom: 18px;
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #111827;
}

.info-card p {
    color: #4b5563;
}

.values-list {
    list-style: none;
    margin-top: 8px;
}

    .values-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
        color: #374151;
    }

    .values-list i {
        color: #16a34a;
    }

/* Team */
.team-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.team-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    transition: transform .25s ease, box-shadow .25s ease;
}

    .team-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
    }

.team-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #e5e7eb;
}

    .team-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.team-info {
    padding: 20px;
    text-align: center;
}

    .team-info h3 {
        font-size: 1.15rem;
        color: #0f172a;
        margin-bottom: 6px;
    }

    .team-info p {
        color: #64748b;
    }

.empty-team {
    text-align: center;
    padding: 28px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    color: #64748b;
}

/* Footer */
.site-footer {
    background: #0f172a;
    color: #e2e8f0;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr .8fr;
    gap: 28px;
    padding: 54px 0 28px;
}

.site-footer h3,
.site-footer h4 {
    margin-bottom: 14px;
    color: #fff;
}

.footer-links,
.footer-contact {
    list-style: none;
}

    .footer-links li,
    .footer-contact li {
        margin-bottom: 10px;
        color: #cbd5e1;
    }

    .footer-contact i {
        margin-right: 8px;
    }

.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1e293b;
    color: #fff;
    transition: .2s ease;
}

    .social-icons a:hover {
        background: #0f4c81;
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 16px 0;
    text-align: center;
    color: #94a3b8;
}

/* Floating buttons */
.scroll-top,
.whatsapp-button {
    position: fixed;
    right: 22px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(0,0,0,.15);
    z-index: 999;
}

.scroll-top {
    bottom: 88px;
    background: #0f4c81;
    color: #fff;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
}

    .scroll-top.show {
        opacity: 1;
        visibility: visible;
    }

.whatsapp-button {
    bottom: 22px;
    background: #25d366;
    color: #fff;
    font-size: 1.4rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content,
    .about-grid,
    .team-container,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 78px;
        right: -100%;
        width: min(82vw, 340px);
        height: calc(100vh - 78px);
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        box-shadow: -10px 0 30px rgba(0,0,0,.08);
        transition: .35s ease;
    }

        .nav-links.active {
            right: 0;
        }

    .hero-content,
    .about-grid,
    .team-container,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-section,
    .about-section,
    .team-section {
        padding: 56px 0;
    }

    .scroll-top,
    .whatsapp-button {
        right: 16px;
    }
}
