/*

9E2400

--capuchinha: #FF4F1F;
--calendula: #FF7133;

*/
/*VARIAVEIS*/
:root {
    --capuchinha: #FF4F1F;
    --crisantemo: #C52401;
    --calendula: #FF7133;
    --dalia: #FFF6F3;

    --universo: #0B1921;
    --eclipse: #040F14;
    --asfalto: #10242A;
    --grafite: #153134;
}

html {
    scroll-behavior: smooth;
}

html * {
    font-family: 'Instrument Sans', sans-serif;
}

body {
    margin: 0;
    padding: 0;
}

@media screen and (max-width: 1080px) {

}

a:link {
    text-decoration: none;
}
a:visited {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
a:active {
    text-decoration: none;
}


/*MENU*/
.menu {
    background-color: var(--universo);
    color: var(--dalia);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    height: 122px;

    padding-left: 30px;
    padding-right: 30px;
}

.menu-logo {
    width: 143px;
    height: 58px;
}

.menu-lista {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    column-gap: 40px;
}

.menu a {
    color: var(--dalia);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4em;
    line-height: 18px;
}

.menu-botao {
    background-color: var(--crisantemo);
    color: var(--dalia);
    border: none;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    width: 250px !important;
    height: 40px !important;
}

.menu-botao:hover {
    cursor:pointer;
}

@media screen and (max-width: 1080px) {

    .menu {
        height: 90px;
        padding-left: 20px;
    }

    .menu-lista {
        display: none;
    }

    .menu-botao {
        display: none;
    }
}

@media screen and (min-width: 1081px) {

    .menu-lista {
        display: flex;
    }

    .menu-botao {
        display: block;
    }
}



/*DIVISAO*/
.top-ruler {
    border-top: 1px solid var(--dalia);
    margin: 0;
}


/*HERO*/
.hero {
    background-color: var(--universo);
    color: var(--dalia);

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-content: stretch;
}

.hero-titulo {
}

.hero-picture {

}

.hero-titulo h1{
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0.4em;
    padding-top: 40px;
    padding-left: 30px;
}

.hero-titulo h2{
    font-size: 70px;
    font-weight: 400;
    line-height: 88px;
    padding-left: 30px;
}


.hero-cabecalho {
    background-color: var(--dalia);
    width: 504px;
}

.hero-cabecalho p {
    color: var(--universo);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 60px;
    padding-right: 60px;
}

.hero-cabecalho span {
    font-weight: bold;
    color: var(--crisantemo);
}

.hero-top {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;

}

.hero-top div{
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-fale {
    background-color: var(--crisantemo);
    width: 328px;
}

.hero-fale button {
    background-color: var(--crisantemo);
    color: var(--dalia);

    border: 1px solid var(--dalia);
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    width: 250px !important;
    height: 40px !important;
}

.hero-fale button:hover {
    cursor:pointer;
}


@media screen and (max-width: 1080px) {

    .hero {
        padding-right: 30px;
    }

    .hero-titulo h1 {
        font-size: 14px;
        padding-top: 10px;
        padding-left: 20px;
    }

    .hero-titulo h2 {
        margin-top: 10px;
        margin-bottom: 30px;
        padding-top: 10px;
        padding-left: 20px;
        line-height: normal;

        font-size: 40px;
        font-weight: bold;
        line-height: normal;
    }

    .hero-top {

        display: none;
    }

    .hero-cabecalho{
        width: 100%;
    }

    .hero-cabecalho p {
        padding-top: 15px;
        padding-bottom: 15px;
        padding-left: 20px;
    }

    .hero-fale {
        width: 100%;
        height: 100px;
    }
}

@media screen and (min-width: 1081px) {

    .hero {
        justify-content: space-between;
        padding-right: 0;
    }

    .hero-titulo {
        width: 100%;
    }

    .hero-picture {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        width: 45%;

        background-image: url("../img/techdebt-hero.webp");
        background-repeat: no-repeat;
        background-size: cover;
    }

    .hero-top {
        width: 100%;
    }

    .hero-cabecalho{
        width: 65%;
    }

    .hero-fale {
        width: 35%;
    }

}


/* SUBSCRIBE */
.subscribe {
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding-top: 0px;
    padding-bottom: 40px;
}

.subscribe h1 {
    font-size: 32px;
    font-weight: 400;
    line-height: 110%;
    color: var(--capuchinha);
    text-align: center;
    width: 60%;
}

.subscribe a {
    color: var(--eclipse);
}

.subscribe p {
    font-size: 20px;
    font-weight: 400;
    line-height: 110%;
    color: #727272;
    text-align: center;
    width: 60%;
}

.subscribe button {
    background-color: var(--crisantemo);
    color: var(--dalia);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    width: 250px;
}

.subscribe button:hover {
    background-color: var(--calendula);
}


/* HEADLINE */
.headline {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

.headline h1 {
    font-size: 32px;
    font-weight: 400;
    line-height: 110%;
    color: var(--capuchinha);
    text-align: center;
    width: 60%;
}

.headline p {
    font-size: 20px;
    font-weight: 400;
    line-height: 110%;
    color: #727272;
    text-align: center;
    width: 60%;
}

/* VIDEO */
.video-sales-letter {
    background-color: #FFFFFF;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

.video-sales-letter div {
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.video-sales-letter iframe {
    border-radius: 8px;
}

.container {
    width: 90%;
    max-width: 1200px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container.visible {
    display: block;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* TOPICOS */
.topicos {
    background-color: var(--dalia);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;

    column-gap: 40px;
    row-gap: 40px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.topicos h1 {
    font-size: 18px;
    font-weight: bold;
    line-height: 20px;
    letter-spacing: 0.1em;
    color: var(--crisantemo);
    text-align: center;
    width: 100%;
    margin:0;
}

.topicos h2 {
    font-size: 50px;
    font-weight: 400;
    line-height: 62px;
    color: var(--eclipse);
    text-align: center;
    width: 100%;
    margin:0;
}

.topicos div {
    display: flex;
    align-self: start;
    flex-direction: column;
    justify-content: center;
    width: 20%;
}

.topicos h3 {
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
    color: var(--eclipse);
    text-align: center;
}

.topicos p {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: #727272;
    text-align: center;
    margin-top: 0;
}

@media screen and (max-width: 1080px) {

    .topicos div {
        width: 90%;
    }

}

@media screen and (min-width: 1081px) {

    .topicos div {
        width: 20%;
    }

}


/* FAQ */
.faq {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;

    column-gap: 40px;
    row-gap: 40px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.faq h1 {
    font-size: 18px;
    font-weight: bold;
    line-height: 20px;
    letter-spacing: 0.1em;
    color: var(--crisantemo);
    text-align: center;
    width: 100%;
    margin:0;
}

.faq-items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 24px;
    width: 40%;
}

.faq p {
    font-size: 18px;
    font-weight: normal;
    line-height: 20px;
    letter-spacing: 0.1em;
    color: var(--eclipse);
    text-align: left;
    width: 100%;
    margin:0;
}

.faq span {
    font-weight: 500;
}

details > summary {
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0px;
    color: var(--eclipse);
    list-style-type: none;
}

details > summary::-webkit-details-marker {
    display: none;
}

details > summary::before {
    content: url('../img/mais.webp');
    margin-right: 10px;
}

details[open] > summary::before {
    content: url('../img/menos.webp');
    margin-right: 10px;
}

details {
    font-size: 14px;
    font-weight: normal;
    line-height: 20px;
    letter-spacing: 0.1em;

    border: 1px solid var(--crisantemo);
    border-radius: 8px;
    padding: 40px;
}

details[open] > summary {
    margin-bottom: 10px;
}


@media screen and (max-width: 1080px) {

    .faq-items {
        width: 90%;
    }

}

@media screen and (min-width: 1081px) {

    .faq-items {
        width: 40%;
    }

}


/*SOBRE*/
.sobre {
    background-color: var(--dalia);

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    column-gap: 100px;
    align-items: center;

    margin:0;
    padding-top: 40px;
    padding-bottom: 40px;
}

.sobre-bio {
    display: flex;
    flex-direction: column;
    justify-content: left;
    width: 40%;
}

.sobre-poster {
    display: flex;
    flex-direction: column;
    justify-content: left;
    width: 50%;
}

.sobre h1 {
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0.4em;
    color: var(--crisantemo);
}

.sobre h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 58px;
    color: var(--eclipse);
}

.sobre p {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: var(--eclipse);
}

.sobre-profile-img  {

    display: flex;
    flex-direction: row;
    justify-content: flex-start;

    background-image: url("../img/cristiano-gomes.webp");
    background-repeat: no-repeat;
    background-size: cover;

    padding:0 !important;
    margin: 0 !important;
}

.sobre-profile-img img  {
    width: 100%;
}

.sobre-linkedin-profile{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    padding: 0 !important;
    margin: 0 !important;
}

.sobre-linkedin-logo {
    background-color: var(--eclipse);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
    margin: 0 !important;
    width: 72px;
    height: 72px;
}

.sobre-linkedin-profile a{
    background-color: var(--eclipse);
    display: flex;
    justify-content: center;
    align-items: center;
}

.sobre-degradee-1 {
    width: 120px;
    height: 16px;
    background-color: var(--calendula);
    flex-grow: 0;
}

.sobre-degradee-2 {
    width: 120px;
    height: 16px;
    background-color: var(--capuchinha);
    flex-grow: 1;
}

.sobre-degradee-3 {
    width: 120px;
    height: 16px;
    background-color: var(--crisantemo);
    flex-grow: 2;
}

.sobre-degradee-4 {
    width: 120px;
    height: 16px;
    background-color: var(--eclipse);
    flex-grow: 3;
}

@media screen and (max-width: 1080px) {

    .sobre {
        flex-direction: column-reverse;
        row-gap: 50px;

        padding-left: 30px;
        padding-right: 30px;
    }

    .sobre-bio {
        width: 100%;
    }

    .sobre-bio h2{
        line-height: 40px;
    }

    .sobre-poster {
        width: 100%;
    }
}

@media screen and (min-width: 1081px) {

    .sobre {
        flex-direction: row;
    }

    .sobre-bio {
        width: 40%;
    }

    .sobre-poster {
        width: 50%;
    }
}


/*DEPOIMENTOS*/
.depoimentos {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 30px;
}

.depoimentos-titulo {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.depoimentos-titulo h2 {
    width: 100%;
}

.depoimentos-titulo h1 {
    width: 100%;
}

.depoimentos-lista {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
    flex-wrap: wrap;
    row-gap: 20px;
}


.depoimentos h1 {
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0.1em;
    color: var(--crisantemo);
    text-align: center;
}

.depoimentos-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.depoimentos-abre-aspas {
    display: flex;
    justify-content: center;
    background-color: var(--capuchinha);
    width: 32px !important;
    height: 32px !important;
    align-self: flex-start;
}

.depoimentos-fecha-aspas {
    display: flex;
    justify-content: center;
    background-color: var(--capuchinha);
    width: 32px !important;
    height: 32px !important;
    align-self: flex-end;
}

.depoimentos-fecha-aspas img {
    transform: rotate(180deg);
}

.depoimentos-texto {
    background-color: #ffffff;
    color: var(--universo);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    padding: 10px 20px !important;

    border: 1px solid var(--crisantemo);
    border-radius: 8px;
}

.depoimentos-avatar {
    display: flex;
    justify-content: left;
    align-items: flex-start;
    flex-direction: row;
    column-gap: 10px;
    align-self: flex-start;

    margin-top: 15px;
}

.depoimentos-avatar-img {
    border-radius: 50%;
    height: 44px;
    width: 44px;
}

.depoimentos-nome-empresa {
    display: flex;
    justify-content: left;
    align-items: flex-start;
    flex-direction: column;
}

.depoimentos-nome {
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    color: var(--eclipse);
    text-align: left;
}

.depoimentos-empresa {
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.4em;
    color: var(--eclipse);
    text-align: left;
}

@media screen and (max-width: 1080px) {

    .depoimentos-lista {
        flex-direction: column;
    }

    .depoimentos-item {
        width: 100%;
    }
}

@media screen and (min-width: 1081px) {

    .depoimentos-lista {
        flex-direction: row;
    }

    .depoimentos-item {
        width: 25%;
    }
}


/*CLIENTES*/
.clientes {
    background-color: var(--universo);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 30px;
}

.clientes-titulo {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.clientes-lista {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    column-gap: 50px;
    flex-wrap: wrap;
    row-gap: 20px;
}

.clientes h1 {
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.4em;
    color: var(--dalia);
    text-align: center;
    width: 100%;
}


/*RODAPE*/
.rodape {
    display: flex;
    flex-direction: column;
    row-gap: 50px;

    background-color: var(--universo);
    color: var(--dalia);

    padding: 30px;
}

.rodape-newsletter {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 50px;
}

.rodape-logo {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    width: 192px;
    align-items: flex-start;
}

.rodape-logo img {
    width: 143px;
    height: 58px;
}

.rodape-newsletter-menu {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    width: 294px;
}

.rodape-newsletter-menu a {
    color: var(--dalia);
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.4em;
}

.rodape-newsletter p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.rodape-newsletter-newsletter {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    row-gap: 5px;
    width: 297px;
}

.rodape-newsletter-newsletter button {
    background-color: var(--universo);
    border: 1px solid var(--dalia);
    color: var(--dalia);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    width: 128px;
    height: 48px;

    margin-top: 20px;
}

.rodape-newsletter-newsletter button:hover {
    cursor:pointer;
}

.rodape-newsletter-newsletter h1 {
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.4em;
    margin-top: 0;
    margin-bottom: 0;
}

.rodape-newsletter-newsletter label {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}

.rodape-newsletter-newsletter input {
    border-radius: 8px;
    border: solid 1px var(--dalia);
    padding: 10px;

    font-weight: 600;
    font-size: 16px;
    line-height: 20px;

    background: transparent;
    color: var(--dalia);
}

.rodape-newsletter-newsletter-inscrever {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: right;
    width: 100%;
}

.rodape-linha {
    border-top: 1px solid var(--dalia);
    width: 100%;
}

.rodape-redes-sociais {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 20px;
}

.rodape-redes-sociais-texto {
    width: 50%;
}

.rodape-redes-sociais-links {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    flex-wrap: nowrap;
    column-gap: 20px;
    width: 184px;
}

@media screen and (max-width: 1080px) {

    .rodape-newsletter {
        flex-direction: column;
        justify-content: left;
    }

    .rodape-newsletter-newsletter-inscrever {
        justify-content: left;
    }

    .rodape-linha {
        display: none;
    }

    .rodape-redes-sociais {
        justify-content: left;
    }

    .rodape-redes-sociais-texto {
        display: none;
    }

    .rodape-redes-sociais-links {
        justify-content: left;
    }
}

@media screen and (min-width: 1081px) {

    .rodape-newsletter {
        flex-direction: row;
        justify-content: space-between;
    }

    .rodape-newsletter-newsletter-inscrever {
        justify-content: right;
    }

    .rodape-linha {
        display: block;
    }

    .rodape-redes-sociais {
        justify-content: space-between;
    }

    .rodape-redes-sociais-texto {
        display: block;
    }

    .rodape-redes-sociais-links {
        justify-content: space-around;
    }
}

/*COMPORTAMENTO*/

#menu-botao:hover, #menu-botao2:hover,  #hero-botao:hover, #hero-fale-botao:hover, #contato-botao:hover {
    background-color: var(--capuchinha);
    transition: 0.4s;
}

.produto-descricao button:hover, #newsletter-botao:hover {
    border: 1px solid var(--crisantemo);
    transition: 0.4s;
}

.menu nav a:hover {
    background-color: var(--grafite);
    transition: 0.6s;
}

.rodape nav a:hover {
    border: 1px solid var(--crisantemo);
    transition: 0.6s;
}
