* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: auto;
}

h2 {
    font-size: 48px;
}

body {

    font-family: 'DM Sans', sans-serif;
    background: #ffffff;
    color: #111;

}

.container {

    width: 100%;
    width: 100%;
    margin: auto;
    padding: 0 80px;

}

.header {

    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 999;

    padding: 25px 0;

    transition: all .35s ease;

}



.header .container {

    display: flex;
    justify-content: space-between;
    align-items: center;

}

.header.scrolled {

    background:
        linear-gradient(
            90deg,
            #090909 0%,
            #4A0702 18%,
            #8E1300 50%,
            #C21A08 78%,
            #E43725 100%
        );

    padding: 16px 0;

    box-shadow:
        0 10px 30px rgba(0,0,0,.18);

    backdrop-filter: blur(10px);
}

.header.scrolled .logo img {

    width: 160px;

}

.logo {

    font-size: 38px;
    font-weight: 800;
    color: white;

}

.logo img {
    width: 180px;
    height: auto;
}

.logo span {

    color: #E43725;

}

.menu {

    display: flex;
    gap: 35px;

}

.menu a {

    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 18px;

}
.btns {
    display: flex;
    gap: 15px;
}

.btn-primary {

    background: #E43725;
    color: white;
    padding: 16px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;

}

.btn-secondary {

    border: 1px solid rgba(255, 255, 255, .4);
    padding: 16px 28px;
    border-radius: 12px;
    color: white;
    text-decoration: none;

}

.hero {



    position: relative;


    min-height: 900px;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, .90) 0%,
            rgba(0, 0, 0, .55) 15%,
            rgba(255, 90, 31, .15) 100%),

        url(images/hero11.png);

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

    display: flex;
    align-items: center;

}

.hero-grid {

    /* display:grid; */
    justify-content: space-between;
    /* grid-template-columns:1fr 420px; */
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: center;

}

.hero-content {

    max-width: 580px;

}

.hero-tag {

    display: block;
    margin-bottom: 25px;

    font-size: 18px;
    font-weight: 700;

    color: #f5503e;
    letter-spacing: 2px;

}

.hero-content h1 {

    font-size: 52px;
    line-height: 1.05;
    color: white;
    margin-bottom: 25px;
    font-weight: 800;

}

.hero-content p {

    font-size: 22px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);

    margin-bottom: 40px;

}

.hero-actions {

    display: flex;
    gap: 15px;

}

.hero-card {
    padding-right: 0px;
    width: 360px;
    background: white;
    padding: 35px;
    border-radius: 22px;

    box-shadow:
        0 40px 80px rgba(0, 0, 0, .15);

}

.order-id {

    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;

}

.divider {

    height: 1px;
    background: #eee;
    margin: 25px 0;

}

.card-row {

    display: flex;
    justify-content: space-between;

    margin-bottom: 20px;

}

.progress {

    height: 10px;
    background: #ececec;
    border-radius: 100px;
    overflow: hidden;
    margin-top: 20px;

}

.progress-bar {

    width: 66%;
    height: 100%;
    background: #E43725;

}

.percent {

    margin-top: 10px;
    font-weight: 700;
    text-align: right;

}

.btn-card {

    display: block;
    margin-top: 25px;

    background: #E43725;
    padding: 15px;

    border-radius: 12px;

    text-align: center;
    text-decoration: none;

    color: white;
    font-weight: 700;

}

.stats {

    background: #070707;
    padding: 55px 0;
    position: relative;

}

.stats::before {

    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    height: 1px;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .1),
            transparent);

}

.stats-grid {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;

}

.stat-item {

    display: flex;
    align-items: flex-start;
    gap: 18px;

}

.stat-icon {

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #E43725;

    flex-shrink: 0;

}

.stat-icon svg {

    width: 48px;
    height: 48px;

    stroke-linecap: round;
    stroke-linejoin: round;

}

.stat-content h3 {

    font-size: 44px;
    font-weight: 800;
    color: #E43725;
    margin-bottom: 6px;
    line-height: 1;

}

.stat-content p {

    font-size: 16px;
    color: rgba(255, 255, 255, .75);
    line-height: 1.4;

    max-width: 220px;

}

/* ====================================
   EMPRESAS
==================================== */

.enterprise-section {

    padding: 80px 0;
    background: #ffffff;

}

.enterprise-grid {

    display: grid;
    grid-template-columns: 1fr 1fr 350px;
    gap: 40px;
    align-items: center;

}

