/* Reset e Configurações Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Nova Paleta de Cores bun-bun */
    --bege-claro: #F9EBD8;
    --castanho-claro: #CBAA7B;
    --verde-menta: #A9E59C;
    --rosa-pessego: #F6B8A7;
    --cinza-escuro: #3D3D3D;
    --branco-puro: #F2F2F2;
    
    /* Cores derivadas para estados hover */
    --castanho-escuro: #B8976A;
    --verde-escuro: #85C77A;
    --rosa-escuro: #E4A897;
    
    /* Variáveis de uso */
    --primary-color: var(--castanho-claro);
    --primary-dark: var(--castanho-escuro);
    --secondary-color: var(--verde-menta);
    --accent-color: var(--rosa-pessego);
    --text-dark: var(--cinza-escuro);
    --text-light: #6B6B6B;
    --background-light: var(--bege-claro);
    --white: var(--branco-puro);
    --border-radius: 12px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif; /* adiciona Montserrat */
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}


h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

.membros {
    display: inline-block; /* mantém o fundo apenas atrás do texto */
    background-color: var(--castanho-claro); /* fundo semi-transparente */
    color: #f2f2f2; /* cor do texto */
    padding: 5px 10px; /* espaço entre texto e borda do fundo */
    border-radius: 5px; /* cantos arredondados do fundo */
    font-size: 1.5rem;
}


p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}
.chatbot-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    pointer-events: none; /* evita que a imagem intercepte cliques */
}
.chatbot-avatar {
    width: 45px;
    height: 45px;
    object-fit: cover;

}
.logo-icon {
    font-size: 2rem;
    margin-right: 0.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}
.footer-social .social-icon {
    width: 30px; /* ou o tamanho que quiseres */
    height: 30px;
    object-fit: contain; /* mantém a proporção da imagem */
}
.social-icons a {
    display: inline-flex;
    justify-content: center;
    filter: invert(1);

    align-items: center;
    width: 30px;
    height: 30px;
    background: transparent;
    border-radius: 50%;
    transition: background 0.3s ease;
    margin-right: 10px; /* opcional: espaço entre ícones */
}

.social-icons a:hover {
    filter: invert(0); /* volta à cor original no hover */
}
.social-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: 0.3s ease;
}

/* Troca a imagem no hover */
.social-icons a:hover img[alt="Facebook"] {
    content: url("images/fb_hover.svg"); /* AGORA TROCA PARA O ICONE DE HOVER */
}

.social-icons a:hover img[alt="Instagram"] {
    content: url("images/ig_hover.svg"); /* AGORA TROCA PARA O ICONE DE HOVER */
}
.social-icons a:hover img[alt="LinkedIn"] {
    content: url("images/li_hover.svg"); /* AGORA TROCA PARA O ICONE DE HOVER (Dourado) */
}


.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}


/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--bege-claro) 0%, var(--white) 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--rosa-pessego) 0%, var(--verde-menta) 100%);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* impede que a imagem saia da moldura */
    padding: 8px; /* cria o “espaço” da moldura */
    box-shadow: var(--shadow-lg);
}

/* a imagem */
.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* garante que a imagem preencha sem distorcer */
    border-radius: calc(var(--border-radius) - 8px); /* arredonda igual à moldura */
}

.image-membro {
    width: 100%;
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden; /* garante que a imagem não ultrapasse os cantos */
    box-shadow: var(--shadow-lg); /* mantém a sombra */
    display: block; /* remove flex, pois não há texto */
}

/* imagem dentro da moldura */
.image-membro img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* cobre todo o espaço sem distorcer */
    display: block; /* remove gaps de inline img */
    border-radius: inherit; /* mesma curvatura da moldura */
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(203, 170, 123, 0.1);
}

.service-card:hover {
    transform: translateY(-2.5px);
        background: var(--bege-claro);

    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3rem;
}
.service-icon img{
    width: 50px; 
    height: 50px;
}
/* Why Us Section */
.why-us {
    padding: 80px 0;
    background-color: var(--background-light);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
    color: var(--primary-color);
}

