:root {
    --primary-red: #D7261E;
    --dark-gray: #1F2937;
    --background: #F8F9FA;
    --accent-yellow: #FFB000;
    --white: #ffffff;
}


html {
    font-size: 16px;
}


body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: var(--background);
    color: var(--dark-gray);
}


img {
    max-width: 100%;
    height: auto;
}

.logo {
    width: 120px;
    height: auto;
}


@media(max-width:768px) {

    .logo {
        width: 100px;
    }
}

.floating-contact {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9999;
}

.floating-button {
    width: 70px;
    height: 70px;
    border: none;
    border-radius: 50%;
    background: #D7261E;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
    transition: .35s;
}

    .floating-button:hover {
        transform: scale(1.08);
    }

.floating-panel {
    position: absolute;
    bottom: 85px;
    right: 0;
    width: 300px;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
    display: none;
}

    .floating-panel.active {
        display: block;
    }

.floating-title {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}

    .floating-title img {
        width: 55px;
    }

    .floating-title strong {
        display: block;
    }

    .floating-title span {
        color: #666;
        font-size: .9rem;
    }

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 12px;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
}

.phone {
    background: #D7261E;
    color: #fff;
}

.whatsapp {
    background: #25D366;
    color: #fff;
}

.location {
    width: 100%;
    border: none;
    background: #1F2937;
    color: #fff;
}