.section-tag {

    display: block;

    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;

    letter-spacing: 2px;

    color: #E43725;

    margin-bottom: 20px;

}

.enterprise-content {
    display: flex;
    flex-direction: column;

}

.enterprise-content h2 {

    font-size: 48px;
    line-height: 1.05;

    font-weight: 800;

    color: #111;

    margin-bottom: 25px;

}

.enterprise-content h2 span {

    color: #E43725;

}

.enterprise-content p {

    font-size: 18px;
    line-height: 1.8;

    color: #666;

    max-width: 500px;

    margin-bottom: 35px;

}

.enterprise-content a {
    width: fit-content;
}

.enterprise-image {

    height: 520px;
    overflow: hidden;

    border-radius: 8px;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .08);

}

.enterprise-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

}

.enterprise-services {

    display: flex;
    flex-direction: column;
    gap: 20px;

}

.service-box {

    background: white;

    padding: 28px;

    border-radius: 20px;

    display: flex;
    align-items: center;
    gap: 18px;

    transition: .3s;

    border: 1px solid #eee;

}

.service-box:hover {

    transform: translateY(-5px);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .06);

}

.service-icon {

    width: 58px;
    height: 58px;

    border-radius: 14px;

    background:
        rgba(255, 90, 31, .08);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;

    color: #E43725;

    flex-shrink: 0;

}

.service-box h4 {

    font-size: 18px;
    font-weight: 700;
    color: #111;

    margin-bottom: 4px;

}

.service-box p {

    font-size: 14px;
    color: #777;

}


/* ====================================
   SERVIÇOS
==================================== */

.services-section {

    padding: 80px 0;
    background: #f7f7f7;

}

.services-header {

    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    margin-bottom: 36px;

}

.services-header h2 {

    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;

    color: #111;

}

.services-header h2 span {

    color: #E43725;

}

.services-link {

    font-size: 16px;
    font-weight: 700;

    text-decoration: none;

    color: #E43725;

    transition: .3s;

}

.services-link:hover {

    transform: translateX(5px);

}

.services-grid {

    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;

}

.service-card {

    background: rgb(255, 255, 255);

    border-radius: 8px;
    overflow: hidden;

    border: 1px solid #eee;

    transition: .35s;

    cursor: pointer;

}

.service-card:hover {

    transform: translateY(-10px);

    box-shadow:
        0 25px 50px rgba(0, 0, 0, .08);

}

.service-card img {

    width: 100%;
    height: 220px;

    object-fit: cover;

    display: block;

}

.service-info {

    padding: 22px;

}

.service-info h3 {

    font-size: 20px;
    font-weight: 700;

    margin-bottom: 5px;

    color: #111;

}

.service-info p {

    font-size: 15px;
    color: #777;

    line-height: 1.5;

}


/* ====================================
   COMO FUNCIONA
==================================== */

.how-it-works {

    padding: 140px 0;
    background: #0b0b0b;

}

.how-header {

    text-align: center;
    max-width: 850px;
    margin: 0 auto 90px;

}

.how-header .section-tag {
    color: #fff;
}

.how-header h2 {

    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;

    color: white;
    margin: 20px 0;

}

.how-header p {

    font-size: 18px;
    line-height: 1.8;

    color: rgba(255, 255, 255, .7);

}

.how-header h2 span {
    color: #E43725;
}

/* ====================================
   PROCESSO
==================================== */

.process-line {

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 30px;

    padding: 55px 50px;
    margin-bottom: 30px;

    border-radius: 24px;

    background:
        linear-gradient(135deg,
            #8E1300 0%,
            #A61A00 50%,
            #8E1300 100%);

    border: 1px solid rgba(255, 255, 255, .08);

    overflow: hidden;

}

.step {

    flex: 1;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    position: relative;

}

.step-icon {

    width: auto;
    height: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

}

.step-icon svg {

    width: 50px;
    height: 50px;

    color: white;

}

.step-index {

    font-size: 20px;
    font-weight: 800;

    color: white;

    margin-bottom: 10px;

}

.step h3 {

    font-size: 20px;
    font-weight: 700;

    color: white;

    margin-bottom: 12px;

}

.step p {

    max-width: 220px;

    font-size: 15px;
    line-height: 1.55;

    color: rgba(255, 255, 255, .82);

}

/* ==========================
   CONECTOR
========================== */

.line {

    width: 30px;
    height: 90px;

    position: relative;

    flex-shrink: 0;

}

.line::before {

    content: "";

    position: absolute;

    top: 45px;
    left: 0;
    right: 0;

    border-top: 2px dashed rgba(255, 180, 150, .45);

}

.line::after {

    content: "";

    position: absolute;

    right: 0;
    top: 39px;

    width: 10px;
    height: 10px;

    border-top: 2px solid #ff6a3d;
    border-right: 2px solid #ff6a3d;

    transform: rotate(45deg);

}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding: 0 80px;
}

