/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Montserrat:wght@400;500;700&display=swap');

/* --- CSS Variables (Paleta de Colores) --- */
:root {
    --primary-color: #E31B75; /* O Rosa-Magenta da Logo */
    --secondary-color: #3B2A2F; /* O Marrom-Escuro da Logo */
    --base-color: #FFFFFF; /* Branco puro */
    --light-pink: #FADADD; /* O rosa claro antigo, para fundos suaves */
    --text-color: #333333;
    --white: #FFFFFF;
}

/* --- Reset e Estilos Globais --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--base-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* PREVENÇÃO DE BARRA HORIZONTAL (AOS) */
html, body {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Aplica a todas as imagens, EXCETO as que estão dentro do slider */
img:not(image-comparison-slider *) {
    max-width: 100%;
    display: block;
}

h1, h2 {
    font-family: 'Great Vibes', cursive;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 1rem;
}

h2 {
    font-family: 'Great Vibes', cursive;
    color: var(--primary-color); /* Usa o novo rosa */
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem; /* Ajuste se necessário */
}

section {
    padding: 4rem 2rem;
}

/* --- Header e Navegação --- */
header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--base-color); /* Fundo branco */
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    
    height: 70px; /* Header mais curto */
    text-align: center;
}

header .logo-link {
    display: inline-block;
    background-color: white; /* O círculo branco */
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    
    /* O "encaixe" */
    position: relative;
    top: 15px; /* "Pendura" o logo 25px para baixo do topo */
    
    /* O "tamanho" */
    width: 120px; /* Tamanho do círculo */
    height: 120px; /* Tamanho do círculo */
    
    padding: 5px; /* Espaço DENTRO do círculo */
    
    /* Limpa estilos antigos */
    margin-top: 0;
}

header .logo-img {
    height: 100%; /* Preenche o padding do círculo */
    width: 100%; /* Preenche o padding do círculo */
    object-fit: contain;
}

/* --- Seção Hero --- */
#inicio {
    min-height: 70vh; /* MUDANÇA: Mais estreito (era 75vh) */
    display: flex;
    justify-content: center;
    text-align: center;
    
    margin-top: 0;
    padding-top: 120px; /* MUDANÇA: Mais afastado do logo (era 100px) */
    
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/Macarons.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
}

#inicio .hero-content {
      background-color: transparent; /* Remove o fundo marrom */
      padding: 2rem;
      border-radius: 10px;
}

    #inicio h1 {
      font-family: 'Great Vibes', cursive;
      font-size: 4rem; /* Um pouco menor para melhor estética */
      color: var(--white);
      margin-bottom: 2rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      line-height: 1.2; /* Adiciona espaçamento entre as linhas */
    }
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.button-primary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color: 0.3s ease, transform 0.3s ease;
    background-color: var(--primary-color);
    color: var(--white);
    border: none; /* Remove borda padrão do botão */
    cursor: pointer; /* Garante o cursor de ponteiro */
}

.button-primary:hover {
    background-color: #4CAF50; /* Verde de contraste */
    transform: translateY(-3px);
}

.button-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color: 0.3s ease, transform 0.3s ease;
    background-color: transparent;
    border: 2px solid var(--white); /* Borda branca para maior destaque */
    color: var(--white); /* Texto branco para maior destaque */
}

.button-secondary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* --- Seção Encomendas --- */
#encomendas {
    text-align: center;
}

#encomendas p {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.button-whatsapp {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color: 0.3s ease, transform 0.3s ease;
}

.button-whatsapp:hover {
    background-color: #4CAF50; /* Verde de contraste */
    transform: translateY(-3px);
}

/* --- Responsividade para o Botão de Orçamento --- */
@media (max-width: 768px) {
    .button-whatsapp {
        padding: 1rem 1.5rem; /* Reduz o padding horizontal */
        font-size: 0.9rem;    /* Reduz um pouco a fonte */
    }
}

/* --- Seção Promo Natal --- */
#natal-promo {
    padding: 4rem 2rem;
    overflow: visible; /* Permite que a imagem "vaze" para cima */
}

.promo-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.promo-text {
    text-align: left;
}

.promo-title {
    font-family: 'Great Vibes', cursive;
    font-size: 3.5rem;
    color: var(--secondary-color);
    text-align: left;
    margin-bottom: 0.5rem;
}

.promo-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 1rem;
}

.promo-text p {
    margin-bottom: 2rem;
    color: #555;
}

.promo-image img {
    width: 100%;
    height: 350px; /* Altura fixa adicionada */
    object-fit: cover; /* Garante que a imagem preencha o espaço sem distorcer */
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    margin-top: -50px;
}

/* Responsividade para a seção de Natal */
@media (max-width: 768px) {
    .promo-grid {
        grid-template-columns: 1fr; /* Coluna única */
        text-align: center;
    }

    .promo-text {
        text-align: center;
    }

    .promo-title, .promo-subtitle {
        text-align: center;
    }

    .promo-image img {
        margin-top: 2rem; /* Remove a margem negativa e adiciona um espaço */
    }
}

