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

body {
    font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #222;
    background-color: #f5f5f7;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
}

.topbar {
    background: #0b3b69;
    color: #fff;
    padding: 10px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 10;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-link {
    display: inline-flex;
}

.logo-img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.8);
    background: #fff;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-weight: 700;
    font-size: 18px;
}

.brand-slogan {
    font-size: 12px;
    opacity: 0.9;
}

.topbar-contact {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.topbar-contact-details {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    text-align: right;
}

.phone-label,
.email-label {
    line-height: 1.3;
}

.btn {
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #00c853, #00e676);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 200, 83, 0.4);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0, 200, 83, 0.5);
}

.btn-secondary {
    background: #fff;
    color: #0b3b69;
    border: 1px solid rgba(11, 59, 105, 0.2);
}

.btn-secondary:hover {
    background: #f1f5fb;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.7);
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.12);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero {
    position: relative;
    background: radial-gradient(circle at top left, #1e88e5, #0b3b69);
    color: #fff;
    padding: 56px 0 68px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255,255,255,0.08) 0, transparent 55%),
        radial-gradient(circle at 80% 0, rgba(255,255,255,0.08) 0, transparent 55%);
    opacity: 0.9;
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0,0,0,0.3), rgba(0,0,50,0.1));
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.2fr);
    gap: 28px;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 16px;
}

.hero-text p {
    font-size: 16px;
    max-width: 520px;
    margin-bottom: 18px;
    opacity: 0.97;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0,0,0,0.32);
    border: 1px solid rgba(255,255,255,0.25);
}

.hero-mascote {
    position: relative;
    text-align: center;
}

.mascote-wrapper {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.35);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.mascote-img {
    border-radius: 16px;
    max-height: 260px;
    margin: 0 auto;
    object-fit: contain;
}

.mascote-caption {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 500;
}

.section {
    padding: 56px 0;
}

.section-alt {
    background: #ffffff;
}

.section h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

.section-subtitle {
    color: #555;
    margin-bottom: 22px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.card {
    background: #ffffff;
    border-radius: 16px;
    padding: 16px 16px 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.03);
}

.card h3 {
    margin-bottom: 8px;
    font-size: 17px;
}

.card ul {
    list-style: disc;
    padding-left: 18px;
}

.card li {
    font-size: 13px;
    color: #555;
    margin-bottom: 4px;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.3fr);
    gap: 26px;
    align-items: flex-start;
}

.about-highlight {
    background: #0b3b69;
    color: #ffffff;
    padding: 20px 18px 22px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.16);
}

.about-highlight h3 {
    margin-bottom: 8px;
}

.about-highlight p {
    font-size: 14px;
    margin-bottom: 8px;
}

.checklist {
    list-style: none;
    margin-top: 12px;
}

.checklist li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
    font-size: 14px;
    color: #444;
}

.checklist li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 12px;
    color: #00c853;
}

.seo-phrase {
    margin-top: 10px;
    font-size: 14px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.contact-item .label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #777;
}

.contact-item a {
    text-decoration: none;
    color: #0b3b69;
    font-weight: 500;
}

.small {
    font-size: 12px;
    color: #666;
    margin-top: 8px;
}

.footer {
    background: #0b1020;
    color: #bbb;
    padding: 18px 0 22px;
    font-size: 12px;
}

.footer-inner {
    text-align: center;
}

.footer-note {
    margin-top: 4px;
    color: #777;
}

.whatsapp-fab {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #00c853;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(0,0,0,0.35);
    z-index: 20;
}

.whatsapp-fab:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.45);
}

@media (max-width: 768px) {
    .topbar-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .topbar-contact {
        align-items: flex-start;
    }

    .topbar-contact-details {
        text-align: left;
    }

    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-mascote {
        margin-top: 18px;
    }

    .about-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}
