.work-process-one__item {
  height: 300px;
}

.main-header__logo {
  background: none !important;
}

.main-header__logo::after {
  background: none !important;
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    background-color: #1ebe5d;
}


/*POLÍTICA DE PRIVACIDADE*/

.privacy-policy-container {
    width: 100%;
    padding: 80px 20px 60px;
    background-color: #f9f9f9;
}

.privacy-policy-content {
    max-width: 1000px;
    margin: 0 auto;    
    padding: 60px;
    border-radius: 8px;   
}


.privacy-policy-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 50px;
    text-align: center;
    line-height: 1.3;
}


.privacy-policy-section {
    margin-bottom: 40px;
}

.privacy-policy-section:last-child {
    margin-bottom: 0;
}


.privacy-policy-heading {
    font-size: 20px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
    line-height: 1.4;
    text-transform: none;
}


.privacy-policy-text {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 16px;
    text-align: justify;
}

.privacy-policy-text:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
    .privacy-policy-container {
        padding: 60px 30px 50px;
    }

    .privacy-policy-content {
        padding: 50px 40px;
    }

    .privacy-policy-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .privacy-policy-heading {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .privacy-policy-text {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media screen and (max-width: 768px) {
    .privacy-policy-container {
        padding: 40px 20px 40px;
    }

    .privacy-policy-content {
        padding: 30px 20px;
        border-radius: 6px;
    }

    .privacy-policy-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .privacy-policy-section {
        margin-bottom: 30px;
    }

    .privacy-policy-heading {
        font-size: 16px;
        margin-bottom: 15px;
        line-height: 1.5;
    }

    .privacy-policy-text {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 14px;
        text-align: left;
    }
}

@media screen and (max-width: 480px) {
    .privacy-policy-container {
        padding: 30px 15px 30px;
    }

    .privacy-policy-content {
        padding: 25px 15px;
    }

    .privacy-policy-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .privacy-policy-section {
        margin-bottom: 25px;
    }

    .privacy-policy-heading {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .privacy-policy-text {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 12px;
    }
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f5f5f5;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-notice-hidden {
    opacity: 0;
    transform: translateY(100%);
}

.cookie-notice-content {
    flex: 1;
}

.cookie-notice-text {
    margin: 0;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.cookie-notice-link {
    color: #0066cc;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-notice-link:hover {
    color: #0052a3;
}

.cookie-notice-btn {
    background-color: #003d5c;
    color: #ffffff;
    border: none;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.cookie-notice-btn:hover {
    background-color: #002a40;
}

.custom-largura-servico {
    width: 80%;
}

@media (max-width: 768px) {
    .cookie-notice {
        flex-direction: column;
        padding: 16px;
        gap: 12px;
    }
    
    .cookie-notice-btn {
        width: 100%;
    }

    .custom-largura-servico {
        width: 100%;
    }
}


