/* RESET E CONFIGURAÇÕES GLOBAIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-color: #ffffff;
}

body {
    background-color: #111111;
    color: #EAEAEA;
    font-family: 'Space Grotesk', sans-serif;
    -webkit-font-smoothing: antialiased;
}

h1 {
    padding: 0;
    margin: 0;
    word-spacing: normal;
    font-size: 5rem;
    font-weight: 400;
    lineheight: 1.1;
    color: #A3A3A3;
}

.request-quote {
    width: max-content;
    height: max-content;
    border-radius: 3rem;
    border: 1px solid #525252;
    background-color: transparent;
    color: #EAEAEA;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    padding: 1rem;
    transition: background-color 0.3s ease, color 1s ease;
}

.request-quote:hover {
    background-color: #EAEAEA;
    color: #111111;
    box-shadow: 0px 0px 100px #ffffff80;
    transition: background-color 0.3s ease, box-shadow 2s ease;
}

/* CONTAINER PRINCIPAL */
.container {
    max-width: 1280px;

    margin: 0 auto;
    padding: 0 40px;
}

/* HEADER */
header {
    padding-top: 40px;
    padding-bottom: 40px;
}

.header-content {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
}

.logo {
    font-size: 1.2rem;
    font-weight: 500;
}

a {
    color: #EAEAEA;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #FFFFFF;
}

nav a {
    margin-left: 32px;
    font-size: 1rem;
}

/* HERO */
.hero {
    height: 1080px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /*background-image: url('./assets/photos/photo1.jpeg');
    background-repeat: no-repeat;
    background-size: auto;
    background-position: right;*/
}

.hero-main {
    max-width: 50vw;
}

.hero-intro {
    height: 100px;
    display: flex;
    justify-content: left;
}

.hero-intro img {
    max-width: 50px;
    max-height: 50px;
    border-radius: 50%;
    margin: auto 0;
}


.hero-intro h2 {
    color: #7e7e7e;
    font-weight: 500;

    padding: 0;
    margin: 0;
    padding-left: 20px;
    margin: auto 0;
}

.hero-main p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 10px;
    margin-top: 30px;
    color: #7e7e7e;
    line-height: 1.5;
}

.hero-main strong {
    color: #ffffff;
    font-weight: 700;
}

.hero button {
    margin-top: 40px;
    margin-bottom: 40px;
}

.hero-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10rem;
    width: 100%;
}

.status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background-color: #22c55e; /* Verde */
    border-radius: 50%;
}



/* SEÇÃO ABOUT */
.about {
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
    max-width: 500px;
}

.about-text p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #A3A3A3;
    margin-bottom: 40px;
}

.cta-link {
    font-size: 1.1rem;
    font-weight: 500;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    max-height: 720px;
    object-fit: cover;
}

/* SEÇÃO WORK */
.work {
    padding-top: 100px;
    padding-bottom: 100px;
}


/* SEÇÃO CONTACT E FOOTER */
.contact {
    padding: 100px 40px;
    text-align: center;
}

.contact-content h2 {
    font-size: 6rem;
    font-weight: 500;
    color: #A3A3A3;
}

.contact-content h2 strong {
    color: #EAEAEA;
}

.contact-content p {
    color: #A3A3A3;
    max-width: 400px;
    margin: 24px auto 40px;
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1px; /* Para criar as linhas finas */
    background-color: #3f3f46;
    max-width: 700px;
    margin: 0 auto 100px;
    border: 1px solid #3f3f46;
    border-radius: 8px;
    overflow: hidden;
}

.btn {
    background-color: #27272a;
    padding: 20px 0;
    flex: 1;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #3f3f46;
}

footer {
    border-top: 1px solid #2d2d2d;
    padding-top: 30px;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #A3A3A3;
}

.social-icons a {
    margin-left: 20px;
    color: #A3A3A3;
    text-transform: uppercase;
}

/* RESPONSIVIDADE */
