:root {
    --font-title: 'Bebas Neue', sans-serif;
    --font-base: 'DM Sans', sans-serif;

    --color-primary: #FF3347;
    --color-dark: #0C0A09;
    --color-dark-surface: #2B2422;
    --color-surface: #7C6D67;
    --color-light: #FBFAF9;
    --color-light-surface: #E8E4E3;

    --space-1: 0.25em;
    --space-2: 0.5em;
    --space-3: 0.75em;
    --space-4: 1em;
    --space-5: 1.25em;
    --space-6: 1.5em;
    --space-7: 1.75em;
    --space-8: 2.5em;
    --space-9: 3em;
    --space-10: 4em;
    --space-11: 5em;
    --space-12: 6em;

    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 2rem;
    --radius-full: 62.4375rem;

    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;

    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;

    --shadow-sm: rgba(10, 10, 10, 0.25);
    --shadow-md: rgba(10, 10, 10, 0.25);
    --shadow-lg: rgba(10, 10, 10, 0.375);
    --shadow-xl: rgba(10, 10, 10, 0.5);
}



body {
    background: #2a1a0e ; 
    color: #fff5e6;      /* cor do texto creme */
    font-family: sans-serif;
    }

.logo {
    font-family: 'bebas neue', sans-serif;
    letter-spacing: 3px;
    font-size: 3rem;
    color: #ff3e6c;  
    font-weight: bold;
    }

    .logo span { color: var(--branco-creme); }

    button:hover {
        background: #ff3e6c;
        transform: translateY(-3px);  
    }

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 3rem;
    background: #2a1a0e;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;

}

.menu-grind {
    display: grid;
    grid-template-columns: repeat(auto-fill, minimax(270px, 1fr));
    gap: 2rem;
}
   
nav {
    background: var(--marrom);
}
nav .logo {
    color: var(--rosa);
}
.btn {
    background: var(--rosa);
    color: var(--branco-creme);
}

h1 {
    font-family: var(--font-titulo);
    font-size: 5rem;
}
p {
    font-family: var(--font-texto);
}

nav a {
    text-decoration: none;
    color: var(--branco-creme);
    font-size: .9rem;
    text-transform: uppercase;
    transition: color .2s; 
}
nav a:hover {
    color: var(--rosa);
}

.hero {
    min-height: 100vh;
    padding-top: 5rem;
    background: var(--marrom);
    display:grid;
    grid-template-columns: 1fr 1fr;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    color: var(--branco-creme);
}
.hero-text h1 {
    font-family: 'bebas neue', sans-serif;
    font-size: 5rem;
    line-height: 1;
}

.hero-text p {
    font-family: 'bebas neue', sans-serif;
    font-size: 5rem;
    line-height: 1;
}

.hero-text em {
    color: var(--rosa);        

}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
