body {
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
}
.content {
    flex: 1;
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    font-size: 24px;
    padding: 0 16px;
    margin-bottom: 40px;
}
.row-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.whatsapp-section,
.instagram-section {
    display: flex;
    flex-direction: column;
}
.instagram-section {
    flex: 0;
}

.top-bar {
    height: 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.bottom-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
}
.bottom-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 104px;
    transform: translateY(-50%);
    margin-right: 104px;
}
.social-logos {
    display: flex;
    gap: 48px;
}
.social-logo {
    height: auto;
    width: 24px;
}
@media (max-width: 768px) {
    .bottom-buttons {
        justify-content: space-between;
        margin-right: 0;
        padding: 0 24px;
    }
}

.top-bar-left {
    height: 100%;
    display: flex;
    align-items: center;
}
.top-bar-right {
    height: 100%;
    display: flex;
    align-items: center;
    margin-right: 16px;
    gap: 16px;
}
.horizontal-divider {
    height: 5px;
    background-color: black;
}
.vertical-divider {
    height: 100%;
    width: 5px;
    background-color: black;
    transition: transform 0.4s ease;
}
.fidelbot .vertical-divider {
    margin: 0 auto;
}

@keyframes leftPulse {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-5px); }
}
@keyframes rightPulse {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}
.vertical-divider.left.pulse {
    animation: leftPulse 0.8s ease forwards;
}
.vertical-divider.right.pulse {
    animation: rightPulse 0.8s ease forwards;
}

.brand-logo {
    height: 100%;
}
.brand-name {
    font-size: 24px;
}
.secondary-brand-name {
    font-size: 16px;
    text-decoration: none;
    color: black;
}
.secondary-brand-name-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
}
.secondary-brand-name-wrapper:hover .vertical-divider.left {
    transform: translateX(-5px);
}
.secondary-brand-name-wrapper:hover .vertical-divider.right {
    transform: translateX(5px);
}
.button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    color: white;
    text-decoration: none;
    transition: border-radius 0.3s ease;
}
.button:hover {
    border-radius: 8px;
}
.language-button {
    height: 24px;
    width: 24px;
}
.bottom-button {
    height: 56px;
    width: 104px;
}

.quantico-regular {
    font-family: "Quantico";
    font-weight: 400;
    font-style: normal;
}
.quantico-bold {
    font-family: "Quantico";
    font-weight: 700;
    font-style: normal;
}