/* --- Seção Nossas Especialidades (Tabs) --- */
#nosso-espaco {
    text-align: center;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.tab-button {
    padding: 0.8rem 1.5rem;
    border: none;
    background-color: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #888;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
    top: 1px; /* Alinha com a borda da nav */
}

.tab-button:hover {
    color: var(--secondary-color);
}

.tab-button.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-pane {
    display: none; /* Esconde todas as abas por padrão */
    text-align: center;
    animation: fadeIn 0.5s;
}

.tab-pane.active {
    display: block; /* Mostra apenas a aba ativa */
}

.tab-pane p {
    max-width: 700px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
}

/* Reutiliza o estilo da galeria, mas garante que está dentro da seção */
#nosso-espaco .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

#nosso-espaco .gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Centraliza as 3 imagens do Cantinho */
#nosso-espaco .cantinho-gallery-grid {
    display: flex;
    flex-wrap: wrap; /* Permite que as imagens quebrem a linha em telas menores */
    justify-content: center; /* Centraliza as imagens */
    gap: 1.5rem; /* Mantém o espaçamento */
    max-width: 900px; /* Limita a largura para que não se espalhem demais */
    margin: 0 auto; /* Centraliza o container flex */
}

#nosso-espaco .cantinho-gallery-grid img {
    max-width: 300px; /* Limita o tamanho individual da imagem */
    width: 100%; /* Garante que a imagem seja responsiva dentro do max-width */
}

/* --- Botão Flutuante do WhatsApp --- */
#floating-whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* Cor oficial do WhatsApp */
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

#floating-whatsapp-button:hover {
    transform: scale(1.1);
}

#floating-whatsapp-button img {
    width: 35px; /* Ajusta o tamanho do ícone dentro do círculo */
    height: auto;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Seção Visite --- */
#visite {
    text-align: center;
    
    /* 1. Opacidade aumentada (mantém 0.8) */
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/Morango do Amor.jpg');
    
    /* 2. MUDANÇA: Voltando para 'cover' para parar a repetição */
    background-size: cover;
    /* Linha 'background-repeat: no-repeat;' REMOVIDA */
    
    background-position: center;
    padding: 4rem 2rem;
    border-top: 3px solid var(--primary-color);
}

/* Força o texto da seção 'Visite' a ficar branco */
#visite h2 {
    color: var(--white) !important; /* Força a cor branca */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Sombra para legibilidade */
}

#visite p {
    color: var(--white) !important; /* Força a cor branca */
    opacity: 0.9;
}

#visite .map-container {
    /* 3. A SOMBRA PRETA SUAVE */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    
    border-radius: 8px; /* Mantém o arredondamento */
}

#map-placeholder {
    width: 100%;
    height: 400px;
    background-color: #e0e0e0;
    border-radius: 8px;
}

/* --- Feed do Instagram --- */
#instagram-feed {
    text-align: center;
}

/* Substitui a regra antiga do grid */
.instagram-grid {
    display: grid;
    grid-template-columns: 1fr; /* 1 coluna no celular */
    gap: 1rem;
    margin-top: 2rem;
}

.instagram-post {
    position: relative; /* Essencial para posicionar os ícones */
    display: block;
    overflow: hidden; /* Garante que o zoom do hover não saia da caixa */
    border-radius: 8px; /* Cantos arredondados como o concorrente */
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease; /* Efeito de zoom */
}

/* O efeito de zoom "mexida" que você pediu */
.instagram-post:hover img {
    transform: scale(1.05);
}

/* Estilo base para os ícones */
.instagram-post i {
    position: absolute;
    color: white;
    font-size: 1.2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Sombra para legibilidade */
    pointer-events: none; /* Para não atrapalhar o clique no link */
}

/* Ícone do Instagram (canto inferior esquerdo) */
.icon-instagram {
    bottom: 10px;
    left: 10px;
}

/* Ícone de Tipo (Vídeo/Galeria) (canto superior direito) */
.icon-type {
    top: 10px;
    right: 10px;
}

/* --- Seção de Feedbacks --- */
#feedback-section {
    background-color: var(--primary-color);
    padding: 4rem 2rem;
}

.feedback-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 2rem auto 0 auto;
}

.feedback-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
}

.feedback-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feedback-card-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.feedback-card-author h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

#feedback-section h2 {
    color: var(--white);
}

.feedback-stars {
    color: var(--primary-color); /* Rosa para as estrelas */
}

.feedback-card-body p {
    font-style: italic;
    color: #555;
}

/* Responsividade para o Carrossel de Feedbacks */
@media (max-width: 992px) {
    .feedback-carousel {
        grid-template-columns: 1fr 1fr; /* 2 colunas em tablets */
    }
}

@media (max-width: 768px) {
    .feedback-carousel {
        display: flex; /* Muda para flexbox */
        overflow-x: auto; /* Habilita o scroll horizontal */
        scroll-snap-type: x mandatory; /* Efeito de "trava" no scroll */
        padding-bottom: 1.5rem; /* Espaço para a barra de scroll */
        -webkit-overflow-scrolling: touch; /* Melhora a experiência em iOS */
    }

    .feedback-carousel .feedback-card {
        flex: 0 0 80%; /* Cada card ocupa 80% da largura da tela */
        scroll-snap-align: start; /* Alinha o card no início ao "travar" */
    }
}

