/* ===== ART GREEN BOUTIQUE HOTEL - ESTILO COMPLETO ===== */
:root {
    --verde: #2c5a3a;
    --verde-claro: #4a7c5e;
    --dourado: #c9a03d;
    --bege: #f5f0e6;
    --cinza: #4a4a4a;
    --cinza-claro: #e0dcd3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bege);
    color: #2c2c2c;
}

/* ===== HOME ===== */
.hero {
    height: 85vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1600') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin: 20px 0;
    opacity: 0.95;
}

.btn-hero {
    background: var(--dourado);
    color: #1e2a1a;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-hero:hover {
    background: #dbb345;
    transform: scale(1.02);
}

/* Seção de boas-vindas */
.welcome {
    text-align: center;
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.welcome h2 {
    font-size: 2.2rem;
    color: var(--verde);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.welcome p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--cinza);
}

/* Cards de serviços */
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 40px 20px 80px;
    background: white;
}

.service-card {
    width: 280px;
    text-align: center;
    padding: 30px 20px;
    border-radius: 20px;
    background: var(--bege);
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.service-card img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--verde);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.service-card .btn-small {
    background: var(--verde);
    color: white;
    padding: 8px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.85rem;
    display: inline-block;
}

/* Rodapé */
.footer {
    background: var(--verde);
    color: white;
    text-align: center;
    padding: 30px;
    font-size: 0.85rem;
}

/* ===== PÁGINA DE AVALIAÇÃO (PLUGIN) ===== */
#ag-app {
    background: var(--bege);
    min-height: 100vh;
    padding: 40px 20px 100px;
}

.ag-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Título principal da avaliação */
#ag-app h1 {
    font-size: 2rem;
    text-align: center;
    color: var(--verde);
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.subtext {
    text-align: center;
    color: var(--cinza);
    margin-bottom: 30px;
}

/* Botões Sim/Não */
.btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px 0 30px;
}

.btn-sim, .btn-nao {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: 0.2s;
}

.btn-sim {
    background: var(--verde);
    color: white;
    box-shadow: 0 4px 10px rgba(44,90,58,0.3);
}

.btn-sim:hover {
    background: #1e4028;
    transform: scale(1.02);
}

.btn-nao {
    background: #aa8c54;
    color: white;
    box-shadow: 0 4px 10px rgba(170,140,84,0.2);
}

.btn-nao:hover {
    background: #8e6f3f;
}

/* Cards de upsell */
.upsell-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 50px 0 30px;
}

.card-upsell {
    background: white;
    border-radius: 24px;
    width: 280px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.2s;
}

.card-upsell:hover {
    transform: translateY(-6px);
}

.card-upsell h3 {
    font-size: 1.4rem;
    color: var(--verde);
}

.card-upsell .preco {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dourado);
    margin: 12px 0;
}

.card-upsell button {
    background: var(--dourado);
    border: none;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
}

/* Art Cucina */
.art-cucina {
    background: white;
    border-radius: 28px;
    padding: 40px;
    margin: 50px 0;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.art-cucina h2 {
    font-size: 2rem;
    color: var(--verde);
    font-family: 'Playfair Display', serif;
}

.art-cucina .destaque {
    color: var(--dourado);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 10px 0;
}

.botoes-avaliacao {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.btn-google, .btn-trip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.btn-google {
    background: white;
    border: 1px solid #ddd;
    color: #3c4043;
}

.btn-google:hover {
    background: #f8f9fa;
}

.btn-trip {
    background: #00aa6c;
    color: white;
}

.btn-trip:hover {
    background: #008a55;
}

/* Painéis de feedback */
.painel {
    background: white;
    border-radius: 28px;
    padding: 32px 24px;
    max-width: 550px;
    margin: 30px auto;
    box-shadow: 0 12px 28px rgba(0,0,0,0.1);
    text-align: center;
}

.hidden {
    display: none;
}

/* Estrelas */
.star {
    font-size: 36px;
    cursor: pointer;
    color: #ccc;
    transition: 0.1s;
    display: inline-block;
    margin: 0 4px;
}

.star.active {
    color: #f5b042;
}

/* Formulário */
input, textarea {
    width: 90%;
    max-width: 400px;
    padding: 12px 16px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 60px;
    font-size: 14px;
    font-family: inherit;
}

textarea {
    border-radius: 24px;
    min-height: 90px;
}

.btn-avaliar {
    background: var(--verde);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* WHATSAPP FLOAT COM ÍCONE ORIGINAL */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    transition: all 0.2s ease;
    z-index: 999;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    background: #20b859;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.whatsapp-float svg {
    width: 34px;
    height: 34px;
    fill: white;
}

/* Popups sociais (canto esquerdo) */
.social-popup {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: var(--verde);
    color: white;
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    animation: slideLeft 0.3s ease;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 8px;
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .btn-hero {
        padding: 10px 28px;
        font-size: 0.9rem;
    }
    .welcome h2 {
        font-size: 1.6rem;
    }
    .card-upsell, .service-card {
        width: 260px;
    }
    .social-popup {
        left: 16px;
        bottom: 16px;
        font-size: 11px;
    }
    .whatsapp-float {
        width: 52px;
        height: 52px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}
/* Divisória entre Boutique e Art Cucina */
.divisoria {
    text-align: center;
    padding: 40px 0 20px;
    color: var(--dourado);
    font-size: 1.2rem;
    letter-spacing: 8px;
}

.secao-boutique, .secao-restaurante {
    margin-bottom: 20px;
}

.secao-restaurante h2 {
    font-size: 2rem;
    text-align: center;
    color: var(--verde);
    font-family: 'Playfair Display', serif;
    margin-top: 20px;
}