* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background: #f8f7f4;
    color: #222;
    min-height: 100vh;
}
html {
    scroll-behavior: smooth;
}

.top-strip {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 35px;
    box-sizing: border-box;
    background: #074e57;
}

.logo-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.logo-circle img {
    width: 75%;
    height: 75%;
    object-fit: contain;
}

.brand-name {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.brand-name h1 {
    font-family: "cintarini";
    margin: 0;
    color: white;
    font-size: 15px;
    letter-spacing: 2px;
}

.contact-button {
    margin-left: auto;
    padding: 13px 25px;
    border-radius: 30px;
    background: #036d75;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.contact-button:hover {
    transform: translateY(-2px);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

.hero-image {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 55px;
}

.hero-image img {
    width: 40%;
    max-width: 850px;
    height: auto;
    display: block;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.10);
}

.content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.company-info h1 {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.company-info p {
    font-size: 16px;
    line-height: 1.9;
    font-weight: 300;
    color: #555;
    margin-bottom: 18px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 35px;
}

.social-button img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.social-button {
    min-width: 190px;
    padding: 15px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.whatsapp {
    background: #25D366;
    color: white;
}

.whatsapp:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.30);
}

.instagram {
    background: #222;
    color: white;
}

.instagram:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.icon {
    font-size: 20px;
    line-height: 1;
}

@media (max-width: 700px) {

    .container {
        width: 92%;
        padding: 35px 0;
    }

    .hero-image {
        margin-bottom: 35px;
    }

    .hero-image img {
        border-radius: 18px;
    }

    .company-info h1 {
        font-size: 28px;
    }

    .company-info p {
        font-size: 14px;
        line-height: 1.8;
    }

    .social-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .social-button {
        width: 100%;
        max-width: 320px;
    }
}
@media (max-width: 600px) {

    .top-strip {
        height: 75px;
        padding: 8px 15px;
    }

    .logo-circle {
        width: 52px;
        height: 52px;
    }

    .brand-name h1 {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .contact-button {
        padding: 9px 14px;
        font-size: 11px;
    }
}