/* Cores para o modelo E-commerce (Wuffy Robot Puppy) */
:root {
    --primary-color: #1a1a1a; /* Cor Principal: Faixa Superior e Rodapé (Preto Suave) */
    --button-color: #1a1a1a; /* Cor do Botão preto */
    --text-color: #333;
    --light-bg: #ffffff; /* Cor de Fundo Principal: Meio da página (Branco) */
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

body {
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Faixa Superior com Frase */
.top-bar {
    background-color: var(--primary-color);
    padding: 8px 15px; /* Faixa mais fina */
    text-align: center;
    color: var(--white);
    font-size: 0.9em;
    font-weight: 500;
}

/* Cabeçalho Principal (Logo) */
.main-header {
    padding: 20px 15px;
    text-align: center;
}

.header-logo {
    max-width: 180px; /* Tamanho da logo */
    height: auto;
}

.main-container {
    flex-grow: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    background-color: var(--light-bg); /* Fundo do meio da página */
}

/* Imagem do Produto */
.product-image {
    max-width: 90%;
    height: auto;
    margin-bottom: 25px;
    border-radius: 12px;
}

/* Hook (Frase de Impacto) */
.hook-text {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 30px;
    padding: 0 10px;
}

/* Seletor de País */
.country-selector {
    margin-top: 30px;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
}

.selector-title {
    font-size: 1.5em;
    color: var(--text-color);
    margin-bottom: 20px;
}

.country-btn {
    display: block;
    width: 100%;
    padding: 12px 18px;
    margin-bottom: 15px;
    text-decoration: none;
    color: var(--white);
    font-size: 1.3em;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.1s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: var(--button-color); /* Cor do Botão (Laranja Vibrante) */
}

.country-btn:last-child {
    margin-bottom: 0;
}

.country-btn:hover {
    background-color: #FF8555; /* Tom mais claro para hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Rodapé */
.footer {
    margin-top: 40px;
    padding: 20px;
    background-color: var(--primary-color); /* Preto Suave */
    font-size: 0.8em;
    color: var(--white); /* Branco */
    text-align: center;
    border-top: 1px solid #333;
}

.copyright {
    margin-bottom: 5px;
}

.disclaimer {
    max-width: 80%;
    margin: 0 auto;
    line-height: 1.4;
    color: var(--white); /* Branco */
}

/* Classe para SEO Oculto - Uso de display: none é o método mais seguro */
.seo-hidden {
    display: none;
}

/* Desktop/Tablet - Ajustes de layout */
@media (min-width: 768px) {
    .main-container {
        padding: 40px;
    }

    .product-image {
        max-width: 70%;
    }

    .country-selector {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .selector-title {
        width: 100%;
        margin-bottom: 25px;
    }

    .country-btn {
        width: 48%;
        margin-bottom: 0;
    }
}
