/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Fundo responsivo */
body {
    background-image: url('stores/imagens/Home da Loja.jpg');
}

@media (max-width: 768px) {
    body {
        background-image: url('stores/imagens/Home da Loja Mobile.jpg');
    }
}

/* Container principal */
.notice-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    /* Suporte para viewport dinâmico com fallback */
    min-height: 100dvh;
    padding: 20px;
    padding-top: 80px; /* Adiciona espaço no topo para abaixar o conjunto */
    position: relative;
}

/* Wrapper para deslocar para a esquerda no desktop */
.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 800px;
    margin-left: -20%; /* Desloca 20% para a esquerda no desktop */
}

/* Logo e título */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
    max-width: 800px; /* Aumentado para aproveitar mais largura no desktop */
}

.logo-img {
    max-width: 425px;
    height: auto;
    margin-bottom: 0;
}

/* Container do vídeo */
.video-container {
    width: 100%;
    max-width: 800px; /* Aproveita mais largura no desktop */
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.main-video {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 15px; /* Bordas arredondadas */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background-color: #000;
}

/* Bloco de aviso */
.notice-block {
    width: 100%;
    max-width: 800px; /* Aumentado para aproveitar mais largura no desktop */
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
}

.notice-content {
    background-color: #121F4B;
    border: 3px solid white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    width: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    cursor: default;
    transition: transform 0.2s ease;
}

.notice-content:hover {
    transform: translateY(-2px);
}

.notice-title {
    color: #FF662B;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
}

.notice-text {
    color: white;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1.5;
    text-align: left;
}

.notice-text:last-of-type {
    margin-bottom: 25px;
}

/* Botão WhatsApp */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background-color: #1B5E20;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(27, 94, 32, 0.15);
    border: 2px solid transparent;
}

.whatsapp-btn:hover {
    background-color: #2E7D32;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 3px 12px rgba(27, 94, 32, 0.2);
    text-decoration: none;
}

.whatsapp-btn i {
    font-size: 18px;
}

/* Responsividade para tablets */
@media (max-width: 1024px) {
    .notice-container {
        padding: 20px;
    }
    
    .content-wrapper {
        margin-left: -10%; /* Reduz o deslocamento em tablets */
    }
    
    .logo-img {
        max-width: 365px;
    }
    
    .logo-container {
        max-width: 600px;
    }
    
    .video-container {
        max-width: 600px;
    }
    
    .notice-block {
        max-width: 600px;
    }
    
    .notice-title {
        font-size: 22px;
    }
    
    .notice-text {
        font-size: 15px;
    }
    
    .whatsapp-btn {
        font-size: 15px;
        padding: 12px 25px;
    }
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .notice-container {
        padding: 15px;
        padding-top: 0;
        padding-bottom: 80px; /* Margem do piso */
        align-items: center; /* Mantém centralizado no mobile */
        text-align: center;
        justify-content: flex-end; /* Move para a base */
    }
    
    .content-wrapper {
        margin-left: 0; /* Remove o deslocamento no mobile */
    }
    
    .logo-container {
        margin-bottom: 20px;
        max-width: 100%;
    }
    
    .logo-img {
        max-width: 360px;
    }
    
    .video-container {
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .notice-block {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .notice-content {
        padding: 30px 20px;
        text-align: center; /* Mantém texto centralizado no mobile */
    }
    
    .notice-title {
        font-size: 20px;
        margin-bottom: 18px;
    }
    
    .notice-text {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .notice-text:last-of-type {
        margin-bottom: 20px;
    }
    
    .whatsapp-btn {
        font-size: 14px;
        padding: 12px 20px;
    }
    
    .whatsapp-btn i {
        font-size: 16px;
    }
}

/* Responsividade para telas muito pequenas */
@media (max-width: 480px) {
    .notice-container {
        padding: 10px;
        padding-bottom: 60px;
    }
    
    .logo-container {
        margin-bottom: 15px;
    }
    
    .logo-img {
        max-width: 320px;
    }
    
    .video-container {
        margin-bottom: 15px;
    }
    
    .notice-content {
        padding: 25px 15px;
    }
    
    .notice-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .notice-text {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .whatsapp-btn {
        font-size: 13px;
        padding: 10px 18px;
    }
}

/* Ajustes para telas baixas */
@media screen and (max-width: 768px) and (max-height: 700px) {
    .notice-container {
        padding-top: 20px;
        padding-bottom: 40px;
    }
    
    .logo-img {
        max-width: 300px;
    }
    
    .notice-content {
        padding: 20px 15px;
    }
    
    .notice-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .video-container {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 768px) and (max-height: 500px) {
    .notice-container {
        padding-top: 10px;
        padding-bottom: 20px;
        justify-content: center;
    }
    
    .logo-container {
        margin-bottom: 10px;
    }
    
    .video-container {
        margin-bottom: 10px;
    }
    
    .notice-block {
        margin-bottom: 10px;
    }
    
    .notice-content {
        padding: 15px 10px;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container {
    animation: fadeInUp 0.8s ease-out;
}

.video-container {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.notice-block {
    animation: fadeInUp 0.8s ease-out 0.4s both;
} 