.layout-footer {
    background-color: #f8f8f8;
    padding: 60px 0 40px 0;
    border-top: 1px solid #e0e0e0;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.overlay-force {
    display: none;
    /* Remove se não precisar do overlay */
}

.wrap-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 300px 1fr 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* ========== LOGO SECTION ========== */
.blk-logo {
    display: flex;
    flex-direction: column;
}

.logo-brand {
    width: 120px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    margin-bottom: 40px;
}

.blk-logo__note {
    color: #888;
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
    font-weight: 400;
}

/* ========== ABOUT SECTION ========== */
.blk-about__title {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 0;
}

.blk-about__text {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ========== CONTACT SECTION ========== */
.blk-contact__title {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 0;
}

.blk-contact__email,
.blk-contact__phone {
    margin: 0 0 12px 0;
    position: relative;
    padding-left: 26px;
}

.blk-contact__email::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23666' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.89 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.blk-contact__phone::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23666' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.blk-contact__link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.blk-contact__link:hover {
    color: #333;
}

/* ========== INFO SECTION ========== */
.blk-info__title {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 0;
}

.blk-info__item {
    margin: 0 0 12px 0;
}

.blk-info__link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.blk-info__link:hover {
    color: #333;
}


@media (max-width: 992px) {
    .wrap-footer {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 0 30px;
    }

    .blk-logo {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 20px;
    }

    .logo-brand {
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 768px) {
    .layout-footer {
        padding: 40px 0 30px 0;
    }

    .wrap-footer {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .blk-logo,
    .blk-about,
    .blk-contact,
    .blk-info {
        text-align: left;
    }

    .blk-logo {
        margin-bottom: 0;
    }

    .logo-brand {
        width: 100px;
        margin-bottom: 20px;
        display: block;
        margin-left: 0;
        margin-right: auto;
    }

    .blk-logo__note {
        font-size: 12px;
        text-align: left;
    }

    .blk-about__title,
    .blk-contact__title,
    .blk-info__title {
        font-size: 15px;
        margin-bottom: 15px;
        text-align: left;
    }

    .blk-about__text {
        font-size: 13px;
        text-align: left;
    }

    .blk-contact__link,
    .blk-info__link {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .wrap-footer {
        padding: 0 15px;
    }

    .logo-brand {
        width: 90px;
    }

    .blk-contact__email,
    .blk-contact__phone {
        padding-left: 22px;
    }

    .blk-contact__email::before,
    .blk-contact__phone::before {
        width: 14px;
        height: 14px;
    }
}


.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
    position: relative;
}

.cta {
    background: #e13bb2;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 1rem;
    font-weight: bold;
    text-decoration: none;
}



/* _______________START sobre_______________________________ */


#sobre h2 {
    margin: 100px;
}

#sobre {
    background: linear-gradient(135deg, #130E1A 0%, #130E1A 50%, #130E1A 100%);
    color: white;
    padding: 0;
    text-align: center;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sobre-conteudo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 5rem;
}

.img-decorada {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.img-decorada img {
    max-width: 100%;
    border-radius: 1rem;
    width: auto;
    height: 100%;
    object-fit: cover;
    max-height: 350px;
}

.imagem-central {
    position: relative;
    z-index: 2;
}

.moldura-esquerda,
.moldura-direita {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 120%;
    z-index: 1;
    pointer-events: none;
}

.moldura-esquerda {
    left: -65px;
    top: 72%;
}

.moldura-direita {
    right: -65px;
    top: 30%;
}

.texto-sobre {
    max-width: 500px;
    text-align: left;
    line-height: 1.6;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem;
}

.member-card {
    width: 200px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.member-card img {
    width: 100%;
    height: 200px;
    border-radius: 5px;
    display: block;
    object-fit: cover;
}

.label {
    height: 100px;
    text-align: left;
    background: linear-gradient(180deg, #da70d6 0%, #ba55d3 100%);
    color: white;
    padding: 1rem;
    margin-top: 0.3rem;
    border-radius: 25px 25px 0 0;
    color:#130E1A;
     
}

.label span {
    display: block;
    font-size: 1.2em;
    font-weight: normal;
    color:#fff;
}


/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    #sobre {
        padding: 4rem 1.5rem;
    }

    .sobre-conteudo {
        gap: 3rem;
        margin-bottom: 4rem;
    }

    .team-grid {
        gap: 2.5rem;
    }

    .moldura-esquerda {
        left: -45px;
    }

    .moldura-direita {
        right: -45px;
    }
}

/* Mobile Large (481px - 768px) */
@media (max-width: 768px) {
    #sobre h2 {
        margin: 50px 0;
        font-size: 2rem;
    }

    #sobre {
        padding: 3rem 0;
        min-height: auto;
    }

    .sobre-conteudo {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .texto-sobre {
        text-align: left;
        max-width: 100%;
    }

    .moldura-esquerda,
    .moldura-direita {
        display: none;
    }

    /* Layout Horizontal para Mobile */
    .team-grid {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        padding: 0 20px;
        width: 100%;
    }

    .member-card {
        display: flex;
        width: 100%;
        max-width: none;
        margin: 0;
        height: 80px;
        border-radius: 15px;
        overflow: hidden;
        margin-bottom: 15px;
    }

    .member-card img {
        width: 80px;
        height: 80px;
        border-radius: 0;
        flex-shrink: 0;
        object-fit: cover;
    }

    .label {
        background: linear-gradient(135deg, #da70d6, #ba55d3);
        flex: 1;
        padding: 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        font-size: 12px;
        height: auto;
        margin-top: 0;
        border-radius: 0;
        text-align: left;
    }

    .label span {
        font-size: 10px;
    }
}

/* Mobile Small (até 480px) */
@media (max-width: 480px) {
    #sobre h2 {
        margin: 30px 0;
        font-size: 1.8rem;
    }

    #sobre {
        padding: 2rem 0;
    }

    .sobre-conteudo {
        gap: 1.5rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .img-decorada img {
        max-height: 250px;
    }

    /* Layout Horizontal para Mobile Small */
    .team-grid {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
        width: 100%;
    }

    .member-card {
        display: flex;
        width: 100%;
        max-width: none;
        height: 80px;
        border-radius: 15px;
        overflow: hidden;
        margin-bottom: 15px;
    }

    .member-card img {
        width: 80px;
        height: 80px;
        border-radius: 0;
        flex-shrink: 0;
        object-fit: cover;
    }

    .label {
        background: linear-gradient(135deg, #da70d6, #ba55d3);
        flex: 1;
        padding: 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        font-size: 12px;
        height: auto;
        margin-top: 0;
        border-radius: 0;
        text-align: left;
    }

    .label span {
        font-size: 10px;
    }
}

/* Mobile Extra Small (até 320px) */
@media (max-width: 320px) {

    /* Layout Horizontal para Mobile Extra Small */
    .team-grid {
        padding: 0 15px;
    }

    .member-card {
        display: flex;
        width: 100%;
        max-width: none;
        height: 80px;
        border-radius: 15px;
        overflow: hidden;
        margin-bottom: 15px;
    }

    .member-card img {
        width: 80px;
        height: 80px;
        border-radius: 0;
        flex-shrink: 0;
        object-fit: cover;
    }

    .label {
        background: linear-gradient(135deg, #da70d6, #ba55d3);
        flex: 1;
        padding: 12px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        font-size: 11px;
        height: auto;
        margin-top: 0;
        border-radius: 0;
        text-align: left;
    }

    .label span {
        font-size: 9px;
    }
}



/* _______________END sobre_______________________________ */



/* _______________Start video_______________________________ */


#video {
    padding: 0;
    margin: 0;
    width: 100%;
    overflow: hidden;

}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    cursor: pointer;
}

#video video {
    width: 100%;
    display: block;
    object-fit: cover;
}


#playPauseBtn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: #000;

    border: 4px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#playPauseBtn.visible {
    opacity: 0.5;
    
}