/* --- Responsividade para o Botão Flutuante do WhatsApp --- */
@media (max-width: 768px) {
    #floating-whatsapp-button {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }

    #floating-whatsapp-button img {
        width: 30px;
    }
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* --- Media Queries para Responsividade (Desktop) --- */
@media (min-width: 768px) {
    h1 {
        font-size: 5rem;
    }

    h2 {
        font-size: 3.5rem;
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    #nosso-espaco .gallery-grid {
        grid-template-columns: repeat(4, 1fr); /* Mantém 4 colunas */
        max-width: 1200px; /* <--- NOVA PROPRIEDADE: Define a largura máxima */
        margin: 0 auto; /* <--- NOVA PROPRIEDADE: Centraliza o grid */
        gap: 1.5rem; /* Aumenta um pouco o espaçamento entre as imagens */
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px; /* Alinha com a galeria de fotos */
        margin: 0 auto; /* Centraliza */
    }
}

/* --- Estilos do Novo Rodapé (Estilo Eloport) --- */
footer {
    background-color: var(--primary-color); /* Fundo MARROM ESCURO */
    color: var(--base-color); /* Texto BRANCO */
    padding: 4rem 2rem 2rem 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr; /* 1 coluna no celular */
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 2.5rem auto;
}

.footer-column {
    text-align: center; /* Centralizado no celular */
}

.footer-logo-text {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    color: var(--white);
    margin: 0 auto 1rem auto;
    font-weight: 500;
}

#footer-info p {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.footer-social-icons {
    display: flex;
    justify-content: center; /* Centraliza ícones no celular */
    gap: 1.5rem;
}

.footer-social-icons a {
    font-size: 1.8rem;
    color: var(--white); /* Ícones em ROSA */
    transition: transform 0.3s;
}

.footer-social-icons a:hover {
    transform: scale(1.1) translateY(-3px);
}

.footer-column h4 {
    color: var(--white); /* Título "Links Úteis" em ROSA */
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

#footer-links ul {
    list-style: none;
    padding: 0;
}

#footer-links li {
    margin-bottom: 0.8rem;
}

#footer-links a {
    color: var(--base-color);
    font-weight: 500;
    transition: color 0.3s;
}

#footer-links a:hover {
    color: var(--secondary-color);
}

.copyright-footer {
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

/* --- Seção Sobre Nós --- */
#sobre-nos {
    text-align: center;
    background-color: var(--base-color); /* Um fundo suave */
}

#sobre-nos .about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

#sobre-nos .about-img {
    width: 100%;
    max-width: 300px; /* Limita o tamanho da imagem */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#sobre-nos .about-text {
    text-align: left;
    color: var(--text-color);
}

#sobre-nos .about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Media Query para desktop */
@media (min-width: 768px) {
    #sobre-nos .about-content {
        flex-direction: row; /* Lado a lado no desktop */
        text-align: left;
    }

    #sobre-nos .about-img {
        max-width: 400px; /* Aumenta um pouco a imagem no desktop */
    }
}

/* --- Media Query para Desktop --- */
@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr 1fr 1fr; /* 3 colunas no desktop */
        text-align: left; /* Alinha à esquerda no desktop */
    }
    .footer-column {
        text-align: left;
    }
    .footer-logo {
        margin: 0 0 1rem 0; /* Alinha logo à esquerda */
    }
    .footer-social-icons {
        justify-content: flex-start; /* Alinha ícones à esquerda */
    }
}

/* --- Seção Festa Marcante --- */
#festa-marcante {
    padding: 4rem 2rem;
    overflow: visible;
}

.festa-grid {
    display: grid;
    grid-template-columns: 45% 55%; /* Invertido em relação à promo de Natal */
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.festa-text {
    text-align: left;
}

.festa-title {
    font-family: 'Great Vibes', cursive;
    font-size: 3.5rem;
    color: var(--secondary-color);
    text-align: left;
    margin-bottom: 0.5rem;
}

.festa-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 1rem;
}

.festa-text p {
    margin-bottom: 2rem;
    color: #555;
}

.festa-image img {
    width: 100%;
    height: 350px; /* Altura fixa adicionada */
    object-fit: cover; /* Garante que a imagem preencha o espaço sem distorcer */
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    margin-top: -50px;
}

/* Responsividade para a seção de festa */
@media (max-width: 768px) {
    .festa-grid {
        grid-template-columns: 1fr; /* Coluna única */
        text-align: center;
    }
    
    .festa-image {
        order: -1; /* Imagem vem antes do texto no mobile */
    }

    .festa-text {
        text-align: center;
    }

    .festa-title, .festa-subtitle {
        text-align: center;
    }

    .festa-image img {
        margin-top: 2rem; /* Remove a margem negativa e adiciona um espaço */
    }
}