/* Cards de Serviços na Loja Online */
.produtos-grid .produto-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 2rem 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}
.produtos-grid .produto-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(212, 165, 116, 0.12);
}
.produtos-grid .produto-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 14px;
    margin-bottom: 1rem;
    background: #f8f9fa;
    padding: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.produtos-grid .produto-card:hover img {
    transform: scale(1.05);
}
.produtos-grid .produto-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.produtos-grid .produto-card p {
    color: var(--dark-color);
    font-size: 0.9rem;
    margin-bottom: 0.7rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    line-clamp: 4;
    overflow: hidden;
}
.produtos-grid .produto-card .preco {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 1rem;
    display: block;
}
.products-feedback {
    text-align: center;
    color: var(--dark-color);
    padding: 2rem 1rem;
    font-size: 1rem;
}
.products-feedback--error {
    color: #b02a37;
}
.produto-meta {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 0.8rem;
}

/* ================= Equipe ================= */
.team-page {
    background: #f7f8fa;
}

.team-hero {
    padding: 140px 0 70px;
    background: radial-gradient(circle at top left, rgba(107, 189, 70, 0.25), transparent 55%),
                radial-gradient(circle at bottom right, rgba(209, 210, 210, 0.3), transparent 60%),
                #ffffff;
}

.team-hero-content {
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
}

.team-hero-content h1 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.team-hero-content p {
    font-size: 1.1rem;
    color: #505050;
}

.team-section {
    padding: 40px 0 80px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.team-card {
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    padding: 2.2rem 1.8rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 50px rgba(107, 189, 70, 0.18);
}

.team-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 4px solid rgba(107, 189, 70, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.team-card h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 0.4rem;
}

.team-role {
    display: block;
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.team-card p {
    font-size: 0.95rem;
    color: #5a5a5a;
    line-height: 1.7;
}

.team-cta {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, rgba(107, 189, 70, 0.92), rgba(1, 1, 2, 0.95));
    color: #ffffff;
}

.team-cta-content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.team-cta-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.team-cta-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .team-hero {
        padding: 120px 0 50px;
    }

    .team-hero-content h1 {
        font-size: 2.2rem;
    }

    .team-card {
        padding: 1.8rem 1.4rem;
    }
}
.produtos-grid .produto-card .btn[disabled] {
    background: var(--gray-color);
    color: #fff;
    cursor: not-allowed;
    opacity: 0.7;
}
/* Página de Serviços & Valores - Título e Botão Voltar */
.page-title {
    text-align: center;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}
.back-btn-container {
    text-align: center;
    margin-top: 3rem;
}
/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6bbd46;
    --secondary-color: #d1d2d2;
    --dark-color: #010102;
    --light-color: #ffffff;
    --gray-color: #d1d2d2;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(135deg, #6bbd46 0%, #d1d2d2 100%);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 165, 116, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo h1 {
    font-size: 1.8rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: -5px;
}

.nav-logo span {
    font-size: 0.9rem;
    color: var(--gray-color);
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 50px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: var(--gradient);
    opacity: 0.05;
    transform: rotate(45deg);
}

.hero-content {
    width: 100%;
    min-height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 2rem;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.hero-box {
    background: rgba(0, 0, 0, 0.636);
    border-radius: 18px;
    padding: 1rem 2rem;
    max-width: auto;
    width: 100%;
    margin: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.07);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ffffff;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Sobre Section */
.sobre {
    padding: 80px 20px;
    background: white;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.sobre-text p {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    line-height: 1.8;
}

.sobre-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    background: var(--dark-color);
}

.stat h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--gray-color);
    font-weight: 500;
}

