
:root {
    --navy: #101c2c;
    --blue: #1677c8;
    --orange: #f58220;
    --orange-dark: #d9690c;
    --light: #f4f7fa;
    --text: #263442;
    --muted: #667585;
    --white: #ffffff;
    --border: #dfe6ec;
    --success: #1b8f4d;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
}

a {
    text-decoration: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

.container {
    width: min(1120px, 92%);
    margin: auto;
}


/* =========================
   TOPO
========================= */

.top {
    background: var(--navy);
    color: #dce6ef;
    font-size: .86rem;
    padding: 9px 0;
}

.top .container {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}


/* =========================
   HEADER
========================= */

header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 14px #0c17201c;
}

.nav {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    background: url('../imagens/logo.png') no-repeat center/cover;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
}

.logo span {
    color: var(--orange);
}

.logo b {
    background: var(--orange);
    color: #fff;
    padding: 4px 7px;
    border-radius: 4px;
    font-size: 1.15rem;
}

nav {
    display: flex;
    align-items: center;
    gap: 27px;
}

nav a {
    color: var(--navy);
    font-weight: 700;
    font-size: .92rem;
}

nav a:hover {
    color: var(--orange);
}

.menu-button {
    display: none;
    border: 0;
    background: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--navy);
}


/* =========================
   BOTÕES
========================= */

.button {
    display: inline-block;
    background: var(--orange);
    color: #fff !important;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: .2s;
    border: none;
    cursor: pointer;
}

.button:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
}


/* =========================
   HERO
========================= */

.hero {
    background:
        linear-gradient(
            90deg,
            #101c2ceF 0%,
            #101c2cd9 45%,
            #101c2c55
        ),
        url('../imagens/whatsapp-image-2024-01-23-at-17.44.31-Y4LpaeRp35SMyXl3.jpeg')
        center/cover;

    min-height: 570px;
    color: #fff;

    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 650px;
    padding: 70px 0;
}

.tag {
    color: var(--orange);
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: .8rem;
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.3rem);
    line-height: 1.08;
    margin: 15px 0 20px;
}

.hero p {
    font-size: 1.14rem;
    color: #e6edf2;
    max-width: 570px;
    margin-bottom: 30px;
}

.outline {
    border: 1px solid #ffffff80;
    margin-left: 10px;
    background: transparent;
}

.outline:hover {
    background: #fff;
    color: var(--navy) !important;
}


/* =========================
   SEÇÕES
========================= */

section {
    padding: 78px 0;
}

.section-head {
    max-width: 650px;
    margin-bottom: 38px;
}

.section-head h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    color: var(--navy);
    margin: 10px 0;
}

.section-head p {
    color: var(--muted);
}


/* =========================
   SOBRE
========================= */

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 65px;
    align-items: center;
}

.about-img {
    height: 390px;
    border-radius: 8px;

    background:
        url('https://images.unsplash.com/photo-1625047509248-ec889cbff17f?auto=format&fit=crop&w=1000&q=80')
        center/cover;

    box-shadow: 18px 18px 0 var(--orange);
}

.about p {
    color: var(--muted);
    margin: 13px 0;
}

.checks {
    list-style: none;
    margin: 24px 0;
}

.checks li {
    margin: 13px 0;
    font-weight: bold;
}

.checks li::before {
    content: '✓';
    color: var(--orange);
    font-size: 1.2rem;
    font-weight: bold;
    margin-right: 10px;
}


/* =========================
   SERVIÇOS
========================= */

.services {
    background: var(--light);
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    background: #fff;
    padding: 29px;
    border-radius: 7px;
    border-bottom: 4px solid transparent;
    box-shadow: 0 5px 18px #1828380b;
    transition: .2s;
}

.card:hover {
    border-color: var(--orange);
    transform: translateY(-3px);
}

.icon {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 14px;
}

.card h3 {
    color: var(--navy);
    margin-bottom: 8px;
}

.card p {
    color: var(--muted);
    font-size: .95rem;
}


/* =========================
   CTA
========================= */

