/* === ESTRUTURA OFICIAL LOJA INTEGRADA === */

/* === CONFIGURAÇÕES GLOBAIS === */
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    color: #6f4843;
    background-color: #d4c7b1;
    line-height: 1.6;
}

/* Tema escuro (caso configurado no editor) */
.tema-escuro {
    background-color: #323232;
}

.tema-escuro .conteiner {
    background-color: #323232;
    color: #fff;
}

/* Tema transparente */
.tema-transparente .conteiner {
    background-color: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

/* === CONTAINER OFICIAL === */
.conteiner {
    background-color: #ffffff;
    min-width: 970px;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 0 10px rgba(0,0,0,0.1);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Container pequeno (quando configurado no editor) */
.layout-pequeno .conteiner {
    width: 980px;
    min-width: 980px;
    max-width: 980px;
}

/* === CLASSES DE COR OFICIAIS === */
.cor-principal {
    color: #d86b66;
}

.fundo-principal {
    background-color: #d86b66;
}

.borda-principal {
    border-color: #d86b66;
}

.cor-secundaria {
    color: #ae4d50;
}

.fundo-secundario {
    background-color: #ae4d50;
}

/* === TÍTULOS OFICIAIS === */
.titulo {
    font-family: 'Oswald', Arial, sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    color: #6f4843;
}

h1.titulo, h2.titulo, h3.titulo, h4.titulo {
    margin-bottom: 15px;
}

/* === CABEÇALHO === */
#cabecalho {
    background: #ffffff;
    border-bottom: 3px solid #d86b66;
    position: relative;
    z-index: 1000;
}

#cabecalho .conteiner {
    padding: 15px 20px;
}

/* Disposição do logo */
.logo-centro #cabecalho .logo {
    text-align: center;
    float: none;
}

.logo-esquerda #cabecalho .logo {
    float: left;
}

#cabecalho .logo {
    font-size: 28px;
    font-weight: bold;
    color: #6f4843;
    text-decoration: none;
    display: block;
    padding: 10px 0;
}

#cabecalho .busca {
    float: right;
    width: 300px;
    margin-top: 10px;
    position: relative;
}

.logo-centro #cabecalho .busca {
    float: left;
    margin-left: 0;
}

#cabecalho .busca input {
    width: 80%;
    padding: 10px 40px 10px 15px;
    border: 2px solid #f2e1c7;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#cabecalho .busca input:focus {
    border-color: #d86b66;
    -webkit-box-shadow: 0 0 0 3px rgba(216, 107, 102, 0.1);
    -moz-box-shadow: 0 0 0 3px rgba(216, 107, 102, 0.1);
    box-shadow: 0 0 0 3px rgba(216, 107, 102, 0.1);
}

#cabecalho .busca button {
    position: absolute;
    right: 0px;
    top: 50%;
    margin-top: -16px;
    background: none;
    border: none;
    color: #d86b66;
    font-size: 16px;
    cursor: pointer;
}

#cabecalho .acoes {
    float: right;
    margin-top: 10px;
}

#cabecalho .acoes a {
    display: inline-block;
    margin-left: 20px;
    color: #6f4843;
    text-decoration: none;
    font-size: 14px;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

#cabecalho .acoes a:hover {
    color: #d86b66;
}

#cabecalho .minicart {
    position: relative;
}

#cabecalho .minicart .contador {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #d86b66;
    color: #ffffff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 10px;
    min-width: 18px;
    text-align: center;
}

/* === SEÇÃO BANNERS === */
.secao-banners {
    background: #f2e1c7;
    padding: 20px 0;
}

