.whatsapp-icon {
    margin-right: 8px;
}

.equip-main {
    padding-top: 200px;
    font-family: "Montserrat", sans-serif;
    color: #000;
}

.equip-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px 20px;
}

.equip-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.equip-text-col {
    flex: 1;
    max-width: 600px;
}

.equip-text-col h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #000;
}

.equip-desc {
    font-family: "Montserrat", sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: justify;
}

.equip-desc:empty,
.equip-desc:has(p:only-child:has(br:only-child)) {
    display: none;
}

.spec-block {
    margin-bottom: 25px;
}

.spec-block h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.spec-block p,
.spec-block li {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    white-space: pre-wrap;
}

.spec-block ul {
    list-style: none;
    padding: 0;
}

.equip-img-col {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    min-height: 500px;
}

.main-totem-img {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.whatsapp-btn-float {
    position: absolute;
    bottom: 50px;
    right: -20px;
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s;
    line-height: 1.2;
    z-index: 10;
}

.whatsapp-btn-float i {
    font-size: 2rem;
}

.whatsapp-btn-float:hover {
    transform: scale(1.05);
}

.cta-center {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 80px;
}

.btn-vermelho {
    background-color: #FF0000;
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
    transition: transform 0.2s;
    text-transform: uppercase;
}

.btn-vermelho:hover {
    transform: scale(1.05);
    background-color: #d90000;
}


.equip-bottom-nav {
    background-color: #F9F9F9;
    text-align: center;
    padding: 60px 20px;
}

.equip-bottom-nav h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: "Montserrat", sans-serif;
}

.equip-bottom-nav p {
    font-family: "Montserrat", sans-serif;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
}

.totems-carousel-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #F2F2F2;
    border-radius: 30px;
    padding: 30px 60px;
    display: flex;
    align-items: center;
    position: relative;
    min-height: 120px;
    overflow: hidden;
}

.totems-track {
    display: flex;
    width: 100%;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.totem-link-item {
    flex-shrink: 0;
    scroll-snap-align: center;
    min-width: 30%;
}

@media (max-width: 900px) {
    .totem-link-item {
        min-width: 100%;
    }
}


.totems-track::-webkit-scrollbar {
    display: none;
}


.totem-link-item {
    text-decoration: none;
    color: #000;
    transition: transform 0.3s, color 0.3s;
}

.totem-link-item h3 {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-style: italic;
    font-size: 1.8rem;
    line-height: 1.1;
}

.totem-link-item:hover,
.totem-link-item.active {
    color: #481E9C;
    transform: scale(1.05);
}

.nav-arrow {
    background: #ccc;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background 0.3s;
}

.nav-arrow:hover {
    background: #481E9C;
}

.prev {
    left: 15px;
}

.next {
    right: 15px;
}

@media (max-width: 900px) {
    .btn-vermelho {
        font-size: 1.0rem;
    }

    .equip-content {
        flex-direction: column;
        align-items: center;
    }

    .equip-text-col,
    .equip-img-col {
        max-width: 100%;
        text-align: center;
    }

    .equip-desc {
        text-align: center;
    }

    .whatsapp-btn-float {
        position: static;
        margin-top: 20px;
        justify-content: center;
    }

    .totem-link-item h3 {
        font-size: 1.2rem;
    }
}

@media (min-width: 768px) {
    .totems-track {
        overflow-x: auto;
        justify-content: flex-start;
    }

    .totem-link-item {
        flex-shrink: 0;
        min-width: 30%;
    }
}

#adminButtons {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}