/* CTA Section */
.cta {
    padding: 65px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.cta h2, .cta p {
    color: var(--white);
}

.cta .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta .btn-primary:hover {
    background-color: var(--background-light);
    color: var(--primary-dark);
}

/* Footer *//* Footer Styles - Simplified */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 2rem;
}

.footer-brand {
    display: flex;               /* coloca os elementos lado a lado */
    align-items: center;         /* alinha verticalmente ao centro */
    gap: 25px; 
}

.footer-description {
    max-width: 500px;            /* opcional, limita o texto */
    line-height: 1.5;
    margin-bottom: 0;
    color: var(--text-light);     
}

.footer-social {
        margin-right: 0.75rem;

    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon {
    font-size: 1.4rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--rosa-escuro);
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
    
    .social-icon {
        font-size: 1.3rem;
    }
    
    .footer-description {
        font-size: 0.95rem;
    }
}

/* Page Hero */
.page-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.page-hero h1, .page-hero p {
    color: var(--white);
}

/* Services Detail */
.services-detail {
    padding: 80px 0;
    background-color: var(--white);
}

.segment-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-button {
    padding: 12px 24px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-button.active,
.tab-button:hover {
    background: var(--primary-color);
    color: var(--white);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.segment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
/* Footer Legal Links */
.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.legal-links a {
    color: var(--bege-claro);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--primary-color);
}

.method-info a {
    color: var(--verde-escuro);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}



.method-info a:hover {
    color: var(--rosa-escuro);
}

.separator {
    color: var(--bege-claro);
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
}
/* Legal Pages Styles */
.privacy-policy, .terms-of-use {
    padding: 80px 0;
    background-color: var(--white);
}

.policy-content, .terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section, .terms-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--background-light);
}

.policy-section:last-child, .terms-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.policy-section h2, .terms-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.policy-section h3, .terms-section h3 {
    color: var(--text-dark);
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.2rem;
}

.policy-section ul, .terms-section ul {
    list-style: none;
    margin: 1rem 0;
}

.policy-section li, .terms-section li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.policy-section li:before, .terms-section li:before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.contact-info {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .privacy-policy, .terms-of-use {
        padding: 60px 0;
    }
    
    .policy-section, .terms-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
}
/* Cookie Consent Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookie-text h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.cookie-text p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.cookie-btn {
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    background: var(--white);
    color: var(--primary-color);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cookie-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}


.cookie-btn-accept-all {
    background: var(--primary-color);
    color: var(--white);
}

.cookie-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-dark);
}

.cookie-toggle input {
    display: none;
}

.cookie-toggle-slider {
    width: 50px;
    height: 24px;
    background: var(--background-light);
    border-radius: 24px;
    position: relative;
    transition: background 0.3s ease;
}

.cookie-toggle-slider:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--white);
    top: 2px;
    left: 2px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--primary-color);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(26px);
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-links {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
}

.cookie-links a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-links a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Modal Styles */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    animation: fadeIn 0.3s ease;
}

.cookie-modal-content {
    background: var(--white);
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.3s ease;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--background-light);
}

.cookie-modal-header h3 {
    color: var(--primary-color);
    margin: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.cookie-modal-close:hover {
    color: var(--text-dark);
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-category {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--background-light);
}

.cookie-category:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.cookie-category-header h4 {
    margin: 0;
    color: var(--text-dark);
}

.cookie-status {
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 12px;
    background: var(--background-light);
    color: var(--text-light);
}

.cookie-status.necessary {
    background: var(--primary-color);
    color: var(--white);
}

.cookie-category p {
    margin: 0 0 1rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.cookie-category ul {
    list-style: none;
    margin: 0;
}

.cookie-category li {
    padding: 0.25rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1rem;
}

.cookie-category li:before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.cookie-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--background-light);
}

