* {
    padding: 0;
    margin: 0;
}

body, html{
    background-color: white;
    height: 100%;
    width: 100%;
}

.header-table {
    width: 100%;
    display: table;
}

.header-table-cell {
    background-color: white;
    width: 100%;
    display: table-cell;
    padding: 20px;
}

.header-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    height: 50px;
    width: 230px;
    border-radius: 5px;
    background-color: black;
}

.header-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

button {
    padding: 12px 60px;
    border-radius: 8px;
    border: none;
    color: #17202A;
}
.header-content span:nth-child(1) {
    font-size: 22px;
    color: red;
}

.header-content span:nth-child(2) {
    font-size: 18px;
    color: gray;
}

.header-content-container {
    display: flex;
    align-items: center;
    gap: 15px;
    user-select: none;
}

.header-content-container:hover {
    cursor: pointer;
    opacity: 0.75;
    user-select: none;
}

.header-content-container:active {
    transform: translateY(2px);
    transition: transform 0.1s
}

a {
    text-decoration: none;
    color: #2E2E2E;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.nav-container {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.whatsapp-button {
    position: fixed;
    left: 25px;
    bottom: 35px;
    height: 55px;
    padding: 0 20px;
    background-color: #25D366;
    color: white;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 17px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: 0.3s;
}

.whatsapp-button i {
    font-size: 28px;
}

.whatsapp-button:hover {
    transform: scale(1.05);
    background-color: #1ebe5d;
}

@media (max-width: 1024px) {
    .header-table-cell {
        padding: 16px 20px;
    }

    .header-container {
        gap: 20px;
    }

    .header-logo {
        width: 190px;
        height: auto;
    }

    .nav-container {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .nav-container a {
        font-size: 15px;
    }

    .whatsapp-button {
        left: 18px;
        bottom: 20px;
        height: 50px;
        padding: 0 17px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .header-table-cell {
        padding: 12px 15px;
    }

    .header-container {
        flex-direction: column;
        gap: 14px;
    }

    .header-content-container {
        width: 100%;
        justify-content: center;
    }

    .header-logo {
        width: 180px;
        height: auto;
    }

    .nav-container {
        width: 100%;
        justify-content: center;
        gap: 10px 16px;
    }

    .nav-container a {
        font-size: 14px;
        padding: 3px 0;
    }

    button {
        max-width: 100%;
        padding: 11px 25px;
    }

    .whatsapp-button {
        left: 12px;
        bottom: 15px;
        height: 46px;
        padding: 0 14px;
        font-size: 14px;
        gap: 7px;
    }

    .whatsapp-button i {
        font-size: 23px;
    }
}

@media (max-width: 480px) {
    .header-table-cell {
        padding: 10px 12px;
    }

    .header-logo {
        width: 155px;
    }

    .nav-container {
        gap: 8px 12px;
    }

    .nav-container a {
        font-size: 12px;
    }

    .whatsapp-button {
        height: 43px;
        padding: 0 12px;
        font-size: 12px;
    }

    .whatsapp-button i {
        font-size: 20px;
    }
}
