/* ============================================================
   RDO LOGÍSTICA — CONTATO: CSS BASE
   Fonte: Montserrat | Fundo: #e8ecee
   Header standalone + seção .s6 como conteúdo principal
   ============================================================ */

* {
    border: 0px;
    padding: 0px;
    box-sizing: border-box;
    text-decoration: none;
}

body,
html {
    font-family: "Barlow", sans-serif;
    overflow-x: hidden;
    background-color: #e8ecee;
    margin: 0;
}

a{
    color: #e8ecee;
}

img {
    max-width: 100%;
    height: auto;
}

/* --- HEADER --- */
header {
    padding: 2vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: auto;
    width: 95%;
    margin: auto;

    .logo-header {
        background-color: rgba(255, 255, 255, 0);
        box-shadow: 0px 0px 5px 2px rgba(83, 83, 83, 0);
        width: 120px;
        height: auto;
        border-radius: 30px;

    }

    .abas {
        border-radius: 15px;
        background-color: rgba(85, 85, 85, 0.55);
        backdrop-filter: saturate(180%) blur(20px);
        box-shadow: 0px 0px 6px 2px rgba(255, 255, 255, 0.1);
        padding: 18px 2vw;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 3vw;

        a {
            color: white;
            transition: ease-in-out .2s;
            font-weight: 400;
        }

        a:hover {
            color: #d90404;
            transform: translateY(-1px);
        }
    }

    .btn-contato-vermelho {
        color: rgba(255, 255, 255, 0.9);
        background-color: #D90429;
        border: none;
        outline: none;
        padding: 3px 10px 3px 18px;
        font-size: 16px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        font-weight: 500;
        font-size: 18px;
        transition: ease-in-out .2s;
        box-shadow: -4px 5px 16px 0px rgba(0, 0, 0, 0.4);


        img {
            height: 50px;
            width: 50px;
            box-shadow: none;
            transition: ease-in-out .2s;
        }


    }

    .btn-contato-vermelho:hover {
        transform: translateY(-2px) translateX(2px) scale(1.05);
        box-shadow: -4px 5px 16px 0px rgba(0, 0, 0, 0.5);

        img:hover {
            transform: scale(1.08);

        }
    }
}


/* --- SEÇÃO .s6 (adaptada como página completa) --- */
.s6 {
    background-color: #111111;
    border-radius: 20px;
    margin: 4vh 8vw 8vh 8vw;
    padding: 60px 5vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5vw;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);

    /* --- LADO ESQUERDO: logo + texto --- */
    .content-s6 {
        color: #ffffffe7;
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: start;
        gap: 4px;

        .logo-rdo {
            width: 100%;
            max-width: 300px;
            margin: 0;

            img {
                width: 100%;
                height: auto;
            }
        }

        h3 {
            font-size: clamp(2rem, 3vw, 3.5rem);
            font-weight: 500;
            margin: 0;
            margin-left: 2vw;
        }

        p {
            font-size: clamp(1rem, 1.2vw, 1.2rem);
            font-weight: 300;
            color: #cccccc;
            margin-bottom: 10px;
            margin-left: 2vw;
        }

        a {
            color: #ffffff;
            font-size: 1.1rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: 0.3s ease;
            margin-left: 2vw;

            &:hover {
                color: #B71C1C;
                transform: translateX(5px);
            }
        }
    }

    /* --- LADO DIREITO: formulário --- */
    .form-s6 {
        display: flex;
        flex-direction: column;
        gap: 20px;

        .linha {
            display: flex;
            flex-direction: column;
            gap: 8px;

            label {
                color: #eeeeee;
                font-size: 0.95rem;
                font-weight: 500;
                margin-left: 5px;
            }

            input {
                background-color: rgba(255, 255, 255, 0.05);
                border: 1px solid rgba(255, 255, 255, 0.1);
                height: 50px;
                width: 100%;
                border-radius: 10px;
                color: #ffffff;
                padding: 0 15px;
                outline: none;
                font-family: "Montserrat", sans-serif;
                font-size: 1rem;
                transition: all 0.3s ease;

                &::placeholder {
                    color: rgba(255, 255, 255, 0.3);
                }

                &:focus {
                    border-color: #B71C1C;
                    background-color: rgba(255, 255, 255, 0.1);
                    box-shadow: 0 0 0 4px rgba(183, 28, 28, 0.2);
                }
            }
        }

        /* --- BOTÕES --- */
        .btn-s6 {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            width: max-content;
            gap: 1.5vw;
            margin-top: 15px;

            .btn-s1-saibamais {
                color: rgba(255, 255, 255, 0.9);
                background-color: #D90429;
                border: none;
                outline: none;
                padding: 2px 6px 2px 14px;
                border-radius: 20px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 8px;
                font-weight: 500;
                font-size: 18px;
                transition: ease-in-out .2s;
                box-shadow: -4px 5px 16px 0px rgba(136, 136, 136, 0.2);
                cursor: pointer;
                font-family: "Montserrat", sans-serif;

                img {
                    height: 50px;
                    width: 50px;
                    box-shadow: none;
                    transition: ease-in-out .2s;
                }

                &:hover {
                    transform: translateY(-2px) translateX(2px) scale(1.05);
                    box-shadow: -4px 5px 16px 0px rgba(136, 136, 136, 0.4);
                }
            }

            .btn-s1-orcamento {
                color: rgba(255, 255, 255, 0.9);
                background-color: #00000023;
                border: 1px solid rgba(128, 128, 128, 0.2);
                outline: none;
                padding: 5px 6px 5px 14px;
                border-radius: 20px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 8px;
                font-weight: 500;
                font-size: 18px;
                transition: ease-in-out .2s;
                box-shadow: -4px 5px 16px 0px rgba(136, 136, 136, 0.2);
                cursor: pointer;
                font-family: "Montserrat", sans-serif;

                img {
                    height: 44px;
                    width: 44px;
                    box-shadow: none;
                    transition: ease-in-out .2s;
                }

                &:hover {
                    transform: translateY(-2px) translateX(2px) scale(1.05);
                    box-shadow: -4px 5px 16px 0px rgba(136, 136, 136, 0.4);
                }
            }
        }
    }
}