.cookie-btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.cookie-btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cookie-management-link {
    color: var(--bege-claro);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.cookie-management-link:hover {
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-content {
        padding: 1rem;
    }
    
    .cookie-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 1rem;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
}
.service-list {
    list-style: none;
}

/* lista normal */
.service-list li:before {
    content: '✓';
    color: var(--verde-escuro); /* padrão */
    font-weight: bold;
    margin-right: 0.5rem;
}


/* General Services */
.general-services {
    margin-top: 80px;
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-detailed {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    border: 1px solid rgba(203, 170, 123, 0.1);
}

.service-detailed:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-detailed .service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-detailed ul {
    list-style: none;
    margin-top: 1rem;
}

.service-detailed ul li {
    padding: 0.25rem 0;
    color: var(--text-light);
}

.service-detailed ul li:before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Portfolio */
.portfolio {
    padding: 80px 0;
    background-color: var(--background-light);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

/* Faz com que todos os cards tenham altura igual e o conteúdo se distribua verticalmente */
.portfolio-item {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    border: 1px solid rgba(203, 170, 123, 0.1);

    display: flex;
    flex-direction: column;
    justify-content: space-between; /* empurra resultados/botões para baixo */
    height: 100%; /* garante que o grid faz os itens ter mesma altura */
}

/* Opcional: garante que o grid expande os itens para altura igual */
.portfolio-grid > .portfolio-item {
    display: flex;
    flex-direction: column;
}


.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.portfolio-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-category {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.portfolio-results {
    display: flex;
    gap: 1rem; /* espaçamento entre os itens */
    margin-top: 1rem;
}

.result-item {
    flex: 1; /* todos ocupam a mesma largura */
    text-align: center; /* centraliza conteúdo */
}


.result-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.result-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.portfolio-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    }
/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--white);
    display: none; /* Oculta a secção até teres clientes reais */

}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(203, 170, 123, 0.1);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.testimonial-author {
    border-top: 1px solid var(--background-light);
    padding-top: 1rem;
}

.testimonial-author strong {
    color: var(--text-dark);
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* About Sections */
.about-story {
    padding: 80px 0;
    background-color: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-values {
    padding: 80px 0;
    background-color: var(--background-light);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-card {
    background: var(--branco-puro);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(203, 170, 123, 0.1);
}

.mission-card:hover {
    transform: translateY(-2.5px);
        background: var(--castanho-claro);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}
.mission-card:hover p{

    color: var(--branco-puro);

}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.team {
    padding: 80px 0;
    background-color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid rgba(203, 170, 123, 0.1);
}
/* --- Regras de CSS Adicionadas/Corrigidas --- */

/* 2. ESTILOS PARA OS ÍCONES DO LINKEDIN NA SECÇÃO DA EQUIPA */

/* Contém o ícone, ajusta o espaçamento após o texto do membro */
.team-member .member-info .team-social {
    margin-top: 1rem; 
    text-align: center; /* Centraliza o ícone dentro da info */
}

/* O link / ícone em si */
.team-member .member-info .team-social a {
    display: inline-block;
    width: 30px;
    height: 30px;
    opacity: 0.7;
    transition: opacity 0.3s;
    background-size: cover; 
    background-repeat: no-repeat;
}

.team-member .member-info .team-social a:hover {
    opacity: 1;
}

/* Estilo específico para o ícone do LinkedIn (ajuste o URL se necessário) */
.social-linkedin-team {
    /* Use o seu ficheiro de ícone do LinkedIn. Assumi 'li.svg' ou similar. */
    background-image: url('images/li_hover.svg'); 
    /* OU, se for SVG/svg com fundo transparente: */
    /* background-image: url('images/social-linkedin.svg'); */
}

/* Se precisar de uma versão hover para o LinkedIn: */
.social-linkedin-team:hover {
    /* Assumindo que tem uma imagem de hover, ex: li_hover.svg */
    /* background-image: url('images/li_hover.svg'); */
}
.member-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
}

.member-info {
    padding: 1.5rem;
}

.member-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.why-choose-us {
    padding: 80px 0;
    background-color: var(--background-light);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.reason-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(203, 170, 123, 0.1);
}

.reason-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Contact */
.contact {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.method-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    color: var(--primary-color);
}

.social-links {
    margin-top: 2rem;
        margin-left: 0.75rem;

}


.social-icon {
    display: inline-block;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
 
    transform: translateY(-2px);
}
/* Footer Styles - Simplified */
/* ... (outras regras do footer) */

.footer-social a {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    transition: opacity 0.3s ease; 
    opacity: 0.85;
    /* ADICIONADO: Remove qualquer filtro que possa estar a interferir na cor do ícone */
    filter: none; 
}

/* NOVO: Regra de hover para que a opacidade se destaque */
.footer-social a:hover {
    opacity: 1;
    transform: scale(1.1);
    /* ADICIONADO: Anula filtro no hover também */
    filter: none; 
}

.social-facebook {
    background-image: url('images/fb.svg');
}
.social-instagram {
    background-image: url('images/ig.svg');
}
.social-wpp {
    background-image: url('images/wpp.svg'); /* Confirma que este nome de ficheiro existe */
}


/* Hover */
.social-facebook:hover {
    background-image: url('images/fb_hover.svg');
}
.social-instagram:hover {
    background-image: url('images/ig_hover.svg');
}
.social-wpp:hover {
    background-image: url('images/wpp_hover.svg'); /* Confirma que este nome de ficheiro existe */
}


.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(203, 170, 123, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--verde-escuro);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--verde-menta);
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
    cursor: pointer;
    color: var(--text-light);
}

.checkbox-label input {
    width: auto;
}

/* FAQ */
.faq-contact {
    padding: 80px 0;
    background-color: var(--background-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(203, 170, 123, 0.1);
}

/* Regra original do H3 (cor primária) */
.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* * CORREÇÕES APLICADAS:
 * 1. O h3 agora mantém a cor primária no hover.
 * 2. O p agora mantém a cor cinza escuro no hover (corrigindo a mudança para branco-puro).
 * 3. As regras duplicadas foram removidas.
 */
.faq-item:hover h3 {
    transition: color 0.3s ease; /* Manter apenas a transição de cor, se necessário */
    color: var(--primary-color); /* Força a cor original (Primary Color) */
    margin-bottom: 1rem;
}

.faq-item:hover p {
    transition: color 0.3s ease;
    color: var(--cinza-escuro); /* Força a cor original do p (Text Dark) */
    margin-bottom: 1rem;
}

/* Loading Animation */
body.loaded * {
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container,
    .why-us-grid,
    .story-grid,
    .contact-grid,
    .segment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid-detailed,
    .portfolio-grid,
    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .portfolio-results {
        flex-direction: column;
        gap: 1rem;
    }

}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 24px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* Chatbot AI Self-Hosted Styles */
.chatbot-widget {
    position: fixed;
    bottom: 35px;
    right: 75px;
    z-index: 10000;
    font-family: 'Inter', sans-serif;
}

.chatbot-toggle {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--verde-menta), var(--rosa-pessego));
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(203, 170, 123, 0.4);
}