.benefit-card {
    position: relative;
    height: 280px;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    background: #151515;
    border: 1px solid rgba(228, 55, 37, .26);
    transition: .35s ease;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .32);
}

.benefit-card::before{
    content:"";
    position:absolute;
    inset:0;

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

    transform:scale(1.03);

    transition:.45s ease;

    z-index:0;

    opacity:.95;
}

.benefit-card-team::before {
    background-image: url(images/eletrica.jpg);
    background-position: top right;
    transform: scaleX(-1) scale(1.03);
}

.benefit-card-materials::before {
    background-image: url(images/avac.jpg);
    background-position: top right;
    transform: scaleX(-1) scale(1.03);
}

.benefit-card-reports::before {
    background-image: url(images/blog-2.jpg);
    background-position: top right;
}

.benefit-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, .45) 0%,
            rgba(0, 0, 0, .36) 42%,
            rgba(40, 13, 5, .24) 68%,
            rgba(228, 55, 37, .09) 100%),
        linear-gradient(0deg,
            rgba(0, 0, 0, .36) 0%,
            rgba(0, 0, 0, .05) 58%,
            rgba(0, 0, 0, .14) 100%);
    z-index: 1;
    transition: opacity .35s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(228, 55, 37, .55);
    box-shadow: 0 28px 65px rgba(0, 0, 0, .34);
}


.benefit-card:hover::before {
    transform: scale(1.08);
}

.benefit-card-team:hover::before,
.benefit-card-materials:hover::before {
    transform: scaleX(-1) scale(1.08);
}

.benefit-card:hover .benefit-overlay {
    opacity: 0;
}

.benefit-card:hover .benefit-content {
    opacity: 0;
    transform: translateY(10px);
}

.benefit-content {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 3;
    width: 100%;
    max-width: 420px;
    padding: 0 32px 28px 32px;
    transition: opacity .35s ease, transform .35s ease;
}

.benefit-card h4 {

    font-size: 22px;
    font-weight: 800;
    line-height: 1.1;

    color: white;

    margin-bottom: 12px;

}

.benefit-card p {

    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;

    color: rgba(255,255,255,.85);

    margin-bottom: 0;

}

.benefit-link {
    font-size: 17px;
    font-weight: 800;
    color: #E43725;
    text-decoration: none;
    width: fit-content;
}

.benefit-link span {
    display: inline-block;
    margin-left: 8px;
    transition: .3s ease;
}

.benefit-link:hover span {
    transform: translateX(6px);
}

/* ====================================
ARTIGOS
==================================== */

.articles-section {

    padding: 90px 0;
    background: #f8f8f8;

}

.articles-grid {

    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 40px;
    align-items: start;

}

.articles-intro h2 {

    font-size: 46px;
    font-weight: 800;
    line-height: 1.1;

    margin: 20px 0 40px;

}

.articles-list {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;

}

.article-card {

    background: white;
    border-radius: 18px;
    overflow: hidden;

    border: 1px solid #eee;

    transition: .3s;
    height: auto;

}

.article-card:hover {

    transform: translateY(-8px);

}

.article-card img {

    width: 100%;
    height: 200px;

    object-fit: cover;
    object-position: top center;

}

.article-content {

    padding: 18px;

}

.article-content span {

    font-size: 12px;
    font-weight: 600;

    color: #888;

}

.article-content h3 {

    font-size: 20px;
    line-height: 1.4;

    margin-top: 12px;
    margin-bottom: 18px;

}

.article-content a {

    font-size: 28px;
    text-decoration: none;

    color: #E43725;

}

/* ====================================
CTA FINAL
==================================== */

.cta-section {

    display: grid;
    grid-template-columns: 1fr 1fr;

    min-height: 520px;

}

.cta-left {

    background: #050505;

    display: flex;
    align-items: center;

    padding: 80px;

    position: relative;

}

.cta-left::before {

    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at center,
            rgba(255, 90, 31, .12),
            transparent 60%);

}

.cta-content {

    position: relative;
    z-index: 2;

    max-width: 520px;

}

