/* ==========================================================================
   ESTILOS PARA PÁGINAS INTERNAS
   ========================================================================== */

/* --- CSS ESPECÍFICO PARA O IFRAME DE CONTATO --- */
.contact-form-section {
    margin: 40px 0;
    text-align: center;
}

.contact-form-section h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #333;
}

.iframe-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 100%;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.iframe-container iframe {
    max-width: 100%;
    border-radius: 5px;
    background: white;
}

/* Responsividade para o iframe */
@media (max-width: 768px) {
    .iframe-container {
        padding: 10px;
    }
    
    .iframe-container iframe {
        width: 100% !important;
        height: 500px !important;
    }
}

@media (max-width: 480px) {
    .iframe-container iframe {
        height: 450px !important;
    }
}

/* --- CSS ESPECÍFICO PARA SINGLE PRODUTO --- */
/* Estilos específicos para conteúdo RTF */
.produto-descricao-rtf p {
    margin-bottom: 15px;
}

.produto-descricao-rtf strong {
    font-weight: bold;
    color: #333;
}

.produto-descricao-rtf em {
    font-style: italic;
}

.produto-descricao-rtf ul,
.produto-descricao-rtf ol {
    margin: 15px 0;
    padding-left: 25px;
}

.produto-descricao-rtf li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.produto-descricao-rtf a {
    color: #333;
    transition: opacity 0.3s ease;
}

.produto-descricao-rtf a:hover {
    opacity: 0.7;
}

/* --- CSS ESPECÍFICO PARA PÁGINA DE AGENDAMENTO --- */
.agendamento-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 40px;
}

.agendamento-header {
    text-align: center;
    margin-bottom: 40px;
}

.agendamento-header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #333;
}

.agendamento-header p {
    font-size: 1.2em;
    color: #666;
    margin: 0;
}

