/* =====================================================
   FOXESS STUDIO
   Estilos gerais da aplicação
===================================================== */

@import url(
    "https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap"
);


/* =====================================================
   RESET
===================================================== */

* {
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html {
    min-height: 100%;
}

body{

    margin:0;
   min-height:100vh;

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    

}

/* ================= FUNDOS ================= */


/* ==============================================
   HOME
==============================================*/

#telaInicio{

    justify-content:flex-start;

}

.home-logo{

    position:absolute;

    top:40px;

    right:40px;

    width:210px;

    z-index:3;

}

.home-produtos{

    position:absolute;

    right:8%;

    bottom:8%;

    width:50vw;

    max-width:2000px;

    z-index:2;

}

.bg-home{

    background:

        linear-gradient(
            rgba(226,169,241,0.40),
            rgba(226,169,241,0.40)
        ),

        url("../assets/icons/fundo_usinafv.webp");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}

.bg-residencial{

    background:

    linear-gradient(
        rgba(124,58,237,.30),
        rgba(255,255,255,.55)
    ),

    url("../assets/icons/residencial.jpg");

    background-size:cover;
    background-position:center;
    background-repeat: no-repeat;

}

.bg-backup{

    background:

    linear-gradient(
        rgba(124,58,237,.35),
        rgba(255,255,255,.60)
    ),

    url("../assets/icons/residencial.jpg");

    background-size:cover;
    background-position:center;
    background-repeat: no-repeat;

}

.bg-backup-ci{

    background:

    linear-gradient(
        rgba(124,58,237,.35),
        rgba(255,255,255,.60)
    ),

    url("../assets/icons/bess.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}


/* =====================================================
   TELAS
===================================================== */

.container {

    width:100%;

    min-height:100vh;

    padding:20px 2%;

    display:flex;

    align-items:center;

    justify-content:center;

    position:relative;

}

.escondido {
    display: none !important;
}


/* =====================================================
   TEXTOS
===================================================== */

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 12px;

    color: #7c3aed;

    font-size: 26px;
    line-height: 1.2;
}

h2 {
    margin-bottom: 18px;

    color: #111827;

    font-size: 24px;
    line-height: 1.3;
}

h3 {
    color: #111827;

    font-size: 20px;
    line-height: 1.3;
}

p {
    color: #6b7280;

    font-size: 13px;
    line-height: 1.6;
}

strong {
    font-weight: 600;
}


/* =====================================================
   FORMULÁRIOS
===================================================== */

label {
    display: block;

    margin-top: 7px;
    margin-bottom: 3px;

    color: #374151;

    font-size: 14px;
    font-weight: 500;
}

input,
select {
    width: 100%;

    padding: 10px;

    border: 1px solid #d1d5db;
    border-radius: 10px;

    background: #ffffff;

    color: #111827;

    font-size: 14px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

input:focus,
select:focus {
    outline: none;

    border-color: #7c3aed;

    box-shadow:
        0 0 0 3px rgba(124, 58, 237, 0.12);
}

input::placeholder {
    color: #9ca3af;
}


/* Remove setas exageradas em alguns navegadores */

input[type="number"] {
    appearance: textfield;
}


/* =====================================================
   BOTÕES
===================================================== */

button {
    width: 100%;

    padding: 10px 18px;
    margin-top: 10px;

    border: none;
    border-radius: 12px;

    background: #7c3aed;

    color: #ffffff;

    font-size: 15px;
    font-weight: 500;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

button:hover {
    background: #6d28d9;

    box-shadow:
        0 8px 18px rgba(109, 40, 217, 0.18);
}

button:active {
    transform: translateY(1px);
}

button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}


/* =====================================================
   RESPONSIVIDADE GERAL
===================================================== */

@media (max-width: 900px) {

    body {
        background-attachment: scroll;
    }

    .container {
        min-height: 100vh;

        padding: 15px;

        align-items: flex-start;
    }

    h1 {
        font-size: 27px;
    }

    h2 {
        font-size: 21px;
    }

}