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

body {
    min-height: 100vh;
    padding: 28px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #86bfa0;
}

.page-card {
    width: min(1100px, 100%);
    min-height: min(660px, calc(100vh - 56px));
    padding: 48px 64px 28px;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .1);
}

.vertical {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header.vertical { margin-bottom: 52px; }

.logo {
    font-family: "Mulish", sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}

.logo a { color: #89c5cc; text-decoration: none; }

.menu {
    display: flex;
    align-items: center;
    gap: 40px;
    font-family: "Mulish", sans-serif;
    font-size: 17px;
}

.menu a {
    color: #7d7987;
    text-decoration: none;
    transition: color .2s ease;
}

.menu a:hover, .menu a.current { color: #000; }

main { flex: 1; display: flex; align-items: center; }

.hero { gap: 36px; align-items: center; }

.left {
    flex: 1 1 47%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.main-text { font-family: "Mulish", sans-serif; color: #000; }

.main-text h1 {
    max-width: 520px;
    font-size: clamp(2.65rem, 4.2vw, 3.35rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    text-transform: uppercase;
}

.main-text span { color: #89c5cc; }

.nomain-text {
    margin-top: 24px;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #7d7987;
}

.nomain-text b { color: #000; font-weight: 700; }

.whatsapp {
    margin-top: 30px;
    padding: 14px 26px;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    border-radius: 4px;
    background: #69b99d;
    color: #fff;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease;
}

.whatsapp:hover { background: #4fa088; transform: translateY(-2px); }

.whatsapp img { width: 21px; height: 21px; }

.hero-image {
    flex: 1 1 53%;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: min(520px, 100%);
    height: auto;
    display: block;
}

.footer-container {
    width: 100%;
    padding-top: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #000;
}

.footer-container b { font-weight: 700; }

@media (max-width: 760px) {
    body { padding: 16px; align-items: flex-start; }
    .page-card { min-height: calc(100vh - 32px); padding: 30px 24px 22px; }
    header.vertical { margin-bottom: 34px; }
    .menu { gap: 20px; font-size: 15px; }
    .hero { flex-direction: column; align-items: stretch; }
    .left { align-items: stretch; }
    .main-text h1 { font-size: clamp(2.15rem, 10vw, 2.8rem); }
    .nomain-text { font-size: 15px; }
    .whatsapp { justify-content: center; }
    .hero-image { order: -1; }
    .hero-image img { max-width: 400px; }
}

@media (max-width: 420px) {
    header.vertical { align-items: flex-start; gap: 18px; flex-direction: column; }
    .menu { width: 100%; justify-content: space-between; }
    .footer-container { font-size: 13px; }
}