.unidades-selector {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.unidade-btn {
    background: white;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 200px;
}

.unidade-btn:hover {
    border-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.unidade-btn.active {
    border-color: #333;
    background: #333;
    color: white;
}

.unidade-btn h3 {
    margin: 0 0 5px 0;
    font-size: 1.3em;
}

.unidade-btn p {
    margin: 0;
    font-size: 0.9em;
    opacity: 0.8;
}

.agendamento-container .iframe-container {
    position: relative;
    min-height: 800px;
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.iframe-wrapper {
    display: none;
    width: 100%;
    height: 800px;
}

.iframe-wrapper.active {
    display: block;
}

.iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsivo para agendamento */
@media (max-width: 768px) {
    .agendamento-container {
        padding: 40px 15px 20px;
    }
    
    .agendamento-header h1 {
        font-size: 2em;
    }
    
    .unidades-selector {
        flex-direction: column;
        align-items: center;
    }
    
    .unidade-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .agendamento-container .iframe-container,
    .iframe-wrapper {
        height: 600px;
    }
}

/* --- CSS ESPECÍFICO PARA POSTS INDIVIDUAIS (single.php) --- */
.single-post-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 40px;
    line-height: 1.7;
}

.post-header {
    margin-bottom: 40px;
}

.post-content h2,
.post-content h3,
.post-content h4 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #333;
}

.post-content h2 {
    font-size: 1.8em;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.post-content h3 {
    font-size: 1.5em;
}

.post-content h4 {
    font-size: 1.3em;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 20px 0;
}

.post-content blockquote {
    background: #f9f9f9;
    border-left: 4px solid #333;
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #666;
}

.post-content ul,
.post-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.post-content li {
    margin-bottom: 10px;
}

.post-navigation {
    margin: 50px 0;
    padding: 30px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.nav-previous,
.nav-next {
    flex: 1;
}

.nav-next {
    text-align: right;
}

.nav-link {
    display: block;
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #666;
}

.nav-direction {
    display: block;
    font-size: 0.9em;
    color: #666;
    margin-bottom: 5px;
}

.nav-title {
    display: block;
    font-weight: 600;
    font-size: 1.1em;
}

.back-to-blog {
    text-align: center;
    margin: 40px 0;
}

.back-button {
    display: inline-block;
    padding: 12px 25px;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.back-button:hover {
    background: #555;
}

.related-posts {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #eee;
}

.related-posts h3 {
    font-size: 1.8em;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.related-post-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.related-post-card:hover {
    transform: translateY(-3px);
}

.related-post-thumbnail {
    height: 150px;
    overflow: hidden;
}

.related-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post-card:hover .related-post-image {
    transform: scale(1.05);
}

.related-post-content {
    padding: 20px;
}

.related-post-title {
    margin: 0 0 10px 0;
    font-size: 1.1em;
    line-height: 1.3;
}

.related-post-title a {
    color: #333;
    text-decoration: none;
}

.related-post-title a:hover {
    color: #666;
}

.related-post-date {
    font-size: 0.9em;
    color: #666;
}

/* --- CSS ESPECÍFICO PARA PÁGINA DE BLOG (page-blog.php) --- */
.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 40px;
    background: #FFFFFF;
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #D4AF37;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.blog-header p {
    font-size: 1.2em;
    color: #7a7a7a;
    margin: 0;
    font-weight: 300;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.post-card {
    background: #FFFFFF;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #F5F5F5;
}

.post-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.25);
}

.post-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-image {
    transform: scale(1.02);
}

.post-content {
    padding: 1.5rem;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9em;
}

.post-date {
    color: #7a7a7a;
    font-size: 0.8em;
}

.post-category {
    background: #D4AF37;
    color: #FFFFFF;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: 500;
}

.post-title {
    margin: 0 0 15px 0;
    font-size: 1.3em;
    line-height: 1.4;
    font-weight: 400;
}

.post-title a {
    color: #1A1A1A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #D4AF37;
}

.post-excerpt {
    color: #7a7a7a;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    color: #D4AF37;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #B8941F;
}

.read-more.disabled {
    color: #b5b5b5;
    cursor: not-allowed;
}

.no-posts {
    text-align: center;
    padding: 50px 20px;
    background: #FFFFFF;
}

.no-posts h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #D4AF37;
    font-weight: 300;
}

.no-posts p {
    color: #7a7a7a;
    font-weight: 300;
}

.placeholder-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.placeholder-card {
    opacity: 0.7;
}

.blog-pagination {
    text-align: center;
    margin-top: 50px;
}

.blog-pagination .page-numbers {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    background: #FFFFFF;
    border: 1px solid #F5F5F5;
    color: #1A1A1A;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
    background: #D4AF37;
    color: #FFFFFF;
    border-color: #D4AF37;
}

/* Estilos para paginação Bulma */
.pagination-link {
    background: #FFFFFF !important;
    border-color: #F5F5F5 !important;
    color: #1A1A1A !important;
}

.pagination-link:hover,
.pagination-link.is-current {
    background: #D4AF37 !important;
    border-color: #D4AF37 !important;
    color: #FFFFFF !important;
}

.pagination-previous,
.pagination-next {
    background: #FFFFFF !important;
    border-color: #F5F5F5 !important;
    color: #D4AF37 !important;
}

.pagination-previous:hover,
.pagination-next:hover {
    background: #F5F5F5 !important;
    border-color: #D4AF37 !important;
}
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #666;
}

.read-more.disabled {
    color: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
}

.no-posts {
    text-align: center;
    padding: 50px 20px;
}

.no-posts h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #333;
}

.placeholder-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.placeholder-card {
    opacity: 0.7;
}

.blog-pagination {
    text-align: center;
    margin-top: 50px;
}

.blog-pagination .page-numbers {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    background: white;
    border: 2px solid #ddd;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
    background: #333;
    color: white;
    border-color: #333;
}

/* --- CSS ESPECÍFICO PARA PÁGINAS DE CATEGORIA (category.php) --- */
.category-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 40px;
}

.category-header {
    text-align: center;
    margin-bottom: 50px;
}

.category-breadcrumb {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 20px;
}

.category-breadcrumb a {
    color: #333;
    text-decoration: none;
}

.category-breadcrumb a:hover {
    opacity: 0.7;
}

.category-breadcrumb .separator {
    margin: 0 10px;
    color: #999;
}

.category-breadcrumb .current {
    color: #999;
}

.category-header h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #333;
}