/* Ícone de play feito em CSS */
.play-icon {
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

/* _______________end video_______________________________ */



/* _______________ Start portifoleo _______________________________ */

#portfolio {
    background: linear-gradient(135deg, #130E1A 0%, #130E1A 50%, #130E1A 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#portfolio h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 8px;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
}

.portfolio-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: auto;
    width: 100%;
    padding: 20px 0px;
}

.portfolio-items {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.5s ease;
    gap: 30px;
}

.portfolio-item {
    flex: 0 0 calc((100% - 60px) / 3);
    box-sizing: border-box;
    text-align: left;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.portfolio-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 25px;
    margin-bottom: 0;
}

.portfolio-item-content {
    padding: 25px;
}

.portfolio-item h3 {
    color: #ff6b9d;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin:10px 10px;
}

.portfolio-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

.portfolio-indicators {
    text-align: center;
    margin-top: 30px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 7px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.dot.active {
    background-color: #ff6b9d;
    transform: scale(1.2);
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 15px;
    z-index: 2;
    opacity: 0;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-btn.left {
    left: 15px;
}

.scroll-btn.right {
    right: 15px;
}

.portfolio-wrapper:hover .scroll-btn {
    opacity: 1;
}

.scroll-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

/* ========== RESPONSIVIDADE ========== */

/* Tablets - 2 itens */
@media (max-width: 992px) {
    .portfolio-item {
        flex: 0 0 calc((100% - 30px) / 2);
    }

    #portfolio h2 {
        font-size: 2rem;
        letter-spacing: 4px;
        margin-bottom: 40px;
    }
}

/* Mobile - 1 item */
@media (max-width: 768px) {
    .portfolio-item {
        flex: 0 0 100%;
    }

    .portfolio-items {
        gap: 20px;
    }

    #portfolio {
        padding: 3rem 0;
    }

    #portfolio h2 {
        font-size: 1.8rem;
        letter-spacing: 3px;
        margin-bottom: 30px;
    }

    .portfolio-wrapper {
        padding: 0 15px;
    }

    .scroll-btn {
        display: none;
        
    }

    .portfolio-item-content {
        padding: 20px;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .portfolio-wrapper {
        padding: 0 10px;
    }

    .portfolio-item img {
        height: 180px;
    }

    .portfolio-item-content {
        padding: 15px;
    }
}