.chatbot-toggle.active {
    transform: scale(0.9);
}

.chatbot-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary-color);
    animation: pulse 2s infinite;
    opacity: 0.6;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 0.3; }
    100% { transform: scale(1); opacity: 0.6; }
}

.chatbot-window {
    position: absolute;
    bottom: 0px;
    right: -25px;
    width: 380px;
    height: 550px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--background-light);
}

.chatbot-window.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}

.chatbot-header {
    padding: 1rem 1rem;
    border-bottom: 1px solid var(--background-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, var(--castanho-claro), var(--verde-escuro)); /* gradiente horizontal do verde claro para o verde escuro */
    color: white;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.chatbot-title {
    display: flex;
    align-items: center;
    gap: 0.82rem;
}

.chatbot-title h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.chatbot-status {
    font-size: 0.7rem;
    opacity: 0.9;
    font-weight: 400;
}

.chatbot-avatar {
    font-size: 1.5rem;
}
.chatbot-close {
    background: linear-gradient(135deg, var(--rosa-pessego), var(--verde-menta));
    border: none;
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(203, 170, 123, 0.4);
    transition: all 0.3s ease;
    transform-origin: center center;
    line-height: 1;
}

.chatbot-close span {
    display: inline-block;
    transform: translateY(-1px); /* centra o X visualmente */
}

.chatbot-close:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(203, 170, 123, 0.6);
}