.secao-banners .conteiner {
    background: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

/* Banner principal usando FlexSlider */
.banner .flexslider {
    border: none;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
    -webkit-box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.banner .flexslider .slides li {
    position: relative;
}

.banner .flexslider .slides img {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
}

.banner .info-banner {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(0,0,0,0.7);
    color: #ffffff;
    padding: 15px 25px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    font-size: 18px;
    max-width: 50%;
}

/* Banners secundários */
.banners-secundarios {
    margin-top: 30px;
}

.banners-secundarios .banner-item {
    margin-bottom: 20px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    overflow: hidden;
    -webkit-transition: -webkit-transform 0.3s ease;
    -moz-transition: -moz-transform 0.3s ease;
    -o-transition: -o-transform 0.3s ease;
    transition: transform 0.3s ease;
}

.banners-secundarios .banner-item:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
}

.banners-secundarios .banner-item img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

/* === MENUS OFICIAIS === */
.menu {
    background: #d86b66;
    padding: 0;
}

/* Menu superior */
.menu.superior {
    background: #d86b66;
}

.menu.superior .nivel-um {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.menu.superior .nivel-um li {
    position: relative;
    display: inline-block;
    vertical-align: top;
}

.menu.superior .nivel-um > li > a {
    display: block;
    padding: 15px 20px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 13px;
}

.menu.superior .nivel-um > li > a:hover {
    background: #ae4d50;
    color: #ffffff;
}

/* Submenu nível 2 */
.menu.superior .nivel-dois {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 200px;
    -webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    list-style: none;
    margin: 0;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.menu.superior .nivel-um li:hover .nivel-dois {
    opacity: 1;
    visibility: visible;
}

.menu.superior .nivel-dois a {
    display: block;
    padding: 8px 20px;
    color: #6f4843;
    text-decoration: none;
    font-size: 12px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.menu.superior .nivel-dois a:hover {
    background: #f2e1c7;
    color: #d86b66;
    padding-left: 25px;
}

/* Menu ofertas destacado */
.menu.superior .categoria-ofertas > a {
    background: #ae4d50;
    position: relative;
}

.menu.superior .categoria-ofertas > a:before {
    content: "🔥";
    margin-right: 5px;
}

/* Menu lateral */
.menu.lateral {
    background: #ffffff;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    overflow: hidden;
    -webkit-box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.menu.lateral .nivel-um {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu.lateral .nivel-um > li {
    border-bottom: 1px solid #f2e1c7;
}

.menu.lateral .nivel-um > li:last-child {
    border-bottom: none;
}

.menu.lateral .nivel-um > li > a {
    display: block;
    padding: 15px 20px;
    color: #6f4843;
    text-decoration: none;
    font-weight: 500;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
}

.menu.lateral .nivel-um > li > a:hover {
    background: #f2e1c7;
    color: #d86b66;
    padding-left: 25px;
}

/* === CORPO PRINCIPAL === */
#corpo {
    padding: 40px 0;
    background: transparent;
}

#corpo .conteiner:before,
#corpo .conteiner:after {
    content: "";
    display: table;
}

#corpo .conteiner:after {
    clear: both;
}

/* Coluna lateral */
.coluna-lateral {
    width: 250px;
    float: left;
}

.coluna-direita .coluna-lateral {
    float: right;
}

.coluna-esquerda .coluna-lateral {
    float: left;
}

/* Conteúdo principal */
.conteudo-principal {
    margin-left: 280px;
}

.coluna-direita .conteudo-principal {
    margin-left: 0;
    margin-right: 280px;
}

.sem-coluna .conteudo-principal {
    margin-left: 0;
    margin-right: 0;
}

/* === LISTAGEM DE PRODUTOS OFICIAL === */
.listagem {
    margin: 0;
    padding: 0;
}

.listagem > ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.listagem-linha {
    margin-bottom: 30px;
}

.listagem-linha .row-fluid {
    list-style: none;
    margin: 0 -15px;
    padding: 0;
}

.listagem-linha .row-fluid:before,
.listagem-linha .row-fluid:after {
    content: "";
    display: table;
}

.listagem-linha .row-fluid:after {
    clear: both;
}

/* Configurações para diferentes quantidades por linha */
.produtos-por-linha-2 .listagem-linha .row-fluid li {
    width: 48%;
    float: left;
    margin-right: 2%;
}

.produtos-por-linha-2 .listagem-linha .row-fluid li:nth-child(2n) {
    margin-right: 0;
}

.produtos-por-linha-3 .listagem-linha .row-fluid li {
    width: 32%;
    float: left;
    margin-right: 2%;
}

.produtos-por-linha-3 .listagem-linha .row-fluid li:nth-child(3n) {
    margin-right: 0;
}

.produtos-por-linha-4 .listagem-linha .row-fluid li {
    width: 23%;
    float: left;
    margin-right: 2.66%;
}

.produtos-por-linha-4 .listagem-linha .row-fluid li:nth-child(4n) {
    margin-right: 0;
}

.listagem-linha .row-fluid li {
    padding: 0 15px;
    margin-bottom: 30px;
}

/* Item do produto */
.listagem-item {
    background: #ffffff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
    -webkit-box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
}

.listagem-item:hover {
    -webkit-box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    -moz-box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.listagem-item .imagem {
    position: relative;
    overflow: hidden;
}

.listagem-item .imagem img {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
}

.listagem-item .tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #d86b66;
    color: #ffffff;
    padding: 5px 12px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.listagem-item .acoes-rapidas {
    position: absolute;
    top: 15px;
    right: 15px;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.listagem-item:hover .acoes-rapidas {
    opacity: 1;
}

.listagem-item .acoes-rapidas .botao {
    width: 35px;
    height: 35px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    color: #6f4843;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    line-height: 35px;
    font-size: 14px;
    margin-bottom: 8px;
}

.listagem-item .acoes-rapidas .botao:hover {
    background: #d86b66;
    color: #ffffff;
}

.listagem-item .info {
    padding: 20px;
}

.listagem-item .nome {
    font-size: 16px;
    font-weight: 600;
    color: #6f4843;
    margin-bottom: 10px;
    line-height: 1.3;
}

.listagem-item .preco {
    margin-bottom: 15px;
}

.listagem-item .preco .atual {
    font-size: 20px;
    font-weight: bold;
    color: #d86b66;
}

.listagem-item .preco .anterior {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
}

.listagem-item .quantidade {
    margin-bottom: 15px;
}

.listagem-item .quantidade:before,
.listagem-item .quantidade:after {
    content: "";
    display: table;
}

.listagem-item .quantidade:after {
    clear: both;
}

.listagem-item .quantidade button {
    width: 28px;
    height: 28px;
    border: 1px solid #f2e1c7;
    background: #ffffff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    color: #6f4843;
    float: left;
    margin-right: 5px;
    text-align: center;
    line-height: 26px;
}

.listagem-item .quantidade input {
    width: 45px;
    text-align: center;
    border: 1px solid #f2e1c7;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    padding: 5px;
    font-size: 14px;
    float: left;
    margin-right: 5px;
}

.listagem-item .acoes:before,
.listagem-item .acoes:after {
    content: "";
    display: table;
}

.listagem-item .acoes:after {
    clear: both;
}

/* === BOTÕES OFICIAIS === */
.botao {
    padding: 10px 20px;
    border: 2px solid #f2e1c7;
    background: #ffffff;
    color: #6f4843;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    float: left;
    margin-right: 8px;
}

.botao:hover {
    border-color: #d86b66;
    color: #d86b66;
}

/* Botão principal */
.botao.principal {
    background: #d86b66;
    border-color: #d86b66;
    color: #ffffff;
}

.botao.principal:hover {
    background: #ae4d50;
    border-color: #ae4d50;
    color: #ffffff;
}

/* Tamanhos de botão */
.botao.pequeno {
    padding: 6px 12px;
    font-size: 10px;
}

.botao.grande {
    padding: 15px 30px;
    font-size: 14px;
}

/* Botão WhatsApp */
.botao.whatsapp {
    background: #25D366;
    border-color: #25D366;
    color: #ffffff;
    padding: 10px;
    min-width: 45px;
}

.botao.whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
}

/* === RODAPÉ === */
#rodape {
    background: #6f4843;
    color: #ffffff;
    padding: 40px 0 20px;
    margin-top: 40px;
}

#rodape .conteiner {
    background: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

#rodape .colunas:before,
#rodape .colunas:after {
    content: "";
    display: table;
}

#rodape .colunas:after {
    clear: both;
}

#rodape .colunas .coluna {
    width: 23%;
    float: left;
    margin-right: 2.66%;
    margin-bottom: 30px;
}