/* _______________ end portifoleo _______________________________ */

/* _______________START formulario_______________________________ */

#contato {

    height: 100vh;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
    position: relative;
}



.form-container {

    border-radius: 12px;
    padding: 40px 30px;
    max-width: 900px;
    margin: 0 auto;

}

h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
}

form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.form-group {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
}

.form-group-full {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    
}

label {
    font-weight: 600;
    margin-bottom: 6px;
    color: #fff;
    opacity: 0;
}

input,
textarea {
    padding: 12px 18px;
    border: none;
    border-radius: 30px;
    background-color: #ffffff;
    color: #000;
    font-size: 15px;
    outline: none;
}

textarea {
    resize: vertical;
    border-radius: 20px;
    min-height: 100px;
}

button {
    width: 30%;
    padding: 15px;
    border: none;
    background-color: #e13bb2;
    color: white;
    font-size: 18px;
    font-weight: bold;
    border-radius: 40px;
    cursor: pointer;
    transition: background-color 0.3s ease;

}


button:hover {
    background-color: #732d91;
}

.form-group-full.button-wrapper {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-end;
}


.termos {
    align-items: center;
    margin-top: 20px;
    padding: 10px Auto;

}

.termos a {
    color: #000;
    text-decoration: none;
}

.decoracao-contact {
    position: absolute;
    left: -5px;
    top: 5%;
    width: 200px;
    max-width: 20vw;
    z-index: 0;
}

/* _______________end formulario____________________________ */




/* Responsive Styles */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }
}

/* 1. Desktops grandes e ecrãs largos (≥ 1200px) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* 2. Laptops e desktops médios (992px – 1199px) */
@media (max-width: 1199px) {
    .portfolio-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .wrap-footer {
        gap: 2rem;
    }
}


@media (max-width: 991px) {
    .portfolio-items {
        grid-template-columns: 1fr;
    }

    .wrap-footer {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .form-group {
        flex: 1 1 100%;
    }

    .form-group-full.button-wrapper {
        justify-content: center;
    }
}


@media (max-width: 767px) {
    html {
        font-size: 15px;
    }

    .portfolio-item {
        padding: 1rem 0.5rem;
    }

    .container {
        width: 95%;
    }

    .decoracao-contact {
        display: none;
    }
}

/* 5. Telemóveis pequenos (≤ 480px) */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .portfolio-item h3 {
        font-size: 1.2rem;
    }

    .portfolio-item p {
        font-size: 0.95rem;
    }

    button {
        width: 100%;
    }

    .scroll-btn {
        display: none;
    }
}