.cta {
    background: var(--blue);
    color: #fff;
    text-align: center;
    padding: 55px 0;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta p {
    margin-bottom: 24px;
    color: #e3f0fb;
}


/* =========================
   ORÇAMENTO
========================= */

.quote-section {
    background: var(--light);
}

.quote-wrapper {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.quote-info h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    color: var(--navy);
    margin: 10px 0 15px;
}

.quote-info p {
    color: var(--muted);
    margin-bottom: 25px;
}

.quote-list {
    list-style: none;
}

.quote-list li {
    margin: 15px 0;
    font-weight: 600;
}

.quote-list span {
    color: var(--orange);
    margin-right: 8px;
}

.form-box {
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 8px 30px #18283814;
}

.form-box h3 {
    color: var(--navy);
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.form-description {
    color: var(--muted);
    margin-bottom: 25px;
    font-size: .92rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: bold;
    color: var(--navy);
    margin-bottom: 7px;
    font-size: .9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--border);
    border-radius: 5px;
    outline: none;
    color: var(--text);
    background: #fff;
    transition: .2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px #1677c81a;
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.form-footer {
    margin-top: 22px;
}

.form-footer button {
    width: 100%;
    font-size: 1rem;
}

.form-footer button:disabled {
    opacity: .7;
    cursor: wait;
}

.privacy {
    color: var(--muted);
    font-size: .78rem;
    text-align: center;
    margin-top: 12px;
}

.form-message {
    display: none;
    padding: 14px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-weight: bold;
}

.form-message.success {
    display: block;
    background: #e5f6ec;
    color: var(--success);
}

.form-message.error {
    display: block;
    background: #fdeaea;
    color: #a52828;
}


/* =========================
   CONTATO
========================= */

.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    gap: 14px;
    margin: 23px 0;
}

.contact-list strong {
    display: block;
    color: var(--navy);
}

.contact-list span {
    color: var(--muted);
    font-size: .95rem;
}

.contact-icon {
    font-size: 1.4rem;
    color: var(--orange) !important;
}

.map {
    background:
        linear-gradient(
            135deg,
            #e8eef3,
            #c8d8e5
        );

    border-radius: 8px;
    min-height: 285px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    color: var(--navy);
    padding: 20px;
}

.map div {
    background: #fff;
    padding: 20px 30px;
    border-radius: 6px;
    box-shadow: 0 5px 15px #17293a25;
}

.map a {
    color: var(--blue);
    font-weight: bold;
}


/* =========================
   FOOTER
========================= */

footer {
    background: var(--navy);
    color: #b8c6d1;
    padding: 28px 0;
    font-size: .9rem;
}

footer .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

footer strong {
    color: #fff;
}


/* =========================
   WHATSAPP
========================= */

.whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 900;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #25d366;
    color: white;

    font-size: 28px;

    box-shadow: 0 8px 25px rgba(0,0,0,.2);

    transition: .3s;
}

.whatsapp:hover {
    transform: scale(1.05);
}


/* =========================
   TABLET
========================= */

@media(max-width: 850px) {

    .menu-button {
        display: block;
    }

    nav {
        position: absolute;
        top: 78px;
        left: 0;

        width: 100%;

        background: #fff;

        display: none;
        flex-direction: column;

        padding: 25px;

        box-shadow: 0 8px 15px #00000015;
    }

    nav.active {
        display: flex;
    }

    nav a {
        width: 100%;
        text-align: center;
    }

    .hero {
        min-height: 520px;
    }

    .about,
    .contact,
    .quote-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================
   CELULAR
========================= */

@media(max-width: 600px) {

    .top .container {
        justify-content: center;
        text-align: center;
    }

    .nav {
        min-height: 68px;
    }

    nav {
        top: 68px;
    }

    .hero-content {
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .outline {
        margin: 12px 0 0;
        display: block;
        width: max-content;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: auto;
    }

    .form-box {
        padding: 25px 20px;
    }

    .about-img {
        height: 270px;
    }

    .section-head h2,
    .quote-info h2 {
        font-size: 1.8rem;
    }

    section {
        padding: 55px 0;
    }

    .whatsapp {
        right: 15px;
        bottom: 15px;
    }

}

    .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;

    padding: 3px 12px;
    border-radius: 12px;

    background: linear-gradient(
        135deg,
        #833ab4,
        #fd1d1d,
        #fcb045
    );

    color: #fff;
    text-decoration: none;

    font-family: Arial, sans-serif;
    font-size: 30px;
    font-weight: 100;

    box-shadow: 0 5px 15px rgba(131, 58, 180, 0.25);

    transition: all 0.3s ease;

}
