/* Reset e configuraÃ§Ãµes gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #563625;
    background-color: #FFFBF0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
/* HEADER mais compacto */
header {
    background: linear-gradient(135deg, #6D4426, #8B5A3C);
    color: #F7E081;
    padding: 0.8rem 0;   /* Era 1.5rem, reduzi */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(109, 68, 38, 0.4);
}

/* HEADER mais compacto */
header {
    background: linear-gradient(135deg, #6D4426, #8B5A3C);
    color: #F7E081;
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(109, 68, 38, 0.4);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0 18px;
}

/* LOGO + TEXTO EM LINHA (lado a lado) */
.logo-section {
    display: flex;
    align-items: center;
    gap: 0.8rem;  /* EspaÃ§o entre logo e texto */
}

.logo-img img {
    width: 90px;      /* Voltou para um tamanho bom */
    height: 90px;
    border-radius: 50%;
    border: 2px solid #F7E081;
    flex-shrink: 0;   /* NÃ£o encolhe */
}

/* Texto do logo compacto e lado a lado */
.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    line-height: 1.2;
}

.logo-text h1 {
    font-size: 1.3rem;
    margin: 0;
    color: #F7E081;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.15);
    font-weight: 700;
}

.logo-text .desde {
    font-size: 0.8rem;
    margin: 0;
    color: #F7E081;
    opacity: 0.9;
    font-weight: 600;
}

.logo-text .slogan {
    font-size: 0.75rem;
    margin: 0;
    color: #F7E081;
    opacity: 0.85;
    font-style: italic;
}

/* Menu */
nav {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    align-items: center;
}

nav a {
    color: #F7E081;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.95rem;
    white-space: nowrap;
}

nav a:hover {
    background: rgba(247, 224, 129, 0.15);
    transform: translateY(-1px);
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
    
    .logo-section {
        justify-content: center;
    }
    
    .logo-text h1 {
        font-size: 1.1rem;
    }
    
    .logo-text .desde,
    .logo-text .slogan {
        font-size: 0.7rem;
    }
    
    nav {
        gap: 0.8rem;
        justify-content: center;
    }
    
    nav a {
        font-size: 0.9rem;
        padding: 0.3rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .logo-img img {
        width: 40px;
        height: 40px;
    }
    
    .logo-text h1 {
        font-size: 1rem;
    }
    
    nav a {
        font-size: 0.85rem;
        padding: 0.25rem 0.5rem;
    }
}



/* Hero Section */
.hero {
    background-image: 
        linear-gradient(rgba(109,68,38,0.65), rgba(109,68,38,0.65)),
        url("../images/hero.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}


.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* BotÃµes */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s;
    text-align: center;
}

.btn-primary {
    background: #E8C24B;
    color: #563625;
}

.btn-primary:hover {
    background: #C19B4C;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #F7E081;
}

.btn-secondary:hover {
    background: #F7E081;
    color: #563625;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
}

/* SeÃ§Ãµes de Produtos */
.produtos {
    padding: 4rem 0;
}

.produtos h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #563625;
}

.subtitulo {
    text-align: center;
    font-size: 1.1rem;
    color: #8B6B3B;
    margin-bottom: 3rem;
    font-style: italic;
}

/* Sabores */
.sabores {
    margin-bottom: 3rem;
}

.sabores h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #563625;
}

.sabores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.sabores-grid span {
    background: #F7E081;
    padding: 0.8rem 1rem;
    border-radius: 20px;
    text-align: center;
    font-weight: 500;
    color: #563625;
    transition: all 0.3s;
}

.sabores-grid span:hover {
    background: #E8C24B;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(86, 54, 37, 0.2);
}

/* Tamanhos */
.tamanhos h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #563625;
    text-align: center;
}

.tamanhos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.tamanho-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(86, 54, 37, 0.1);
    transition: transform 0.3s;
    border-top: 4px solid #E8C24B;
}

.tamanho-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(86, 54, 37, 0.2);
}

.tamanho-card h4 {
    font-size: 1.3rem;
    color: #563625;
    margin-bottom: 0.5rem;
}

.tamanho-card p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.tamanho-card span {
    color: #8B6B3B;
    font-style: italic;
}