.chatbot-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: linear-gradient(
        180deg,
        var(--bege-claro),
        rgba(203, 170, 123, 0.2) /* castanho-claro com 20% de opacidade */
    );}

.chatbot-welcome {
    background: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.chatbot-welcome p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.5;
}

.chat-message {
    display: flex;
    max-width: 85%;
    animation: messageSlide 0.3s ease;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-message {
    align-self: flex-end;
}

.bot-message {
    align-self: flex-start;
}

.message-content {
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    position: relative;
    box-shadow: var(--shadow);
}

.user-message .message-content {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.bot-message .message-content {
    background: var(--white);
    color: var(--text-dark);
    border-bottom-left-radius: 4px;
    border: 1px solid var(--background-light);
}

.message-content p {
    margin: 0 0 0.5rem 0;
    color: var(--cinza-escuro);
    line-height: 1.4;
}

.message-content p:last-child {
    margin-bottom: 0;
}

.message-time {
    font-size: 0.7rem;
    margin: 0;
    opacity: 0.7;
    display: flex;
    justify-content: right;
}

.typing-indicator .message-content {
    background: var(--white);
    padding: 0.75rem 1rem;
}

.typing-dots {
    display: flex;
    gap: 4px;
    margin-bottom: 0.5rem;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-light);
    animation: typing 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1) { animation-delay: -0.32s; }
.typing-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing {
    0%, 80%, 100% { transform: scale(0); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

.chatbot-input-container {
    background: var(--white);
    border-top: 1px solid var(--background-light);
}

.chatbot-input {
    padding: 1rem 1.5rem 0.5rem;
    display: flex;
    gap: 0.5rem;
}

.chatbot-input input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--verde-menta);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.chatbot-input input:focus {
    border-color: var(--verde-escuro);
    box-shadow: 0 0 0 3px rgba(203, 170, 123, 0.1);
}

.chatbot-input button {
    background: var(--verde-escuro);
    border: none;
    border-radius: var(--border-radius);
    color: var(--branco-puro);
    width: 44px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-input button:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.chatbot-suggestions {
    padding: 0.5rem 1.5rem 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.suggestion-btn {
    padding: 0.5rem 0.75rem;
    background: var(--background-light);
    border: 1px solid var(--background-light);
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
    font-family: inherit;
}

.suggestion-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

.chatbot-footer {
    padding: 0.75rem 1.5rem;
    border-top: 1px solid var(--background-light);
    text-align: center;
    background: var(--white);
}

.chatbot-footer small {
    color: var(--text-light);
    font-size: 0.75rem;
}

.chatbot-footer a {
    color: var(--primary-color);
    text-decoration: none;
}

.chatbot-footer a:hover {
    text-decoration: underline;
}

/* Scrollbar personalizada */
.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: var(--castanho-claro);
    border-radius: 3px;
}

.chatbot-messages::-webkit-scrollbar-thumb:hover {
    background: var(--castanho-escuro);
}

/* Responsive */


/* Light mode (original) */
.chatbot-welcome {
    background: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.bot-message .message-content {
    background: var(--white);
    color: var(--text-dark);
    border-bottom-left-radius: 4px;
    border: 1px solid var(--background-light);
}

/* Dark mode *//* Chatbot Styles - Forçado para manter mesmo estilo em dark/light mode */
.chatbot-window {
    background: var(--white) !important;
    border: 1px solid var(--background-light) !important;
}

.chatbot-messages {
    background: linear-gradient(
        180deg,
        var(--bege-claro),
        rgba(203, 170, 123, 0.2)
    ) !important;
}

.chatbot-welcome {
    background: var(--white) !important;
    color: var(--text-dark) !important;
    padding: 1rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.bot-message .message-content {
    background: var(--white) !important;
    color: var(--text-dark) !important;
    border-bottom-left-radius: 4px;
    border: 1px solid var(--background-light);
}

.user-message .message-content {
    background: var(--primary-color) !important;
    color: white !important;
    border-bottom-right-radius: 4px;
}

.chatbot-input input {
    background: var(--white) !important;
    color: var(--text-dark) !important;
    border: 2px solid var(--verde-menta) !important;
}

.chatbot-input input:focus {
    border-color: var(--verde-escuro) !important;
    box-shadow: 0 0 0 3px rgba(203, 170, 123, 0.1) !important;
}

.chatbot-header {
    background: linear-gradient(90deg, var(--castanho-claro), var(--verde-escuro)) !important;
    color: white !important;
}

.suggestion-btn {
    background: var(--background-light) !important;
    color: var(--text-dark) !important;
    border: 1px solid var(--background-light) !important;
}

.suggestion-btn:hover {
    background: var(--primary-color) !important;
    color: white !important;
    border-color: var(--primary-color) !important;
}

.chatbot-footer {
    background: var(--white) !important;
}

.chatbot-footer small {
    color: var(--text-light) !important;
}

.chatbot-footer a {
    color: var(--primary-color) !important;
}

/* Garantir que o toggle button também mantenha as cores */
.chatbot-toggle {
    background: linear-gradient(135deg, var(--verde-menta), var(--rosa-pessego)) !important;
    color: white !important;
}


/* CORREÇÃO PRINCIPAL - A partir de 600px */


@media (max-width: 520px) {
    .chatbot-window {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #fff; /* ou a cor do teu chatbot */
        z-index: 9999;
        border-radius: 0;
        box-shadow: none;
        display: flex;
        flex-direction: column;
    }

    .chat-message {
        max-width: 90%;
    }

    .chatbot-input {
        padding: 0.75rem 1rem 0.5rem;
    }

    .chatbot-suggestions {
        padding: 0.5rem 1rem 0.75rem;
    }

    /* Botão X para fechar */
    .chatbot-close {
        position: absolute;
        top: 20px;
        right: 16px;
        background: transparent;
        border: none;
        font-size: 2rem;
        cursor: pointer;
        color: #f2f2f2;
        z-index: 10000;
    }

    .chatbot-close:hover {
        color: #ff6b6b;
    }
}



/* Remover completamente qualquer adaptação para dark mode */
@media (prefers-color-scheme: dark) {
    .chatbot-window,
    .chatbot-messages,
    .chatbot-welcome,
    .bot-message .message-content,
    .user-message .message-content,
    .chatbot-input input,
    .chatbot-header,
    .suggestion-btn,
    .chatbot-footer,
    .chatbot-toggle {
        /* Todas as cores são forçadas acima com !important */
        /* Não aplicar nenhuma alteração no dark mode */
    }
}
/* ANIMAÇÕES PARA O CHATBOT */
.chatbot-window {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    visibility: hidden;
    transition: all 0.4s ease;
}

.chatbot-window.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}

/* Ocultar o botão toggle quando o chat está ativo */
/* Removemos a opacidade 0 para o botão estar sempre lá */
.chatbot-toggle.hidden {
    opacity: 1; 
    transform: scale(1);
    pointer-events: auto;
}

/* Garante que o widget (contentor pai) não bloqueia cliques no site */
.chatbot-widget {
    position: fixed;
    bottom: 35px;
    right: 75px;
    z-index: 10000;
    pointer-events: none; /* O contentor não bloqueia */
}

/* Mas o botão e a janela têm de aceitar cliques */
.chatbot-toggle, .chatbot-window {
    pointer-events: auto;
}