@media (max-width: 768px) {


    .scroll-btn {
        opacity: 0;
        display: block;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        font-size: 2rem;
        z-index: 10;
        color: white;
        padding: 1rem;
    }

    .scroll-btn.left {
        left: 0;
    }

    .scroll-btn.right {
        right: 0;
    }
    .portfolio-wrapper:hover .scroll-btn {
         opacity: 0;
    }

    .portfolio-indicators {
        margin-top: 2rem;
    }

    button,
    .form-group-full.button-wrapper button {
        width: 100%;
        font-size: 1rem;
    }
}



body {
    background-color: #130E1A;
}

/* Seção Serviços */
.servicos-section {
    min-height: 70vh;
    background: #130E1A;
    position: relative;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.servicos-container {
    max-width: 1200px;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.servicos-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
    letter-spacing: 3px;
}

.servicos-conteudo {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 150px;
    max-width: 1000px;
    width: 100%;
    position: relative;
}

.coluna {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: auto;
    min-width: 300px;
    align-items: flex-start;
}

.coluna li {
    width: 100%;
}

.coluna .servico-item {
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.coluna .servico-item:hover {
    color: #c77dff;
    transform: translateX(10px);
}

.servico-dot {
    width: 12px;
    height: 12px;
    background: #c77dff;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Decoração com imagem */
.decoracao-servicos {
    position: absolute;
    right: -255px;
    top: 52%;
    width: 200px;
    max-width: 20vw;
    z-index: 0;
}

/* Seção posterior para demonstrar espaçamento */
.section-after {
    height: 100vh;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .servicos-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .servicos-conteudo {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 90%;
        width: 100%;
        margin: 0 auto;
        justify-items: center;
    }

    .coluna {
        width: 100%;
        max-width: 100%;
        align-items: center;
    }

    .coluna .servico-item {
        background: rgba(199, 125, 255, 0.1);
        padding: 15px 20px;
        border-radius: 8px;
        border: 1px solid rgba(199, 125, 255, 0.3);
        justify-content: space-between;
        transition: all 0.6s ease;
        opacity: 0;
        transform: translateX(-100px);
        animation-fill-mode: forwards;
        width: 100%;
        max-width: 90%;
        margin: 0 auto;
        min-height: 60px;
        display: flex;
        align-items: center;
        box-sizing: border-box;
    }

    .coluna .servico-item.animate-in {
        animation: slideInFromLeft 0.6s ease forwards;
    }

    .coluna .servico-item.animate-out {
        animation: slideOutToLeft 0.6s ease forwards;
    }

    @keyframes slideInFromLeft {
        from {
            opacity: 0;
            transform: translateX(-100px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes slideOutToLeft {
        from {
            opacity: 1;
            transform: translateX(0);
        }

        to {
            opacity: 0;
            transform: translateX(-100px);
        }
    }

    .coluna .servico-item span {
        flex: 1;
        text-align: left;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .servico-dot {
        display: none;
    }

    .coluna .servico-item:hover {
        background: rgba(199, 125, 255, 0.2);
        border-color: #c77dff;
        transform: translateY(-2px);
    }

    .coluna .servico-item::after {
        content: '>';
        font-size: 1.5rem;
        color: #c77dff;
        font-weight: bold;
        flex-shrink: 0;
        margin-left: 10px;
    }

    .decoracao-servicos {
        display: none;
    }

    .servicos-section {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .servicos-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .coluna .servico-item {
        font-size: 1rem;
        padding: 12px 16px;
        width: 100%;
        max-width: 90%;
        min-height: 55px;
    }

    .servicos-conteudo {
        max-width: 90%;
        width: 100%;
    }

    .coluna {
        width: 100%;
        max-width: 100%;
    }
}

.decoracao-servicos {
    position: absolute;
    right: 10%; /* ou auto */
    top: 75%;
    transform: translateY(-50%);
    width: 200px;
    max-width: 20vw;
    z-index: 1;
}

.footer1-section-area .footer-logo-area.incolor  ul li a{
  background: none !important;
  background-color: transparent !important;
  background-image: none !important;

}