/* Salgados */
.salgados-section {
    background: linear-gradient(to bottom, #FFF9E5, #FFFBF0);
}

.salgados-tipos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.tipo-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(86, 54, 37, 0.1);
    transition: transform 0.3s;
}

.tipo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(86, 54, 37, 0.2);
}

.tipo-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #563625;
}

.preco {
    font-size: 1.3rem;
    font-weight: bold;
    color: #C19B4C;
    margin-bottom: 1.5rem;
    text-align: center;
    background: #F7E081;
    padding: 0.5rem;
    border-radius: 10px;
}

.tipo-card ul {
    list-style: none;
}

.tipo-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #F0E5B5;
    color: #563625;
}

.tipo-card li:before {
    content: "ðŸ¥Ÿ ";
    margin-right: 0.5rem;
}

.observacao {
    background: #FFF4CC;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #E8C24B;
    text-align: center;
    font-style: italic;
}

/* Depoimentos */
.depoimentos {
    background: #FFF9E5;
    padding: 4rem 0;
}

.depoimentos h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #563625;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.depoimento {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(86, 54, 37, 0.1);
    transition: transform 0.3s;
    border-top: 4px solid #E8C24B;
}

.depoimento:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(86, 54, 37, 0.2);
}

.depoimento p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #563625;
    font-style: italic;
    line-height: 1.6;
}

.depoimento span {
    color: #C19B4C;
    font-weight: bold;
}

/* Contato */
.contato {
    padding: 4rem 0;
    background: linear-gradient(135deg, #563625, #6B4530);
    color: #F7E081;
}

.contato h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #F7E081;
}

.contato-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contato-item {
    text-align: center;
    padding: 2rem;
    background: rgba(247, 224, 129, 0.1);
    border-radius: 15px;
}

.contato-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #F7E081;
}

.contato-item p {
    margin-bottom: 0.5rem;
}

.botoes-contato {
    text-align: center;
}

/* Footer */
footer {
    background: #2D1B0F;
    color: #F7E081;
    text-align: center;
    padding: 2rem 0;
}

footer p {
    margin-bottom: 0.5rem;
}

/* Popup de Cookies */
#cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #F7E081, #E8C24B);
    color: #563625;
    z-index: 9999;
    padding: 1rem 0;
    box-shadow: 0 -2px 15px rgba(86, 54, 37, 0.3);
}

#cookie-box {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

#cookie-box p {
    margin: 0;
    flex: 1;
}

#cookie-box a {
    color: #563625;
    font-weight: bold;
    text-decoration: underline;
}

#cookie-box button {
    background: #563625;
    color: #F7E081;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    white-space: nowrap;
}

#cookie-box button:hover {
    background: #2D1B0F;
    transform: translateY(-2px);
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    display: block;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
}

