* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

:root {
    --bg-color: #1a1a1a;
    --text-light: #eeeeee;
    --text-muted: #676767;
    --accent-color: #D4A373;
    --accent-hover: #b5895e;
    --section-bg: #1a1a1a;
}

body {
    background-color: var(--bg-color);
    color: var(--text-light);
    display: flex;
    justify-content: center;
}

.page-container {
    width: 100%;
    max-width: 1920px;
    min-height: 1080px;
    background-color: var(--bg-color);
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,1);
}

header {
    position: sticky;
    top: 0;
    width: 100%;
    height: 60px;
    background-color: rgba(0, 0, 0, 1);
    border-bottom: 5px solid var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--accent-color);
}

.hero {
    height: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 150px;
    text-align: center;
    border-bottom: 20px solid var(--bg-color);
}

.hero h1 {
    font-size: 64px;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.hero h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.hero p {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-1 {background : linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.75)), url('https://file.garden/X6c78ua95myVyl1W/cinza.jpg') center/cover;}
.hero-2 {background : linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.75)), url('https://file.garden/X6c78ua95myVyl1W/bolsapreta.jpg') center/cover;}
.hero-3 {background : linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.75)), url('https://file.garden/X6c78ua95myVyl1W/ciano.jpg') center/cover;}

.btn-group {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 700px;
    gap: 20px;
    padding: 0px;
    background-color: var(--bg-color);
    padding-bottom: 20px;
}

.split-section h3 {
    padding-top: 250px;
}

.split-item {
    background-color: var(--section-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 0px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.item-1 { background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.75)), url('https://file.garden/X6c78ua95myVyl1W/xicra1.jpg') center/cover; }
.item-2 { background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.75)), url('https://file.garden/X6c78ua95myVyl1W/hearts1.jpg') center/cover; }
.item-3 { background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.75)), url('https://file.garden/X6c78ua95myVyl1W/duplomesa.jpg') center/cover; }
.item-4 { background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.75)), url('https://file.garden/X6c78ua95myVyl1W/salmaoacinzentado.jpg') center/cover; }

.split-item h3 {
    font-size: 42px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.split-item p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 18px;
}

.link-comprar {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.link-comprar:hover {
    text-decoration: underline;
}

.section-2 {
    padding-bottom: 0px;
}

footer {
    position: relative;
    bottom: 0;
    width: 100%;
    background-color: #0a0a0a;
    padding: 60px 50px;
    border-top: 1px solid #333;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    list-style: none;
}

.footer-col h4 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--text-light);
}