:root {
    --id-primary: #2B0A17;
    --id-second: #841B43;
    --id-clean: #EBBBBB;
    --id-black: #1A1819;
    --id-white: #F9F3F4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.font-space-light {
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.font-space-regular {
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.font-space-bold {
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.font-inter-light {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.font-inter-regular {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.font-inter-bold {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}


body {
    background-color: var(--id-primary);
    color: var(--id-white);
    font-family: "Inter", sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

/* Header & Nav */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.logo-img {
    max-width: 80px;
    height: auto;
}

.nav-link {
    color: var(--id-clean) !important;
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero-section {
    background-image: url('../img/hero-mobile.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    width: 100%;
    height: 80vh;
    min-height: 500px;
}

.my-text-shadow {
    text-shadow: 2px 2px 8px rgba(132, 27, 67, 0.8);
    font-size: 3rem;
    line-height: 3rem;
}

mark {
    background-color: var(--id-second);
    color: var(--id-white);
    padding: 0.2em 0.5em;
    line-height: 1.6;
}

/* Banners & Cards */
.banner-card {
    margin: 0 auto 2rem;
    width: 100%;
}

figcaption {
    background-color: rgba(132, 27, 67, 0.3);
    border-radius: 0 0 8px 8px;
    margin-top: -5px;
}

/* Buttons */
.my-btn {
    background-color: var(--id-clean) !important;
    color: var(--id-primary) !important;
    font-weight: 700;
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
}

.my-btn:hover {
    background-color: var(--id-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Section Titles */
.section-title {
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--id-clean);
    margin-bottom: 2rem;
    font-weight: 700;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1rem;
}

.project-item {
    border-radius: 8px;
    transition: transform 0.3s;
    width: 100%;
    object-fit: cover;
}
.img-tools{
    margin-top: -3rem;
    width: 3rem;
}

/* Footer */
footer {
    border-top: 1px solid rgba(235, 187, 187, 0.1);
}



/* Tablets (min-width: 768px) */
@media (min-width: 768px) {

    .logo-img {
        max-width: 100px;
    }

    .my-text-shadow {
        font-size: 4rem;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        letter-spacing: 8px;
        font-size: 2.5rem;
    }
}

/* Desktops (min-width: 1024px) */
@media (min-width: 1024px) {
    body {
        background-image: url('../img/hero-desktop.png');
        background-size: cover;
        background-position: top center;
        background-repeat: no-repeat;
        height: 150vh;



    }

    .hero-section {
        background: transparent;
        height: 85vh;
        width: 30%;
        padding-left: 5rem;
    }

    .projects-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .about-content {
        font-size: 1.1rem;
        line-height: 1.8;
    }
}

/* Telas Grandes (min-width: 1400px) */
@media (min-width: 1400px) {
    .container {
        max-width: 1200px;
    }
}