* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: "Manrope", Arial, sans-serif;
    background: #f7f5ef;
    color: #222;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.page {
    width: 100%;
    min-height: 100vh;
    padding: 40px 18px 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    width: 100%;
    max-width: 820px;
    text-align: center;
}

.logo {
    width: 100%;
    margin-bottom: 42px;
    display: flex;
    justify-content: center;
}

.logo img {
    width: min(100%, 430px);
    max-height: 210px;
    object-fit: contain;
    display: block;
}

h1 {
    margin-bottom: 46px;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.15;
    font-weight: 700;
    color: #222;
    letter-spacing: -0.7px;
}

.animated-title {
    opacity: 0;
    transform: translateY(12px);
    animation: titleFade 0.9s ease forwards;
}

@keyframes titleFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact {
    width: 100%;
    max-width: 660px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #ddd4c4;
}

.contact p {
    margin-bottom: 16px;
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    font-weight: 400;
}

.contact p:last-child {
    margin-bottom: 0;
}

.contact i {
    margin-right: 9px;
    color: #8a6a3f;
}

.contact a {
    font-weight: 500;
}

.float-contact {
    position: fixed;
    left: 24px;
    bottom: 24px;
    display: flex;
    gap: 12px;
    z-index: 20;
}

.float-contact a {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: 0.25s ease;
}

.float-contact a:hover {
    transform: translateY(-3px);
}

.float-contact .phone {
    background: #222;
}

.float-contact .whatsapp {
    background: #25d366;
}

@media (max-width: 768px) {
    .page {
        padding: 34px 18px 105px;
        align-items: center;
    }

    .content {
        max-width: 100%;
    }

    .logo {
        margin-bottom: 36px;
    }

    .logo img {
        width: min(100%, 360px);
        max-height: 180px;
    }

    h1 {
        margin-bottom: 36px;
        font-size: 36px;
        letter-spacing: -0.4px;
    }

    .contact {
        max-width: 560px;
        padding-top: 20px;
    }

    .contact p {
        font-size: 15.5px;
        line-height: 1.65;
    }

    .float-contact {
        left: 18px;
        bottom: 18px;
    }

    .float-contact a {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .page {
        padding: 28px 16px 100px;
    }

    .logo {
        margin-bottom: 32px;
    }

    .logo img {
        width: min(100%, 310px);
        max-height: 160px;
    }

    h1 {
        margin-bottom: 32px;
        font-size: 30px;
        line-height: 1.2;
    }

    .contact {
        padding-top: 18px;
    }

    .contact p {
        margin-bottom: 13px;
        font-size: 14.5px;
        line-height: 1.6;
    }

    .contact i {
        margin-right: 7px;
    }

    .float-contact {
        left: 15px;
        bottom: 15px;
        gap: 10px;
    }

    .float-contact a {
        width: 46px;
        height: 46px;
        font-size: 17px;
    }
}

@media (max-width: 360px) {
    .logo img {
        width: min(100%, 270px);
        max-height: 140px;
    }

    h1 {
        font-size: 27px;
    }

    .contact p {
        font-size: 14px;
    }
}