/* ============================== */
/* ====== Section Titles ======== */
/* ============================== */
.section-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-2);
    text-align: left;
    padding: 24px 0 4px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

@media (min-width: 780px) {
    .section-title {
        font-size: 36px;
    }
}

/* ==================================== */
/* ====== Floating Fixed Buttons ====== */
/* ==================================== */
.whatsapp-button,
#scrollToTopButton {
    position: fixed;
    right: 15px;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
}

#scrollToTopButton {
    bottom: 105px;
    background: var(--color-1);
    color: #ffffff;
    transform: translateY(20px);
}

.whatsapp-button {
    bottom: 30px;
    background: #25d164;
    color: #ffffff;
    transform: translateY(20px);
}

.whatsapp-button.show,
#scrollToTopButton.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.whatsapp-button.show:hover,
#scrollToTopButton.show:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

/* ========================== */
/* ====== Tooltip =========== */
/* ========================== */
.tooltip {
    position: absolute;
    right: 76px;
    background: var(--color-1);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 36px;
    font-size: 18px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--color-1);
}

.whatsapp-button:hover .tooltip,
#scrollToTopButton:hover .tooltip {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .tooltip {
        display: none;
    }
}

@media (min-width: 769px) {
    .whatsapp-button,
    #scrollToTopButton {
        width: 70px;
        height: 70px;
    }

    #scrollToTopButton {
        bottom: 110px;
    }

    .tooltip {
        display: block;
    }
}

/* .swiper {
     padding-bottom: 50px !important;
 } */

.footer {
    background: var(--color-2);
    color: var(--light);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
    text-align: left;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    max-width: auto;
    height: 48px;
    cursor: pointer;
}

.footer-logo img {
    height: 48px;
    width: auto;
    aspect-ratio: 1080 / 340;
    object-fit: contain;
    transition: height 0.3s ease;
}

@media (min-width: 980px) {
    .footer-logo,
    .footer-logo img {
        height: 54px;
        aspect-ratio: 1080 / 340;
    }
}

.footer-col h4 {
    margin-bottom: 16px;
    color: var(--color-1);
    font-size: 22px;
    font-weight: 600;
}

.footer-description {
    margin-top: 12px;
    color: var(--light);
    line-height: 1.3;
    margin-bottom: 24px;
    padding: 0;
    font-weight: 300;
    font-size: 18px;
}

.footer-social {
    display: grid;
    grid-template-columns: repeat(3, 40px);
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Manteve compatibilidade mobile grid se necessário, mas o grid-template-columns fixo já resolve */

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    transition: 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--color-1);
    transform: translateY(-2px);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
}

.footer-col ul li a {
    color: var(--light);
    display: flex;
    align-items: flex-start;
    font-weight: 300;
    gap: 8px;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 18px;
    line-height: 1.4;
}

.footer-col ul li a:hover {
    color: var(--color-1);
}

.footer-col ul li a svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 2px;
}

.footer-bottom {
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 64px;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 16px 0;
}

.copyright,
.footer-info,
.made-by {
    font-size: 14px;
    font-weight: 300;
    color: var(--light);
    font-family: sans-serif;
}

.made-by {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.made-by a {
    font-weight: 700;
    color: var(--light);
    transition: opacity 0.3s ease;
}

.made-by a:hover {
    opacity: 1;
    color: var(--color-1);
}

@media (min-width: 940px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
        text-align: left;
    }

    .footer-col {
        align-items: flex-start;
    }

    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        padding: 12px 64px;
        align-items: center;
        text-align: left;
        gap: 20px;
    }

    .footer-col ul li {
        justify-content: flex-start;
    }
}