#rodape .colunas .coluna:nth-child(4n) {
    margin-right: 0;
}

#rodape h3 {
    color: #f2e1c7;
    margin-bottom: 15px;
    font-size: 16px;
}

#rodape ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#rodape ul li {
    margin-bottom: 8px;
}

#rodape ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

#rodape ul li a:hover {
    color: #d86b66;
}

#rodape .redes-sociais {
    margin-top: 15px;
}

#rodape .redes-sociais a {
    width: 35px;
    height: 35px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #d86b66;
    color: #ffffff;
    display: inline-block;
    text-align: center;
    line-height: 35px;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 16px;
    margin-right: 10px;
}

#rodape .redes-sociais a:hover {
    background: #ae4d50;
}

#rodape .copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    opacity: 0.8;
}

/* === NEWSLETTER === */
.newsletter {
    background: #d86b66;
    color: #ffffff;
    padding: 40px 0;
    text-align: center;
    margin: 40px 0;
}

.newsletter .conteiner {
    background: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.newsletter h3 {
    margin-bottom: 10px;
    font-size: 24px;
}

.newsletter p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.newsletter form {
    max-width: 400px;
    margin: 0 auto;
}

.newsletter form:before,
.newsletter form:after {
    content: "";
    display: table;
}

.newsletter form:after {
    clear: both;
}

.newsletter input {
    width: 70%;
    float: left;
    padding: 12px;
    border: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    margin-right: 2%;
}

.newsletter .botao {
    width: 28%;
    float: left;
    background: #ffffff;
    color: #d86b66;
    border: none;
    padding: 12px 25px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.newsletter .botao:hover {
    background: #f2e1c7;
}

/* === WHATSAPP FLUTUANTE === */
.whatsapp-flutuante {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: #25D366;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #ffffff;
    font-size: 24px;
    text-decoration: none;
    -webkit-box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    -moz-box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 55px;
}

.whatsapp-flutuante:hover {
    background: #128C7E;
    color: #ffffff;
    text-decoration: none;
}

/* === DEPOIMENTOS === */
.depoimentos {
    background: #f2e1c7;
    padding: 40px 0;
    margin: 40px 0;
}

.depoimentos .conteiner {
    background: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.depoimentos .titulo {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
}

.depoimentos .grid:before,
.depoimentos .grid:after {
    content: "";
    display: table;
}

.depoimentos .grid:after {
    clear: both;
}

.depoimento {
    background: #ffffff;
    padding: 25px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    text-align: center;
    -webkit-box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    width: 30%;
    float:left;
    margin-right: 5%;
    margin-bottom: 25px;
}

.depoimento:nth-child(3n) {
    margin-right: 0;
}

.depoimento .estrelas {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 16px;
}

.depoimento .texto {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.5;
    color: #6f4843;
}

.depoimento .autor {
    font-weight: bold;
    color: #d86b66;
    font-size: 14px;
}

.busca-mobile {
    display: flex !important;
}

/* === RESPONSIVO === */
@media (max-width: 768px) {
    .conteiner {
        min-width: auto;
        max-width: 100%;
        padding: 0 15px;
    }

    #cabecalho .conteiner {
        padding: 10px 15px;
    }

    #cabecalho .logo,
    #cabecalho .busca,
    #cabecalho .acoes {
        float: none;
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }

    .menu.superior .nivel-um li {
        display: block;
        width: 100%;
    }

    .menu.superior .nivel-um > li > a {
        text-align: center;
        padding: 12px 15px;
    }

    #corpo .conteiner {
        /* Reset flex para mobile */
    }

    .coluna-lateral {
        width: 100%;
        float: none;
        margin-bottom: 30px;
    }

    .conteudo-principal {
        margin-left: 0;
        margin-right: 0;
    }

    .listagem-linha .row-fluid li {
        width: 100% !important;
        float: none;
        margin-right: 0;
        max-width: 400px;
        margin: 0 auto 20px;
    }

    .newsletter form {
        /* Reset para mobile */
    }

    .newsletter input,
    .newsletter .botao {
        width: 100%;
        float: none;
        margin: 0 0 10px 0;
    }

    #rodape .colunas .coluna {
        width: 100%;
        float: none;
        margin-right: 0;
        text-align: center;
    }

    .depoimento {
        width: 100%;
        float: none;
        margin-right: 0;
    }

    .whatsapp-flutuante {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 20px;
        line-height: 50px;
    }
}

