/* Fontes */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Aleo:ital,wght@0,600;1,600&display=swap');

/* Texto Logo */
.text-logo {
    font-family: "Aleo", serif;
    font-weight: 600;
}

html {
    scroll-behavior: smooth;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'inter', sans-serif;
}

:root{
    --accent: #f8531d;
    --white: #ffffff;
    --gray: #1d1c21;
}

body {
    min-width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: var(--white);
    color: black;
}

/* Navbar */

header{
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 60px;
    margin: -5px 0px;
    border-bottom: 1px rgba(255, 255, 255, 0) solid;
    transition: all 0.5s ease-in-out;
    background-color: transparent;

}

header.sticky {
    background: var(--white);
    border-bottom: 1px rgba(0, 0, 0, 0.548) solid;
    padding: 0px 60px;
    margin: -5px 0px;
}

header .logo {
    display: flex;
    align-items: center;
    gap: 8px; 
    text-decoration: none; 
    font-size: 30px; 
    font-weight: bold; 
    color: #000;

}

header .logo img {
    width: auto; 
    margin-right: -25px; 
}

header .menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -80px;

}

header .menu a {
    color: black;
    font-size: 24px;
    font-weight: 500;
    text-decoration: none;
    margin: 0px 20px;
    padding: 0px 10px;
    position:  relative;
    transition: color 0.3s ease-in-out;
}

header .menu a::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0px;
    width: 100%;
    height: 2px;
    background-color: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

header .menu a:hover {
    color: var(--accent);
}

header .menu a:hover::before {
    transform: scaleX(1);
}

header .btn {
    color: #fff;
    font-size: 25px;
    cursor: pointer;
    display: none;
}

.btn-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 140px;
    padding: 0 17px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.8px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    fill: #fff;
    background-color: var(--gray);
    border: 2px solid var(--gray);
    border-radius: 32px;
    cursor: pointer;
    transition: all 0.3;
    outline: 0;
}

.btn-2:focus {
    color: #171e29;
}

.btn-2:hover, .btn-2:active {
    background-color: var(--accent);
    border-color: var(--accent);
    color: black;
}

.btn-header {
    width: 160px;
}

/* Hero Section */

.hero-page {
    align-items: center;
    display: flex;
    flex-direction: column;
    z-index: -10;
    margin-bottom: 74px;
}

.gradient {
    width: 774px;
    height: auto;
    position: absolute;
    opacity: 0.8;
}

.hero-page .gradient-v {
    left: 290px;
    top: 100px;
}