.sobre-image img {
    width: 90%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.sobre-image:hover img {
    transform: scale(1.03);
}

/* Serviços Section */
.servicos {
    padding: 80px 20px;
    background: #6bbd46;
}

.servicos h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.servico-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.servico-card:hover {
    transform: translateY(-10px);
}

.servico-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.servico-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.servico-card p {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.servico-card ul {
    list-style: none;
    text-align: left;
}

.servico-card li {
    padding: 0.5rem 0;
    color: var(--dark-color);
    position: relative;
    padding-left: 1.5rem;
}

.servico-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Galeria Section */
.galeria {
    padding: 80px 0px;
    background: white;
}

.galeria h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.galeria-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 300px;
    cursor: pointer;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.galeria-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.galeria-item:hover .galeria-overlay {
    transform: translateY(0);
}

.galeria-item:hover img {
    transform: scale(1.1);
}

.galeria-overlay h3 {
    font-size: 1.5rem;
}

/* Artigos */
.artigo {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    padding: 1.8rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.artigo:hover {
    transform: translateY(-6px);
}

.artigo h3 {
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    color: var(--dark-color);
}

.artigo p {
    color: #4a4a4a;
    line-height: 1.7;
}

.artigo-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    margin-left: 0.3rem;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.artigo-btn:hover,
.artigo-btn:focus {
    color: #4a9d32;
    text-decoration: underline;
}

/* Loja Section */
.loja {
    padding: 80px 20px;
    background: #6bbd46
}

.loja h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.loja-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 1rem;
}

.tab-btn {
    font-size: 16px;
    padding: 12px 30px;
    border: none;
    background: white;
    color: var(--primary-color);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--primary-color);
    color: rgb(255, 255, 255);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.produtos-grid, .vales-grid, .servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.produto-card, .vale-card, .servicos-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.produto-card:hover, .vale-card:hover, .servicos-card:hover {
    transform: translateY(-5px);
}

.produto-card img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    background: #f8f9fa;
    padding: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.produto-card:hover img {
    transform: scale(1.05);
}

.produto-card h3, .vale-card h3, .servicos-card h3 {
    font-size: 1.3rem;
    margin: 1rem;
    color: var(--dark-color);
}

.produto-card p, .vale-card p, .servicos-card p {
    margin: 0 1rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.preco {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 1rem;
    display: block;
}

.produto-card .btn, .vale-card .btn, .servicos-card .btn {
    width: calc(100% - 2rem);
    margin: 1rem;
}

.vale-card {
    text-align: center;
    padding: 2rem;
}

.vale-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Carrinho */
.carrinho {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.carrinho.open {
    right: 0;
}

.carrinho-content {
    padding: 2rem;
}

.carrinho-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.close-carrinho {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-color);
}

.carrinho-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.carrinho-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.carrinho-item .preco {
    color: var(--primary-color);
    font-weight: bold;
}

.remove-item {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    font-size: 1.2rem;
}

.carrinho-total {
    padding: 2rem 0;
    border-top: 2px solid var(--primary-color);
    margin-top: 2rem;
    text-align: center;
    font-size: 1.2rem;
}

.checkout-btn {
    width: 100%;
    margin-top: 1rem;
}

.carrinho-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow);
    z-index: 1500;
    transition: all 0.3s ease;
}

.carrinho-float:hover {
    transform: scale(1.1);
}

.carrinho-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Contato Section */
.contato {
    padding: 80px 20px;
    background: white;
}

.contato h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.info-item p {
    color: var(--dark-color);
    line-height: 1.6;
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contato-form input,
.contato-form select,
.contato-form textarea {
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contato-form input:focus,
.contato-form select:focus,
.contato-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 50px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    padding: 0.3rem 0;
    color: #ccc;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .sobre-content,
    .contato-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sobre-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .servicos-grid,
    .produtos-grid,
    .vales-grid {
        grid-template-columns: 1fr;
    }

    .galeria-grid {
        grid-template-columns: 1fr;
    }

    .carrinho {
        width: 100%;
        right: -100%;
    }

    .loja-tabs {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }

    .hero,
    .sobre,
    .servicos,
    .galeria,
    .loja,
    .contato {
        padding: 60px 15px;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}


@media (max-width: 900px) {
    .hero-content {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 2rem 1rem !important;
        min-height: 400px !important;
    }
    .hero-box {
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    .nav-social-links {
        display: none;
    }
}

.nav-social-links {
    display: flex;
    gap: 0.7rem;
    align-items: center;
    margin-left: 1.5rem;
}
.nav-social-links a {
    color: #ffffff;
    font-size: 1.3rem;
    transition: color 0.2s;
}
.nav-social-links a:hover {
    color: #000000;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    padding: 1rem;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 300px;
}

.cookie-text i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.cookie-text p {
    margin: 0;
    color: var(--dark-color);
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

.cookie-buttons .btn-secondary {
    background: transparent;
    border: 1px solid var(--gray-color);
    color: var(--gray-color);
}

.cookie-buttons .btn-secondary:hover {
    background: var(--gray-color);
    color: white;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-text {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cookie-text p {
        font-size: 0.85rem;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-buttons .btn {
        flex: 1;
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 0.75rem;
    }

    .cookie-text p {
        font-size: 0.8rem;
    }
}

/* Hero: centralização e botões lado a lado */
.hero-box {
    margin: 0 auto;
    text-align: center;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: nowrap;
}

.hero-buttons .btn {
    flex: 0 0 auto;
    white-space: nowrap;
}

/* Opcional: em telas muito pequenas, permitir quebra para evitar overflow */
@media (max-width: 360px) {
    .hero-buttons {
        flex-wrap: wrap;  /* volta a permitir quebra para caber na tela */
    }
}

/* Ajustes específicos para imagem da seção Sobre em dispositivos móveis */
@media (max-width: 768px) {
    /* Centraliza o contêiner e evita overflow lateral */
    .sobre-image {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    /* Evita cortes: largura total, altura automática preservando proporção */
    .sobre-image img {
        width: 100%;
        max-width: 100%;
        height: auto;            /* remove altura fixa que causava corte */
        max-height: 320px;       /* limita altura em telas médias/pequenas */
        object-fit: contain;     /* garante imagem inteira visível */
        object-position: center; /* centraliza a imagem */
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .sobre-image img {
        max-height: 240px;       /* um pouco menor em celulares muito pequenos */
        border-radius: 14px;
    }
}

/* Hero-box ocupando toda a área da imagem do hero */
.hero-content { position: relative; }
.hero-box {
    position: absolute;
    inset: 0;                  /* top:0; right:0; bottom:0; left:0 */
    width: 100%;
    height: 100%;
    margin: 0;
    padding: clamp(1rem, 3vw, 2.5rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.55); /* overlay para leitura do texto */
    border-radius: inherit;          /* acompanha os cantos arredondados do container */
    box-shadow: none;                /* remove sombra para overlay pleno */
}

/* Utility / page-specific classes moved from inline styles */
.logo-img {
    height: 72px;
    width: auto;
    vertical-align: middle;
    margin-right: 12px;
    display: inline-block;
}

.nav-since {
    font-size: 0.9rem;
    color: var(--gray-color);
    font-style: italic;
    vertical-align: middle;
}

.hero--fachada {
    background: url('../public/img/fachadafrente01.jpg') center center/cover no-repeat;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.mt-1 { margin-top: 1rem; }

.btn-wide { min-width: 260px; text-align: center; }

/* Small utility for centering call-to-action sections */
.centered-call { display:flex; justify-content:center; margin: 2rem 0; }

/* Body background for services page */
body.servicos-bg {
    background: url('../public/img/Cadeira atendimento mais espaço manicure.jpg') center center/cover no-repeat fixed;
    min-height: 100vh;
}

.page-title--spaced { margin-top: 110px; }
.page-title--shadow { text-shadow: 0 2px 6px rgba(0,0,0,0.28); }
.page-title--white { color: #ffffff; }

/* Panel utility for elevated content over background images */
.panel {
    position: relative;
    z-index: 1;
    padding: 2rem 1rem;
    background: rgba(255,255,255,0.82);
    border-radius: 24px;
}

/* small utilities */
.z-top { position: relative; z-index: 2; }
.mb-2 { margin-bottom: 2rem; }
/* servicosevalores.html - Tabela de Serviços e Valores */
        .servicos-tabela-duas-colunas {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: center;
            align-items: flex-start;
        }
        .servicos-coluna {
            flex: 1 1 350px;
            min-width: 320px;
            max-width: 480px;
            margin: 0 0 2rem 0;
            display: flex;
            flex-direction: column;
            align-items: stretch;
        }
        .servicos-tabela {
            width: 100%;
            margin: 0 auto;
        }
        .servicos-tabela th, .servicos-tabela td {
            text-align: left;
            padding: 1px 12px;
        }
        .servicos-tabela th {
            background: #d1d2d2;
        }
        .servicos-tabela tr:nth-child(even) {
            background: #f8f9fa;
        }
        @media (max-width: 900px) {
            .servicos-tabela-duas-colunas {
                flex-direction: column;
                gap: 0;
            }
            .servicos-coluna {
                max-width: 100%;
                margin-bottom: 1.5rem;
            }
        }