/* Reset e estilos globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f8f8f8;
    font-family: 'Inter', sans-serif;
}

/* DESKTOP - padrão */
.desktop {
    display: block;
    max-width: 1320px;
    margin: 0 auto;
}

.desktop img, .mobile img {
    width: 100%;
    height: auto;
    display: block;
}

/* MOBILE - escondido por padrão */
.mobile {
    display: none;
    padding: 40px 20px;
    max-width: 600px;
    margin: 0 auto;
    min-height: 100vh;
    color: #000;
}

.mobile h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.mobile p {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.mobile a {
    display: inline-block;
    background: #F7E733;
    color: #000;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 20px;
    font-weight: 500;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .desktop {
        display: none;
    }
    
    .mobile {
        display: block;
    }
}