:root {
    --bg: #fff;
    --muted: #6b7280;
    --accent: #0b6;
    --radius: 8px;
    font-family: Inter, system-ui, Arial
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    background: var(--bg);
    color: #111;
    font-family: Inter, system-ui, Arial
}

copyright,
.copyright {
    display: block;
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

.copyright {
    text-align: center;
    color: #cbd5e1;
    margin-top: 0.5rem;
}

.copyright {
    text-align: center;
    color: #cbd5e1;
    margin-top: 0.5rem;
}

.copyright {
    text-align: center;
    color: #cbd5e1;
    margin-top: 0.5rem;
}


.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem
}

.site-header {
    background: #f8fafc;
    border-bottom: 1px solid #e6eef7
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0
}

.logo img {
    height: 44px
}

.main-nav a {
    margin: 0 0.6rem;
    color: #111;
    text-decoration: none
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    font-size: 1.2rem
}

.hero {
    padding: 2rem 0;
    background: linear-gradient(90deg, #f7fbff, white)
}

.hero-inner {
    display: flex;
    gap: 1.5rem;
    align-items: center
}

.hero-copy {
    flex: 1
}

.hero-media img {
    width: 520px;
    max-width: 100%;
    border-radius: 8px
}

.muted {
    color: var(--muted)
}

.btn {
    display: inline-block;
    padding: .6rem 1rem;
    border-radius: 6px;
    text-decoration: none
}

.btn-primary {
    background: #0b6;
    color: #fff
}

.btn-ghost {
    background: transparent;
    border: 1px solid #ddd;
    color: #111
}

.highlights {
    list-style: disc;
    margin-left: 1rem;
    color: var(--muted)
}

.card {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .05)
}

.grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr)
}

.cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f1f7ff;
    border-radius: 8px
}

.site-footer {
    background: #0f1724;
    color: #fff;
    padding: 1.25rem 0;
    margin-top: 2rem
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start
}

.footer-links a {
    display: block;
    margin: 0.2rem 0;
    color: #cfe8ff
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

input,
textarea {
    width: 100%;
    padding: .5rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: .5rem
}

@media(max-width:900px) {
    .hero-inner {
        flex-direction: column
    }

    .grid {
        grid-template-columns: 1fr
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .menu-toggle {
        display: block
    }

    .main-nav {
        display: none
    }
}

.whatsapp-float {
    position: fixed;
    right: 16px;
    bottom: 16px;
    background: #25d366;
    color: #fff;
    padding: 12px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    z-index: 1000
}