* {
    padding: 0px;
    margin: 0px;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}

body {
    background: #0D0E10;
}

.container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #090A0B;
    padding: 20px;
    border-bottom: 1px solid #ff5e7983;
}

#logo a {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff;
    font-size: 1.8rem;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
}

#logo > a > span {
    color: #ff5e79;
}

#nav-list {
    display: flex;
    gap: 30px;
    list-style: none;
}

#nav-item {
    font-size: 20px;
    color: white;
    padding: 10px;
    text-transform: uppercase;
    font-weight: bolder;
    color: white;
    border-bottom: 2.5px solid transparent;
    cursor: pointer;
}

#nav-item a {
    text-decoration: none;
    color: white;
}

#nav-item:hover {
    border-bottom: 2.5px solid #ff5e79;
}

.agende-aqui {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    padding: 20px 40px;
    background-color: #ff5e79;
    border: none;
    color: white;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s ease;
    text-decoration: none;
}

.agende-aqui:hover {
    background-color: #ff3c5c;
    transform: translateY(-10px);
}

.agende-header {
    border: 2px solid #ff5e79;
    padding: 20px;
    background: transparent;
}

.agende-header:hover {
    transform: scale(1.03);
    background-color: #ff5e79;
}

.agende-whatsapp button:hover {
    color: white;
    background-color: #ff5e79;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

main {
    margin: 0 auto;
    width: 80%;
    background: #0D0E10;
}

.title-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.title-content {
    text-align: center;
    padding: 15px;
}

.title-content h1 {
    color: #ff5e79;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 2rem;
    line-height: 5px;
}

.title-content h2 {
    font-family: 'Times New Roman', Times, serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 6rem;
    color: white;
}

.conheca-modelos {
    color: #ff5e79;
    font-size: 1.6rem;
    font-family: cursive;
}

.aplicado-clientes {
    color: white;
    font-size: 1.1rem;
}

.container-cards {
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(136, 136, 136, 0.377);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-toggle {
    display: none;
}

.actions {
    display: flex;
    gap: 20px;
}

.actions button {
    border: 1px solid rgb(126, 126, 126);
    border-radius: 10px;
    background: transparent;
    padding: 12px 50px;
    color: white;
    text-transform: uppercase;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s ease;
}

.actions button:hover {
    background-color: #ff5e79;
    border: 1px solid black;
}

.content-cards {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 65px;
}

.nails-card {
    display: grid;
    justify-content: center;
    align-items: center;
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.card img {
    width: 100%;
    border-radius: 10px;
    transition: 0.3s ease;
    cursor: pointer;
}

.card img:hover {
    transform: scale(1.03);
}

.content-modelo {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 80px;
}

.modelo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.modelo h3 {
    color: white;
    font-size: 2.5rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.modelo > h3 > span {
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: #ff5e79;
}

.modelo p {
    color: gray;
}

.agenda {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
}



footer {
    border-top: 1px solid rgb(61, 61, 61);
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer p {
    color: gray;
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.85);

    justify-content: center;
    align-items: center;

    z-index: 9999;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;

    border-radius: 12px;

    animation: zoom .3s ease;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;

    color: white;
    font-size: 40px;
    cursor: pointer;
}

@keyframes zoom {
    from {
        transform: scale(.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}