.hero-page-headline {
    display: flex;
    flex-direction: column;
    color: black;
    width: 1300px;
    margin: 120px 0px 0px 0px;
    z-index: 1;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.hero-page-headline h1 {
    font-size: 96px;
    align-items: center;
}

.tagline {
    display: flex;
    gap: 24px;
    align-items: center;
}

.tagline h2 {
    font-size: 96px;
}

.tagline-sub {
    background-image: url(images/tagline-img.png);
    height: 86px;
    width: 639px;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tagline-sub h3 {
    font-size: 32px;
    font-weight: normal;
    font-style: italic;
    color: white;
}

.hero-page-headline p {
    font-size: 24px;
    font-weight: 200;
    margin-top: 24px;
}

.btn-orange {
    background-color: var(--accent);
    width: 305px;
    height: 69px;
    font-size: 24px;
    filter: drop-shadow(0px 3px 13px var(--accent));
    border: 1px var(--accent) solid;
    margin-top: 64px;
}

.btn-orange:hover {
    filter: drop-shadow(0px 3px 20px var(--accent));
}

.brandS {
    display: flex;
    gap: 24px;
    margin: 20px 0;
    align-items: center;
}

/* Secção Trabalhos Feitos / Work */
.preview {
    display: flex;
    background-color: var(--white);
    overflow: hidden;
    gap: 24px;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    scroll-behavior: auto;
}

.work-preview-box {
    background-color: var(--gray);
    width: 537px;
    height: 274px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    flex: 0 0 auto;
    filter: drop-shadow(0px 1px 2px black);
}

/* Secção Clientes / Testimonials */
#testimonyPreview {
    padding-top: 32px;
    padding-bottom: 32px;
    display: flex;
    overflow-x: hidden;
    padding-left: 80px;
}

.testimony-preview-box {
    width: 537px;
    height: 216px;
    border: none;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    padding: 34px;
    background-color: var(--gray);
    color: white;
    filter: drop-shadow(0px 1px 5px rgba(255, 255, 255, 0.31));
    flex: 0 0 auto;
}

.testimony-preview-box p{
    font-size: 20px;
}

.testimony-people {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-top: 10%;
}

.testimony-people-name {
    display: flex;
    flex-direction: column;
}

.testimony-people-name h5 {
    font-size: 20px;
    font-weight: normal;
}

.testimony-people h6 {
    font-size: 13px;
    font-weight: 300;
    opacity: 0.8;
}

/* Secção Serviços / Services */
.services {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
}

.services h1 {
    font-size: 64px;
    margin-bottom: 14px;
    font-weight: 700;
}

.services p {
    font-size: 24px;
    margin-bottom: 80px;
    width: 1056px;
}

.service-boxes {
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 2;
}

.service-box {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
}

.services .gradieht-lightblue {
    top: 20px;
    left: 600px;
}

.services .gradieht-lightblue {
    top: 700px;
    left: 10px;
    z-index: 1;
}

/* Secção Sobre nós / About */
.about {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-top: 100px;
}

.about h1 {
    font-size: 64px;
    margin-bottom: 48px;
    font-weight: normal;
}

.about-datas {
    display: flex;
    gap: 90px;
}

.about-data {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.about-data h4 {
    font-size: 64px;
    font-weight: 500;
}

.about-data p {
    font-size: 32px;
}

.about-datas hr {
    height: 150px;
}

.about-container {
    display: flex;
    gap: 32px;
    margin-top: 100px;
    z-index: 1;
}

.about-headlines {
    width: 577px;
    text-align: center
}

.about-headlines h1 {
    font-weight: 600;
    margin-bottom: 12px;
}

.about-headlines p {
    margin-bottom: 12px;
    opacity: 0.8;
    font-size: 24px;
}

.about-headlines button {
    display: inline-block;
}

.about-img {
    display: flex;
    gap: 22px;
}

.about-img div {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.about .gradieht-lightblue {
    left: 700px;
    top: 200px;
}

.about .gradient-violet {
    left: 200px;
    top: 500px;
}

/* Work Section */
.work {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.work h1 {
    font-size: 64px;
    font-weight: normal;
    margin: 100px 0px 20px 0px;
}

.work hr {
    width: 75%;
    margin-bottom: 50px;
}

.work-boxes {
    display: flex;
    gap: 72px;
    margin-bottom: 45px;
}

.work-box {
    width: 537px;
    height: 600px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 29px;
    border: 1px solid black;
    border-radius: 32px;
    filter: drop-shadow(0px 1px 5px rgba(255, 255, 255, 0.31));
}

.work-tags {
    display: flex;
    gap: 12px;
    opacity: 0.8;
}

.work-tags p {
    border: 1px solid black;
    border-radius: 32px;
    padding: 10px 20px;
    color: black;
}

/* Footer */

.footer {
    display: flex;
    flex-direction: column;
}

#f-hr {
    width: 1306px;
    margin: 150px 50px 50px 50px;
    align-self: center;
}

.footer-callout {
    display: flex;
    justify-content: center; 
    align-items: center; 
    gap: 10px; 
}

.footer-callout a {
    font-size: 64px;
    text-decoration: none;
    font-weight: 600;
    color: black;
}

.footer-callout img {
    width: auto; 
    margin-right: -35px; 
    width: 168px;
    height: 168px;

}

.footer-callout div {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
}

.footer-callout h5 {
    font-size: 40px;
    font-weight: 600;
}

.btn-callout {
    border-radius: 0px;
    width: 256px;
    height: 69px;
    background-image: url(images/btn-callout.png);
    display: flex;
    gap: 15px;
    font-size: 24px;
    filter: drop-shadow(0px 3px 10px rgba(125, 140, 137, 0.584));
}

.btn-callout i{
    font-size: 25px;
    color: black;
    rotate: 40deg;
}

#bf-hr {
    margin: 0px 0px 50px 0px;
    width: 1306px;
    align-self: center;
}

.bottom-footer {
    display: flex;
    justify-content: space-between;
    padding: 0px 100px 50px 100px;
}

.newsletter {
    width: 424px;
    display: flex;
    flex-direction: column;
}

.newsletter p {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 50px;
}

.newsletter form {
    display: flex;
    align-items: center;
}

.newsletter input {
    border: 1px solid black;
    font-size: 24px;
    color: white;
    background: transparent;
    width: 424px;
    height: 73px;
    padding: 20px;
} 

.newsletter form button {
    background: black;
    height: 73px;
    width: 72px;
    border: 1px solid black;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter form button:hover {
    background-color: var(--accent);
    border: 1px solid var(--accent);
}

.newsletter form i {
    font-size: 29px;
    color: white;
    rotate: 90deg;
    transition: color 0.3s ease;
}

.newsletter form button:hover i{
    color: black;
}

.footer-links {
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
    margin: 0px 50px 0px 200px;
}

.footer-link, .navigation {
    display: flex;
    flex-direction: column;
}

.footer-link h6 {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 24px;
}

.navigation {
    gap: 16px;
}

.navigation a {
    font-size: 16px;
    text-decoration: none;
    color: black;
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
}

.navigation a:hover {
    opacity: 1;
}

.copyright {
    display: flex;
    justify-content: center;
    margin: -20px 100px 50px 100px;
    align-items: center;
}


/* Contacto / Contact */
.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 120px;
    padding: 0px 169px 50px 169px;
    min-width:100%;
    position: relative;
    overflow: hidden;
}

.contact .gradient-orange {
    top: 0px;
    left: -400px;
}

.contact .gradieht-lightblue {
    top: 0px;
    left: 1050px;
}

.contact h1 {
    font-size: 48px;
    font-weight: bold;
}

.contact p {
    font-size: 24px;
    opacity: 0.8;
    text-align: center;
    margin-bottom: 32px;
}

.contact form {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 50px;
    z-index: 1;
}

.contact form input, .contact form textarea {
    background-color: transparent;
    height: 75px;
    font-size: 24px;
    border: none;
    border-bottom: 1px solid black;
    margin-bottom: 25px;
    color: black;
}

.contact form textarea {
    margin-top: 20px;
    margin-bottom: 76px;
    height: 100px;
}

.contact form input:focus, .contact form textarea:focus {
    outline: none;
}

/* Laptop e Tablet */
@media (max-width: 1024px) and (min-width: 0px) {
    header {
        padding: 20px 50px;
    }
    header .btn {
        display: block;
        color: black;
    }
    header .menu {
        position: fixed;
        background: var(--accent);
        flex-direction: column;
        min-width: 400px;
        height: 100vh;
        top: 0;
        right: -100%;
        padding: 50px 50px;
        transition: 0.5s;
        transition-property: right;
    }
    header .menu.active {
        right: 0;
    }

    header .menu .close-btn {
        position: absolute;
        top: 0;
        left: 0;
        margin: 25px;
        color: white;
    }

    header .menu a {
        display: flex;
        font-size: 20px;
        margin: 20px;
        padding: 0 15px;
        color: rgb(255, 255, 255);
    }

    .btn-header {
        display: none;
    }

    header.sticky {
        padding: 15px 50px;
    }

    /* Heropage */
    .hero-page {
        align-items: center;
    }

    .hero-page-headline {
        margin-left: 0px;
        align-items: center;
        width: 768px;
    }

    .hero-page-headline {
        margin-left: 0px;
        align-items: center;
        width: 768px;
    }

    .hero-page-headline h1 {
        font-size: 48px;
        font-weight: 700;
        text-align: center;
        width: 600px;
    }

    .tagline h2 {
        font-size: 48px;
    }

    .tagline-sub {
        height: 55px;
        width: 351px;
    }

    .tagline-sub h3 {
        font-size: 20px;
    }

    .hero-page-headline p {
        font-size: 20px;
        width: 512px;
        text-align: center;
        margin-top: 10px;
    }

    .gradient {
        width: 650px;
    }

    .hero-page .gradient-v {
        left: 0px;
        top: 300px;
    }

    .work-preview-box {
        width: 440px;
        height: 330px;
    }

    .work-preview-box img {
        width: 377px;
        height: 250px;
    }

    .services .gradient-orange {
        width: 377px;
        height: 250px;
    }

    .services p {
        width: 650px;
        font-size: 20px;
    }

    .service-box {
        flex-direction: column;
    }

    #service-img-ss {
        width: 537px;
    }

    .service-box img {
        width: 537px;
    }

    .about .gradient {
        width: 537px;
    }

    .about .gradient-orange{
        left: 50px;
        top: 1500px;
    }

    .about-datas{
        gap: 32px;
    }

    
    .about-data h4{
        font-size: 48px;
    }

    .about-data p{
        font-size: 24px;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .work-boxes {
        flex-direction: column;
    }

    #f-hr, #bf-hr {
        width: 695px;
    }

    .footer-callout {
        padding: 0px 50px 50px 50px;
    }

    .footer-callout a {
        font-size: 40px;
    }

    .footer-callout h5 {
        font-size: 26px;
        width: 156px;
    }

    .footer-callout div {
        gap: 8px;
    }

    .footer-callout button {
        width: 200px;
        height: 69px;
    }

    .footer-callout i {
        font-size: 30px;
    }

    .bottom-footer {
        flex-direction: column;
        padding: 0px 50px 0px 50px;
    }

    .copyright {
        margin: 0px 40px 50px 40px;
    }

    /* Contact */

    .contact {
    padding: 0px 50px 50px 50px;
    text-align: center;
    }

    .contact .gradient-orange{
        top: 0px;
        left: -400px;
    }

    .contact .gradient{
        top: 200px;
        left: 450px;
    }

    .contact h1 {
        font-size: 32px;
    }

    .contact p {
        font-size: 28px;
    }

}

/* Phone */

@media (max-width: 767px) and (min-width: 0px) {
    /* Navbar */
    header .menu {
        min-width: 300px;
    }

    header {
        padding: 10px 24px;
    }

    header.sticky {
        padding: 15px 24px;
    }

    section {
        position: relative;
        overflow: hidden;
    }

    .hero-page .gradient-v,
    .hero-page .gradient-orange {
        width: 400px;
        height: 400px;
    }

    .hero-page-headline .gradient-v {
        top: 10px;
        left: 100px;
    }

    .hero-page .gradient-orange {
        top: 10px;
        left: -200px;
    }

    .hero-page {
        align-items: center;
        gap: 10px;
        min-height: 400px;
    }

    .hero-page-headline {
        width: 258px;
    }

    .hero-page-headline h1 {
        width: 260px;
        font-size: 24px;
    }

    .tagline h2 {
        font-size: 24px;
    }

    .tagline-sub {
        width: 179px;
        height: 28px;
    }

    .tagline-sub h3 {
        font-size: 10px;
    }

    .hero-page-headline p {
        font-size: 13px;
        width: 258px;
    }

    .btn-2 {
        width: 178px;
        height: 39px;
        font-size: 10px;
        margin-top: 14px;
    }

    .work-preview-box {
        width: 283px;
        height: 197px;
    }

    .work-preview-box img {
        width: 221px;
        height: 153px;
    }

    .testimony-preview-box {
        width: 291px;
        height: 100%;
        padding: 25px;
    }

    .testimony-preview-box p {
        font-size: 10px;
    }

    .testimony-people img {
        width: 79px;
    }

    .testimony-people h5 {
        font-size: 16px;
    }

    .testimony-people h6 {
        font-size: 10px;
    }

    .services .gradient-orange {
        top: 600px;
        left: -300px;
    }

    .services {
        padding-top: 20px;
    }

    .services h1 {
        font-size: 32px;
        margin-bottom: 9px;
    }

    .services p {
        font-size: 11px;
        width: 278px;
        margin-bottom: 13px;
    }

    #service-img-ss {
        width: 253px;
        height: 120px;
    }
    .service-boxes {
        gap: 3px;
    }

    .service-box {
        gap: 3px;
    }

    .service-box img {
        width: 265px;
        height: 234px;
    }

    .about .gradient {
        top: 100px;
    }

    .about .gradient-orange {
        top: 100px;
    }

    .about .gradient {
        left: -300px;
        top: 700px;
    }

    .about h1 {
        font-size: 32px;
    }

    .about-datas {
        flex-direction: column;
    }

    .about-datas hr {
        height: 0px;
        width: 245px;
    }

    .about-headlines {
        width: 280px;
    }

    .about-headlines h1 {
        font-size: 24px;
    }

    .about-headlines p {
        font-size: 16px;
    }

    .about-img {
        gap: 10px;
    }

    .about-img div {
        gap: 10px;
    }

    .about-img img{
        width: 130px;
        height: 150px;
    }

    #about-img-short {
        height: 100px;
    }

    .work h1 {
        font-size: 24px;
    }

    .work hr {
        width: 265px;
    }

    .work-boxes {
        gap: 25px;
        margin-bottom: 25px;
    }

    .work-box {
        width: 265px;
        height: 280px;
        padding: 26px;
        gap: 15px;
    }

    .work-box img {
        width: 213px;
        height: 196px;
    }

    .work-tags {
        gap: 5px;
    }

    .work-tags p {
        padding: 5px;
        font-size: 13px;
    }

    .work .btn-2 {
        margin-bottom: 25px;
    }

    #f-hr, #bf-hr {
        width: 100%;
        margin: 0;
    }

    #f-hr {
        margin: 55px 24px 20px 24px;
    }

    .footer-callout {
        padding: 0px 27px 27px 27px;
    }

    .footer-callout div h5 {
        display: none;
    }

    .footer-callout a {
        font-size: 20px;
    }

    .footer-callout button {
        width: 132px;
        height: 50px;
        font-size: 16px;
        padding: 5px;
        margin-top: 0px;
    }

    .btn-callout i {
        font-size: 16px;
    }

    .bottom-footer {
        padding: 0px 24px 0px 24px;
        align-items: center;
    }

    .navigation a {
        font-size: 14px;
    }

    .copyright {
        flex-direction: column;
        margin-top: 25px;
    }

    /* Contact */
    .contact {
        padding: 0px 24px 24px 24px;
        text-align: center;
    }

    .contact .gradient-orange {
        top: 0px;
        left: -400px;
    }

    .contact .gradient {
        top: 200px;
        left: 150px;
    }
    
    .contact h1 {
        font-size: 28px;
    }

    .contact p {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .contact form input, .contact form textarea {
        font-size: 16px;
    }

   .contact form textarea {
        margin-bottom: 25px;
    }

}