/* Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    scroll-behavior: smooth;
}

/* Cabeçalho e Menu */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    max-height: 60px;
    width: auto;
    display: block;
}

.menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.menu a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
}

.menu a:hover {
    color: #ff6b6b;
}

/* Banner Principal (Hero Dividido) */
.hero-novo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 120px auto 40px auto;
    padding: 0 20px;
    gap: 40px;
}

.hero-texto {
    flex: 1;
    text-align: left;
}

.hero-texto h1 {
    font-size: 46px;
    color: #2f3542;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-texto p {
    font-size: 18px;
    color: #747d8c;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-imagem {
    flex: 1;
}

.hero-imagem img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    object-fit: cover;
}

/* Botões e Links Gerais */
.btn {
    background-color: #ff6b6b;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #ff4757;
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    transition: background 0.3s;
}

.btn-whatsapp:hover {
    background-color: #1ebd56;
}

.botoes-sociais {
    margin-top: 15px;
}

.btn-facebook {
    background-color: #1877f2;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    transition: opacity 0.3s;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    margin-right: 10px;
    transition: opacity 0.3s;
}

.btn-facebook:hover, .btn-instagram:hover {
    opacity: 0.8;
}

/* Seções Padrão */
section {
    padding: 60px 20px;
    text-align: center;
}

section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2f3542;
}

/* Cards de Serviços (Página Inicial) */
.cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0 auto;
    flex-wrap: wrap;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    flex: 1;
    min-width: 300px;
}

.card h3 {
    margin-bottom: 15px;
    color: #ff6b6b;
}

.card p {
    line-height: 1.6;
    color: #747d8c;
}

/* Seção Especial: Pegue e Monte */
.destaque-faixa {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
    padding: 80px 20px;
    margin: 40px 0;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.05);
}

.destaque-conteudo {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.destaque-conteudo.com-imagem {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.texto-pegue {
    flex: 1.5;
}

.texto-pegue h2 {
    color: #ff6b6b;
    margin-bottom: 15px;
    text-align: left;
}

.texto-pegue p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.imagem-pegue {
    flex: 1;
}

.imagem-pegue img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    object-fit: cover;
}

.passo-a-passo {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.passo {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.icone-passo {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: #ff6b6b;
    color: white;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50%;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.4);
}

.passo h4 {
    color: #2f3542;
    margin-bottom: 5px;
    font-size: 16px;
}

.passo p {
    font-size: 13px;
    margin-bottom: 0;
}

/* Galeria de Fotos */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.galeria-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.galeria-grid img:hover {
    transform: scale(1.03);
}

/* =========================================
   VITRINE DE PRODUTOS (LOJA DE BALÕES)
   ========================================= */
.produtos-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.produto-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.produto-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.produto-info h3 {
    color: #ff6b6b;
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 2px solid #fecfef;
    padding-bottom: 10px;
}

.cores-lista {
    font-size: 14px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
    background-color: #fff9fa;
    padding: 15px;
    border-radius: 8px;
    border: 1px dashed #ff9a9e;
    text-align: left;
}

.tabela-precos {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
    padding: 0;
}

.tabela-precos li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #333;
    font-size: 15px;
    text-align: left;
}

.tabela-precos li:last-child {
    border-bottom: none;
}

.tabela-precos li span {
    color: #747d8c;
}

.tabela-precos li strong {
    color: #2f3542;
    font-size: 16px;
}

.btn-comprar {
    background-color: #25d366;
    color: white;
    text-align: center;
    padding: 15px;
    text-decoration: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    display: block;
    transition: background 0.3s;
    margin-top: auto;
}

.btn-comprar:hover {
    background-color: #1ebd56;
}

/* Seção de Depoimentos */
.depoimentos-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.depoimento-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    flex: 1;
    min-width: 300px;
    position: relative;
    border-top: 5px solid #ff6b6b;
}

.estrelas {
    font-size: 20px;
    margin-bottom: 15px;
}

.texto-depoimento {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cliente-nome {
    font-weight: bold;
    color: #2f3542;
    font-size: 16px;
}

/* Layout do Contato (3 Caixas) */
.contato-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    flex-wrap: wrap;
}

.caixa-contato {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    flex: 1;
    min-width: 280px;
}

.caixa-contato h3 {
    margin-bottom: 20px;
    color: #2f3542;
    border-left: 4px solid #ff6b6b;
    padding-left: 10px;
}

.caixa-contato p {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
}

/* MODAL / LIGHTBOX (JAVASCRIPT) */
.modal {
    display: none; 
    position: fixed; 
    z-index: 200; 
    padding-top: 100px; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.9); 
}

.modal-conteudo {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 70vh;
    border-radius: 5px;
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {transform: scale(0)} 
    to {transform: scale(1)}
}

.fechar {
    position: absolute;
    top: 35px;
    right: 45px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.fechar:hover, .fechar:focus {
    color: #ff6b6b;
}

#legendaModal {
    margin: auto;
    display: block;
    width: 80%;
    text-align: center;
    color: #ccc;
    padding: 15px 0;
}

/* Rodapé */
footer {
    background-color: #2f3542;
    color: white;
    text-align: center;
    padding: 25px;
    margin-top: 60px;
}

/* =========================================
   ANIMAÇÕES E INTERAÇÕES ADICIONAIS
   ========================================= */
@keyframes flutuar {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.hero-imagem img {
    animation: flutuar 4s ease-in-out infinite;
}

/* Efeito Hover (Levantar) nos Cartões */
.card, .caixa-contato, .depoimento-card, .destaque-conteudo, .produto-card {
    transition: all 0.3s ease;
}

.card:hover, .caixa-contato:hover, .depoimento-card:hover, .produto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Classes para o Efeito de Surgimento */
.anima-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.anima-scroll.mostrar {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsividade Básica (Celulares) */
@media (max-width: 768px) {
    .hero-novo {
        flex-direction: column;
        text-align: center;
        margin-top: 100px;
    }
    .hero-texto {
        text-align: center;
    }
    .destaque-conteudo.com-imagem {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    .texto-pegue h2 {
        text-align: center;
    }
}