/* === ANIMAÇÕES === */
.fade-in {
    -webkit-animation: fadeIn 0.8s ease-in;
    -moz-animation: fadeIn 0.8s ease-in;
    -o-animation: fadeIn 0.8s ease-in;
    animation: fadeIn 0.8s ease-in;
}

@-webkit-keyframes fadeIn {
    from { opacity: 0; -webkit-transform: translateY(20px); }
    to { opacity: 1; -webkit-transform: translateY(0); }
}

@-moz-keyframes fadeIn {
    from { opacity: 0; -moz-transform: translateY(20px); }
    to { opacity: 1; -moz-transform: translateY(0); }
}

@-o-keyframes fadeIn {
    from { opacity: 0; -o-transform: translateY(20px); }
    to { opacity: 1; -o-transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-up {
    -webkit-animation: slideUp 0.6s ease-out;
    -moz-animation: slideUp 0.6s ease-out;
    -o-animation: slideUp 0.6s ease-out;
    animation: slideUp 0.6s ease-out;
}

@-webkit-keyframes slideUp {
    from { opacity: 0; -webkit-transform: translateY(30px); }
    to { opacity: 1; -webkit-transform: translateY(0); }
}

@-moz-keyframes slideUp {
    from { opacity: 0; -moz-transform: translateY(30px); }
    to { opacity: 1; -moz-transform: translateY(0); }
}

@-o-keyframes slideUp {
    from { opacity: 0; -o-transform: translateY(30px); }
    to { opacity: 1; -o-transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}