html{
    scroll-behavior:smooth;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f5f7fa;
    color:#08111d;
}

a{
    text-decoration:none;
}

/* HEADER */

.topo{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    padding:14px 7%;
    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;
    background:transparent;
    border:none;
    box-shadow:none;
}

.logo-area{
    display:flex;
    align-items:center;
}

.site-logo{
    width:105px;
    height:auto;
    display:block;
    object-fit:contain;
}

.menu-center{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
}

.menu-center a{
    color:white;
    font-size:15px;
    font-weight:500;
    letter-spacing:.3px;
    position:relative;
    transition:.3s;
    text-shadow:0 2px 10px rgba(0,0,0,.45);
}

.menu-center a::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-6px;
    width:0;
    height:2px;
    background:#fca311;
    transform:translateX(-50%);
    transition:.3s;
}

.menu-center a:hover{
    color:#fca311;
}

.menu-center a:hover::after{
    width:100%;
}

.header-space{
    width:105px;
}

/* HERO */

.hero{
    min-height:100vh;
    background:
    linear-gradient(rgba(5,11,20,.72),rgba(5,11,20,.72)),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1600');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    padding:180px 8% 100px;
    color:white;
}

.hero-content{
    max-width:850px;
}

.tag{
    display:inline-block;
    background:rgba(252,163,17,.15);
    color:#fca311;
    padding:12px 20px;
    border-radius:40px;
    font-size:13px;
    font-weight:bold;
    margin-bottom:30px;
}

.hero h1{
    color:white;
    font-size:68px;
    line-height:1.05;
    margin-bottom:30px;
}

.hero p{
    color:#d4dce5;
    font-size:21px;
    line-height:1.8;
    margin-bottom:40px;
    max-width:850px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.btn,
.btn-primary{
    background:#fca311;
    color:#08111d;
    padding:16px 34px;
    border-radius:10px;
    font-weight:bold;
    transition:.3s;
    display:inline-block;
}

.btn:hover,
.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-outline,
.btn-secondary{
    border:1px solid rgba(255,255,255,.25);
    color:white;
    padding:16px 34px;
    border-radius:10px;
    transition:.3s;
    display:inline-block;
}

.btn-outline:hover,
.btn-secondary:hover{
    background:white;
    color:#08111d;
}

/* SOLUTIONS */

.solutions{
    margin-top:-70px;
    position:relative;
    z-index:20;
    padding:0 8% 80px;
}

.solutions-box{
    background:white;
    border-radius:28px;
    padding:70px 50px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
    text-align:center;
}

.mini-title{
    display:block;
    color:#fca311;
    font-size:13px;
    font-weight:bold;
    letter-spacing:1px;
    margin-bottom:15px;
}

.solutions-box h2{
    font-size:48px;
    color:#08111d;
    margin-bottom:60px;
}

.solutions-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:55px 35px;
}

.solution-icon{
    width:95px;
    height:95px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#f3f5f8;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    transition:.35s;
}

.solution-item{
    transition:.35s;
}

.solution-item:hover{
    transform:translateY(-8px);
}

.solution-item:hover .solution-icon{
    background:#fca311;
    transform:scale(1.08);
}

.solution-item p{
    color:#3f4b59;
    font-size:19px;
    line-height:1.7;
    max-width:320px;
    margin:auto;
    font-weight:600;
}

/* SECTIONS */

.section{
    padding:110px 8%;
    background:#f5f7fa;
}

.section-head{
    max-width:850px;
    margin-bottom:60px;
}

.section-head span{
    color:#fca311;
    font-weight:bold;
    text-transform:uppercase;
    font-size:13px;
    letter-spacing:1px;
}

.section-head h2{
    font-size:48px;
    color:#08111d;
    margin:18px 0;
    line-height:1.15;
}

.section-head p{
    color:#5d6977;
    font-size:18px;
    line-height:1.8;
}

.dark{
    background:#08111d;
    color:white;
}

.dark .section-head h2,
.dark .section-head p{
    color:white;
}

/* CARDS */

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.card{
    background:white;
    padding:40px;
    border-radius:24px;
    transition:.35s;
    position:relative;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.12);
}

.card::before{
    content:'';
    position:absolute;
    width:80px;
    height:80px;
    background:rgba(252,163,17,.08);
    border-radius:50%;
    right:-25px;
    top:-25px;
}

.icon{
    width:54px;
    height:54px;
    background:#fff3df;
    color:#fca311;
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    margin-bottom:22px;
}

.card h3{
    font-size:26px;
    margin-bottom:18px;
    color:#08111d;
}

.card p{
    color:#5d6977;
    line-height:1.8;
}

/* PROJECTS */

.project-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:28px;
}

.project-card{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    overflow:hidden;
    transition:.35s;
}

.project-card:hover{
    transform:translateY(-8px);
}

.project-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
}

.project-card div{
    padding:30px;
}

.project-card h3{
    color:white;
    font-size:24px;
    margin-bottom:15px;
}

.project-card p{
    color:#d4dce5;
    line-height:1.8;
}

/* ABOUT TERMAX */

.about-termax{
    padding:120px 8%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
    background:white;
}

.about-mini{
    display:inline-block;
    color:#fca311;
    font-size:13px;
    font-weight:bold;
    letter-spacing:1px;
    margin-bottom:20px;
}