.whatsapp-float a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float span {
    font-size: 1.8rem;
    color: white;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
    }
    
    nav {
        gap: 1rem;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .produtos h2 {
        font-size: 2rem;
    }
    
    #cookie-box {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float span {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 3rem 1rem;
    }
    
    .produtos {
        padding: 3rem 0;
    }
    
    .tamanho-card,
    .tipo-card,
    .depoimento {
        padding: 1.5rem;
    }
    
    .sabores-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .tamanhos-grid {
        grid-template-columns: 1fr;
    }
}
/* BotÃ£o de AvaliaÃ§Ã£o Google */
.btn-avaliacao {
    background: linear-gradient(135deg, #4285F4, #1a73e8);
    color: white;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.btn-avaliacao:hover {
    background: linear-gradient(135deg, #1a73e8, #1557b0);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

.btn-avaliacao-grande {
    background: linear-gradient(135deg, #4285F4, #1a73e8);
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.3);
}

.btn-avaliacao-grande:hover {
    background: linear-gradient(135deg, #1a73e8, #1557b0);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
}

/* SeÃ§Ã£o Importante sobre Bolos */
.importante-bolos {
    margin-bottom: 3rem;
}

.aviso-card {
    background: linear-gradient(135deg, #FFF4CC, #F7E081);
    border: 2px solid #6D4426;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(109, 68, 38, 0.1);
}

.aviso-card h3 {
    color: #6D4426;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.aviso-card p {
    color: #6D4426;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Galeria de Bolos */
.galeria {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #FFFEF8, #FFF9E5, #FFFEF8);
}

.galeria h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #6D4426;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.galeria-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(109, 68, 38, 0.15);
    transition: transform 0.3s;
    background: white;
}

.galeria-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(109, 68, 38, 0.25);
}

.placeholder-img {
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.placeholder-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    z-index: 1;
}

.placeholder-img span,
.placeholder-img p {
    position: relative;
    z-index: 2;
}

.placeholder-img p {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 0.5rem;
    text-align: center;
    padding: 0 1rem;
}

/* Cores especÃ­ficas para cada bolo */
.bolo-chocolate::before { background: linear-gradient(135deg, #8B4513, #A0522D); }
.bolo-morango::before { background: linear-gradient(135deg, #FF69B4, #FF1493); }
.bolo-coco::before { background: linear-gradient(135deg, #F5F5DC, #DDBF94); }
.bolo-cenoura::before { background: linear-gradient(135deg, #FF8C00, #FF7F00); }
.bolo-prestigio::before { background: linear-gradient(135deg, #8B4513, #F5F5DC); }
.bolo-limao::before { background: linear-gradient(135deg, #FFFF00, #FFD700); }
.bolo-abacaxi::before { background: linear-gradient(135deg, #FFD700, #FFA500); }
.bolo-brigadeiro::before { background: linear-gradient(135deg, #654321, #8B4513); }

.galeria-observacao {
    background: rgba(247, 224, 129, 0.3);
    border: 1px solid #F7E081;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    color: #6D4426;
}

.galeria-observacao p {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    line-height: 1.6;
}

/* ObservaÃ§Ã£o de Salgados Melhorada */
.observacao-salgados {
    background: linear-gradient(135deg, #FFF4CC, #F7E081);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #6D4426;
    color: #6D4426;
    box-shadow: 0 5px 20px rgba(109, 68, 38, 0.15);
}

.observacao-salgados h4 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #6D4426;
}

.exemplos-pedido {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.exemplo {
    background: rgba(255, 255, 255, 0.7);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #4CAF50;
}

.exemplo.erro {
    border-left: 4px solid #f44336;
}

.exemplo h5 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #6D4426;
}

.exemplo ul {
    list-style: none;
    padding: 0;
}

.exemplo li {
    padding: 0.3rem 0;
    color: #6D4426;
    font-size: 1rem;
}

.regra-geral {
    background: #6D4426;
    color: #F7E081;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* CTA de AvaliaÃ§Ã£o */
.cta-avaliacao {
    background: linear-gradient(135deg, #4285F4, #1a73e8);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 4rem;
    box-shadow: 0 6px 25px rgba(66, 133, 244, 0.3);
}

.cta-avaliacao h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-avaliacao p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Responsividade para novas seÃ§Ãµes */
@media (max-width: 768px) {
    .galeria-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .placeholder-img {
        height: 180px;
        font-size: 3rem;
    }
    
    .placeholder-img p {
        font-size: 1rem;
    }
    
    .exemplos-pedido {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-avaliacao {
        padding: 2rem;
    }
    
    .cta-avaliacao h3 {
        font-size: 1.6rem;
    }
    
    .cta-avaliacao p {
        font-size: 1rem;
    }
    
    .observacao-salgados {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .galeria-grid {
        grid-template-columns: 1fr;
    }
    
    .placeholder-img {
        height: 160px;
        font-size: 2.5rem;
    }
    
    .aviso-card {
        padding: 1.5rem;
    }
    
    .aviso-card h3 {
        font-size: 1.2rem;
    }
    
    .aviso-card p {
        font-size: 1rem;
    }
}
/* ========== EXTRAS PARA GALERIAS COM IMAGENS ========== */

.link-clean {
  color: #F7E081;
  text-decoration: underline;
  font-weight: bold;
}

/* Galeria com fotos reais */
.galeria-grid.fotos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  margin-bottom: 2.5rem;
}

.foto-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(109, 68, 38, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 2px solid rgba(247, 224, 129, 0.55);
}

.foto-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(109, 68, 38, 0.25);
}

.foto-card img {
  width: 100%;
  height: 220px;
  display: block;
  object-fit: cover;
}

.foto-card figcaption {
  padding: 1rem 1.1rem;
  color: #6D4426;
  font-weight: 700;
}

/* BotÃ£o de avaliaÃ§Ã£o Google */
.btn-avaliacao {
  background: linear-gradient(135deg, #4285F4, #1a73e8);
  color: white;
  box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}
.btn-avaliacao:hover {
  background: linear-gradient(135deg, #1a73e8, #1557b0);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

.btn-avaliacao-grande {
  background: linear-gradient(135deg, #4285F4, #1a73e8);
  color: white;
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
  box-shadow: 0 6px 20px rgba(66, 133, 244, 0.3);
}
.btn-avaliacao-grande:hover {
  background: linear-gradient(135deg, #1a73e8, #1557b0);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
}

@media (max-width: 768px) {
  .foto-card img { height: 180px; }
}

/* ========== GALERIA HÍBRIDA (foto + botão) ========== */
.galeria-hibrida {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.galeria-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(109, 68, 38, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(247, 224, 129, 0.3);
}

.galeria-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(109, 68, 38, 0.25);
}

.foto-container {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.foto-container .placeholder-img {
    height: 200px;
    transition: transform 0.3s ease;
}

.foto-container:hover .placeholder-img {
    transform: scale(1.05);
}

.overlay-zoom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.foto-container:hover .overlay-zoom {
    opacity: 1;
}

.card-footer {
    padding: 1.5rem;
    text-align: center;
    background: #FFFEF8;
}

.btn-pedir {
    display: inline-block;
    background: linear-gradient(135deg, #25D366, #1da851);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-pedir:hover {
    background: linear-gradient(135deg, #1da851, #17a043);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

/* ========== LIGHTBOX ========== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
    cursor: default;
}

.lightbox-close {
    position: absolute;
    top: -10px;
    right: 10px;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-close:hover {
    color: #E8C24B;
}

.lightbox img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 1rem;
    font-size: 1.3rem;
    font-weight: bold;
}

/* Responsividade */
@media (max-width: 768px) {
    .galeria-hibrida {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .foto-container .placeholder-img {
        height: 180px;
    }
    
    .card-footer {
        padding: 1rem;
    }
    
    .btn-pedir {
        padding: 0.7rem 1.3rem;
        font-size: 0.9rem;
    }
    
    .lightbox-content {
        width: 95%;
        padding: 10px;
    }
}
/* ========== SEÇÃO NOSSA HISTÓRIA MELHORADA ========== */
.historia {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #FFFEF8, #FFF9E5, #FFFEF8);
}

.historia-header {
    text-align: center;
    margin-bottom: 4rem;
}

.historia-header h2 {
    font-size: 2.8rem;
    color: #6D4426;
    margin-bottom: 0.5rem;
}

.historia-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.historia-texto {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.destaque-anos {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #E8C24B, #F7E081);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(232, 194, 75, 0.3);
    flex-shrink: 0;
    border: 3px solid #6D4426;
}

.numero-grande {
    font-size: 3.5rem;
    font-weight: bold;
    color: #6D4426;
    line-height: 1;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.texto-anos {
    font-size: 1.1rem;
    color: #6D4426;
    font-weight: bold;
    text-align: center;
    margin-top: 0.5rem;
}

.texto-principal {
    flex: 1;
}

.texto-principal p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #563625;
    margin-bottom: 1.5rem;
}

.frase-destaque {
    background: linear-gradient(135deg, #6D4426, #8B5A3C);
    color: #F7E081;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 5px 20px rgba(109, 68, 38, 0.2);
}

.frase-destaque em {
    font-size: 1.4rem;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.frase-destaque span {
    font-size: 0.95rem;
    opacity: 0.9;
}

.historia-foto {
    text-align: center;
}

.foto-historia {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(109, 68, 38, 0.2);
    border: 5px solid #F7E081;
}

.foto-legenda {
    margin-top: 1rem;
    font-style: italic;
    color: #8B6B3B;
    font-size: 1rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .historia-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .historia-texto {
        flex-direction: column;
        gap: 2rem;
    }
    
    .destaque-anos {
        align-self: center;
        padding: 1.5rem;
    }
    
    .numero-grande {
        font-size: 2.8rem;
    }
    
    .texto-principal p {
        font-size: 1.05rem;
    }
}