.cta-content h2 {

    font-size: 62px;
    font-weight: 800;
    line-height: 1.05;

    color: white;

    margin-bottom: 30px;

}

.cta-content span {

    color: #E43725;

}

.cta-content p {

    font-size: 24px;
    line-height: 1.7;

    color: rgba(255, 255, 255, .7);

    margin-bottom: 40px;

}

.cta-image {

    overflow: hidden;

}

.cta-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

}

/* ====================================
FOOTER
==================================== */

.footer {

    background: white;
    padding: 90px 0 30px;

}

.footer-grid {

    display: grid;
    grid-template-columns:
        1.5fr 1fr 1fr 1fr 1.2fr;

    gap: 60px;

    padding-bottom: 50px;

}

.footer-logo {

    font-size: 48px;
    font-weight: 800;

    margin-bottom: 25px;

}

.footer-logo span {

    color: #E43725;

}

.footer-text {

    font-size: 16px;
    line-height: 1.8;
    color: #666;

    max-width: 320px;

    margin-bottom: 30px;

}

.socials {

    display: flex;
    gap: 12px;

}

.socials a {

    width: 42px;
    height: 42px;

    border: 1px solid #ddd;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    color: #111;

}

.footer h4 {

    font-size: 18px;
    font-weight: 700;

    margin-bottom: 25px;

}

.footer ul {

    list-style: none;

}

.footer ul li {

    margin-bottom: 14px;

    color: #666;

}

.footer ul li a {

    text-decoration: none;
    color: #666;

}

.newsletter-text {

    color: #666;
    margin-bottom: 20px;

    line-height: 1.8;

}

.newsletter-form {

    display: flex;

}

.newsletter-form input {

    flex: 1;

    height: 58px;

    border: 1px solid #e5e5e5;

    padding: 0 20px;

    font-family: 'DM Sans', sans-serif;

    border-radius: 12px 0 0 12px;

}

.newsletter-form button {

    width: 65px;

    border: none;

    background: #E43725;

    color: white;

    font-size: 22px;

    border-radius: 0 12px 12px 0;

    cursor: pointer;

}

.footer-bottom {

    border-top: 1px solid #eee;

    padding-top: 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 14px;
    color: #777;

}





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

@media (max-width:1200px) {

    .container {
        padding: 0 50px;
    }

    .menu {
        gap: 22px;
    }

    .menu a {
        font-size: 16px;
    }

    .hero-grid {
        gap: 50px;
    }

    .hero-content h1 {
        font-size: 46px;
    }

    .enterprise-grid {
        grid-template-columns: 1fr 1fr;
    }

    .enterprise-services {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width:992px) {

    .menu {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 150px 0 80px;
    }

    .hero-grid {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-card {
        width: 100%;
        max-width: 420px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .enterprise-grid {
        grid-template-columns: 1fr;
    }

    .enterprise-services {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-line {
        flex-direction: column;
    }

    .line {
        width: 2px;
        height: 55px;
        margin: 0 auto;
    }

    .line::before {
        top: 0;
        bottom: 0;
        left: 0;
        right: auto;
        border-top: 0;
        border-left: 2px dashed rgba(255, 180, 150, .45);
    }

    .line::after {
        left: -4px;
        top: auto;
        bottom: 0;
        transform: rotate(135deg);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .articles-list {
        grid-template-columns: 1fr;
    }

    .cta-section {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width:768px) {

    .container {
        padding: 0 28px;
    }

    h2,
    .enterprise-content h2,
    .services-header h2,
    .how-header h2 {
        font-size: 34px;
    }

    .header .btn-primary {
        display: none;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions a {
        width: 100%;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .enterprise-services {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-line {
        padding: 28px 22px;
    }

    .benefit-card {
        height: auto;
        min-height: 190px;
    }

    .benefit-content {
        padding: 24px;
    }

    .articles-intro h2 {
        font-size: 40px;
    }

    .cta-left {
        padding: 60px 28px;
    }

    .cta-content h2 {
        font-size: 42px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width:480px) {

    .container {
        padding: 0 20px;
    }

    .logo img {
        width: 135px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 20px;
        font-size: 15px;
    }

    .enterprise-image {
        height: 280px;
    }

    .service-card img {
        height: 210px;
    }

    .benefit-card h4 {
        font-size: 22px;
    }

    .article-content h3 {
        font-size: 20px;
    }

    .cta-content h2 {
        font-size: 34px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        border-radius: 12px;
    }

}