.about-termax h2{
    font-size:52px;
    line-height:1.08;
    color:#08111d;
    margin-bottom:28px;
}

.about-termax p{
    color:#5d6977;
    line-height:1.9;
    font-size:18px;
}

.about-numbers{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:45px;
}

.about-numbers div{
    background:#f5f7fa;
    padding:25px;
    border-radius:18px;
}

.about-numbers strong{
    display:block;
    color:#08111d;
    font-size:22px;
    margin-bottom:10px;
}

.about-numbers span{
    color:#6a7684;
    line-height:1.6;
}

.about-right{
    position:relative;
}

.about-right img{
    width:100%;
    height:620px;
    object-fit:cover;
    border-radius:28px;
    box-shadow:0 25px 60px rgba(0,0,0,.18);
}

.about-card{
    position:absolute;
    left:-40px;
    bottom:40px;
    background:#08111d;
    color:white;
    padding:35px;
    border-radius:24px;
    max-width:320px;
    box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.about-card h3{
    font-size:28px;
    margin-bottom:15px;
}

.about-card p{
    color:#d4dce5;
}

/* FOOTER */

.footer{
    background:#050b14;
    color:white;
    padding-top:75px;
}

.footer-grid{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:45px;
    padding-bottom:55px;
}

.footer h2,
.footer h3{
    margin-bottom:20px;
}

.footer p,
.footer li{
    color:#bbc4cf;
    line-height:1.8;
}

.footer ul{
    list-style:none;
}

.footer li{
    margin-bottom:10px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    padding:22px;
    color:#8893a0;
}

/* WHATSAPP */

.whatsapp{
    position:fixed;
    right:22px;
    bottom:22px;
    width:68px;
    height:68px;
    background:#25d366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 25px rgba(0,0,0,.35);
    z-index:2000;
    transition:.3s;
    animation:pulse 2s infinite;
}

.whatsapp:hover{
    transform:scale(1.1);
}

.whatsapp svg{
    width:36px;
    height:36px;
    fill:white;
}

@keyframes pulse{
    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.55);
    }
    70%{
        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }
}

/* CONTACT */

.contact-page{
    min-height:100vh;
    background:
    linear-gradient(rgba(5,11,20,.88),rgba(5,11,20,.92)),
    url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=1600');
    background-size:cover;
    background-position:center;
    padding:150px 8% 100px;
}

.contact-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.contact-left{
    color:white;
}

.contact-tag{
    display:inline-block;
    background:rgba(252,163,17,.12);
    color:#fca311;
    padding:10px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:bold;
    margin-bottom:25px;
}

.contact-left h1{
    font-size:58px;
    line-height:1.05;
    margin-bottom:25px;
}

.contact-left p{
    color:#d5dce5;
    font-size:19px;
    line-height:1.9;
}

.contact-cards{
    display:grid;
    gap:20px;
    margin-top:40px;
}

.mini-card{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    padding:28px;
    border-radius:18px;
}

.mini-card h3{
    margin-bottom:12px;
    color:white;
}

.mini-card p,
.mini-card a{
    color:#d5dce5;
    line-height:1.8;
}

.contact-form-box{
    background:white;
    padding:45px;
    border-radius:26px;
    box-shadow:0 20px 60px rgba(0,0,0,.25);
}

.contact-form-box h2{
    font-size:36px;
    margin-bottom:30px;
    color:#08111d;
}

.contact-form-box form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form-box input,
.contact-form-box textarea{
    width:100%;
    border:none;
    background:#f5f7fa;
    padding:18px;
    border-radius:14px;
    font-size:16px;
    outline:none;
}

.contact-form-box textarea{
    min-height:170px;
    resize:none;
}

.contact-form-box button{
    background:#fca311;
    color:#08111d;
    border:none;
    padding:18px;
    border-radius:14px;
    font-size:16px;
    font-weight:bold;
    cursor:pointer;
}

/* RESPONSIVO */

@media(max-width:1000px){

    .hero h1{
        font-size:48px;
    }

    .hero p{
        font-size:18px;
    }

    .solutions-grid{
        grid-template-columns:1fr;
    }

    .about-termax{
        grid-template-columns:1fr;
    }

    .about-termax h2,
    .section-head h2,
    .solutions-box h2{
        font-size:38px;
    }

    .about-right img{
        height:450px;
    }

    .about-card{
        position:relative;
        left:0;
        bottom:0;
        margin-top:-60px;
    }

    .contact-container{
        grid-template-columns:1fr;
    }

    .contact-left h1{
        font-size:42px;
    }
}

@media(max-width:700px){

    .topo{
        display:flex;
        flex-direction:column;
        gap:14px;
        padding:14px 6%;
    }

    .site-logo{
        width:95px;
    }

    .menu-center{
        gap:18px;
        flex-wrap:wrap;
    }

    .menu-center a{
        font-size:14px;
    }

    .header-space{
        display:none;
    }

    .hero{
        padding-top:190px;
        text-align:center;
    }

    .hero h1{
        font-size:38px;
    }

    .hero-buttons{
        justify-content:center;
        flex-direction:column;
    }

    .about-numbers{
        grid-template-columns:1fr;
    }

    .solutions-box{
        padding:50px 25px;
    }
}