.category-description {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.category-info {
    font-size: 1em;
    color: #999;
}

.category-info p {
    margin: 0;
}

.back-to-blog-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.back-to-blog-btn:hover {
    background: #555;
}

.category-pagination {
    text-align: center;
    margin-top: 50px;
}

.category-pagination .page-numbers {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    background: white;
    border: 2px solid #ddd;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.category-pagination .page-numbers:hover,
.category-pagination .page-numbers.current {
    background: #333;
    color: white;
    border-color: #333;
}

/* --- CSS ESPECÍFICO PARA PÁGINAS DE TAG (tag.php) --- */
.tag-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 40px;
}

.tag-header {
    text-align: center;
    margin-bottom: 50px;
}

.tag-breadcrumb {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 20px;
}

.tag-breadcrumb a {
    color: #333;
    text-decoration: none;
}

.tag-breadcrumb a:hover {
    opacity: 0.7;
}

.tag-breadcrumb .separator {
    margin: 0 10px;
    color: #999;
}

.tag-breadcrumb .current {
    color: #999;
}

.tag-header h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #333;
}

.tag-name {
    background: #333;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: normal;
}

.tag-description {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tag-info {
    font-size: 1em;
    color: #999;
}

.tag-info p {
    margin: 0;
}

.tag-pagination {
    text-align: center;
    margin-top: 50px;
}

.tag-pagination .page-numbers {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    background: white;
    border: 2px solid #ddd;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.tag-pagination .page-numbers:hover,
.tag-pagination .page-numbers.current {
    background: #333;
    color: white;
    border-color: #333;
}

/* --- CSS ESPECÍFICO PARA PÁGINA DE PRODUTOS (page-produtos.php) --- */
.product-description p {
    margin-bottom: 10px;
}

.product-description strong {
    font-weight: bold;
}

.product-description em {
    font-style: italic;
}

.product-description ul,
.product-description ol {
    margin: 10px 0;
    padding-left: 20px;
}

.product-description li {
    margin-bottom: 5px;
}

.product-description a {
    color: #333;
    transition: opacity 0.3s ease;
}

.product-description a:hover {
    opacity: 0.7;
}

.products-intro {
    text-align: center;
    margin-bottom: 80px;
}

.products-intro h2 {
    font-size: 2.5em;
    font-weight: 300;
    margin-bottom: 30px;
    color: #333;
}

.products-intro p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.purchase-info {
    margin-bottom: 80px;
}

.purchase-info h2 {
    text-align: center;
    font-size: 2.5em;
    font-weight: 300;
    margin-bottom: 50px;
    color: #333;
}

.purchase-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.purchase-option {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.purchase-option h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #333;
}

.purchase-option p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.purchase-option strong {
    color: #333;
    font-size: 1.1em;
}

/* --- RESPONSIVO GERAL PARA PÁGINAS --- */
@media (max-width: 768px) {
    .single-post-container,
    .blog-container,
    .category-container,
    .tag-container {
        padding: 40px 15px 20px;
    }
    
    .post-title,
    .blog-header h1,
    .category-header h1,
    .tag-header h1 {
        font-size: 2em;
    }
    
    .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .nav-links {
        flex-direction: column;
    }
    
    .nav-next {
        text-align: left;
    }
    
    .related-posts-grid,
    .posts-grid,
    .placeholder-posts {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .post-content {
        padding: 20px;
    }
    
    .tag-name {
        display: block;
        margin-top: 10px;
    }
}

/* --- LAYOUT GERAL DAS PÁGINAS --- */
.site-main {
    max-width: 100% !important;
    min-width: 100%;
}

/* Sobrescreve especificamente a regra do tema pai */
body:not([class*=elementor-page-]) .site-main {
    max-width: 100% !important;
}

/* Sobrescreve a media query específica do tema pai com maior especificidade */
@media (min-width: 1200px) {
    .page-header .entry-title,
    .site-footer .footer-inner,
    .site-footer:not(.dynamic-footer),
    .site-header .header-inner,
    .site-header:not(.dynamic-header),
    body:not([class*=elementor-page-]) .site-main {
        max-width: 100% !important;
    }
    
    /* Regra adicional específica apenas para .site-main */
    body:not([class*=elementor-page-]) .site-main {
        max-width: 100% !important;
        width: 100% !important;
    }
}

.page-content {
    padding: 120px 0 60px;
    min-height: 100vh;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #333;
}

.page-header .subtitle {
    font-size: 1.2em;
    color: #666;
    font-style: italic;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- SEÇÕES COMUNS --- */
.content-wrapper h2 {
    font-size: 2.2em;
    margin: 40px 0 20px;
    color: #333;
}

.content-wrapper h3 {
    font-size: 1.5em;
    margin: 30px 0 15px;
    color: #444;
}

.content-wrapper p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

/* --- CTA SECTIONS --- */
.cta-section {
    text-align: center;
    padding: 60px 0;
    background: #f8f8f8;
    margin: 60px 0;
    border-radius: 10px;
}

.cta-section h2 {
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 30px;
    font-size: 1.1em;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.secondary {
    background: transparent;
    color: #333;
    border: 2px solid #333;
}

.cta-button.secondary:hover {
    background: #333;
    color: white;
}

/* --- PÁGINA O MÉTODO --- */
.method-intro {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 50px;
}

.method-steps {
    margin: 50px 0;
}

.step {
    background: white;
    padding: 30px;
    margin-bottom: 20px;
    border-left: 4px solid #333;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.step h3 {
    color: #333;
    margin-bottom: 15px;
}

.method-benefits ul {
    list-style: none;
    padding: 0;
}

.method-benefits li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 30px;
}

.method-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
}

/* --- PÁGINA CLAUDIA VOGT --- */
.founder-intro {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.founder-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #333;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 40px;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: -8px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #333;
}

.timeline-item h3 {
    color: #333;
    margin-bottom: 10px;
}

.philosophy-section {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    margin: 50px 0;
    text-align: center;
}

.philosophy-section blockquote {
    font-size: 1.3em;
    font-style: italic;
    line-height: 1.6;
    margin: 0 0 20px;
    color: #444;
}

.philosophy-section cite {
    font-weight: bold;
    color: #333;
}

.awards-section ul {
    list-style: none;
    padding: 0;
}

.awards-section li {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* --- PÁGINA O STUDIO --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.gallery-item {
    text-align: center;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.facility {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.location-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 40px 0;
}

.location-info h3 {
    color: #333;
    margin-bottom: 15px;
}

/* --- PÁGINA BOUTIQUE --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.product {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product:hover {
    transform: translateY(-5px);
}

.product img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product h4 {
    padding: 20px 20px 10px;
    margin: 0;
    color: #333;
}

.product p {
    padding: 0 20px;
    color: #666;
    font-size: 0.9em;
}

.product .price {
    display: block;
    padding: 10px 20px 20px;
    font-weight: bold;
    font-size: 1.2em;
    color: #333;
}

.category {
    margin-bottom: 60px;
}

.kits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.kit {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9em;
}

.kit-price {
    display: block;
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
    margin: 10px 0;
}

.discount {
    background: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
}

/* --- PÁGINA CONTATO --- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.contact-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-item h3 {
    margin-bottom: 15px;
    color: #333;
}

.contact-item span {
    color: #666;
    font-size: 0.9em;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 40px 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #333;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.hours-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.hours-item strong {
    display: block;
    margin-bottom: 10px;
    color: #333;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.social-link {
    display: inline-block;
    padding: 15px 25px;
    background: white;
    border-radius: 25px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    color: #333;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    .page-content {
        padding: 100px 20px 40px;
    }
    
    .page-header h1 {
        font-size: 2.5em;
    }
    
    .founder-intro {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-grid,
    .products-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* --- CSS DO MENU LATERAL PARA PÁGINAS INTERNAS --- */
.menu-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.menu-panel.is-open {
    opacity: 1;
    visibility: visible;
}

.menu-panel .close-btn {
    position: absolute;
    top: 30px;
    right: 5%;
    color: white;
    font-size: 3em;
    text-decoration: none;
    cursor: pointer;
}

.menu-panel nav ul,
.menu-panel nav .side-menu-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.menu-panel nav li {
    margin: 25px 0;
}

.menu-panel nav a {
    color: white;
    text-decoration: none;
    font-size: 2.5em;
    font-weight: 300;
    transition: opacity 0.3s;
}

.menu-panel nav a:hover {
    opacity: 0.7;
}

/* CSS do hamburger-menu removido - agora está centralizado no functions.php */

body.menu-open {
    overflow: hidden !important;
}
