
/* Breadcrumbs */
.breadcrumb-nav {
    background: rgba(212, 165, 116, 0.05);
    padding: 1rem 2rem;
    margin-left: 220px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
}

.breadcrumb {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a {
    color: #d4a574;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #ffffff;
}

.breadcrumb-item:not(:last-child)::after {
    content: ">";
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 1024px) {
    .breadcrumb-nav {
        margin-left: 0;
    }
}


/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #35302b;
    overflow-x: hidden;
}

/* Sidebar Navigation */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 220px;
    height: 100vh;
    background: #35302b;
    border-right: 1px solid rgba(212, 165, 116, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.sidebar-menu {
    flex: 1;
    padding: 1.5rem 0;
    list-style: none;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-weight: 500;
}

.menu-item:hover {
    background: rgba(212, 165, 116, 0.1);
    color: #d4a574;
    border-left-color: #d4a574;
}

.menu-item.active {
    background: rgba(212, 165, 116, 0.15);
    color: #d4a574;
    border-left-color: #d4a574;
}

.submenu {
    position: relative;
}

.submenu-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.submenu-toggle i {
    transition: transform 0.3s ease;
}

.submenu.open .submenu-toggle i {
    transform: rotate(180deg);
}

.submenu-items {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.submenu.open .submenu-items {
    max-height: 200px;
}

.submenu-item {
    display: block;
    padding: 0.8rem 1.5rem 0.8rem 2.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-size: 0.9rem;
}

.submenu-item:hover {
    background: rgba(212, 165, 116, 0.1);
    color: #d4a574;
    border-left-color: #d4a574;
}



.sidebar-footer {
    padding: 1.5rem 1rem;
    border-top: 1px solid rgba(212, 165, 116, 0.1);
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.8rem;
    background: #d58932;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(213, 137, 50, 0.3);
}

.contact-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: #d4a574;
    width: 16px;
    text-align: center;
}

.menu-toggle {
    display: none;
    position: absolute;
    top: 1rem;
    right: -50px;
    background: #d4a574;
    color: #1e1a17;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

/* Main Content */
.main-content {
    margin-left: 220px;
    min-height: 100vh;
    transition: all 0.3s ease;
}

.section-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    background: #35302b;
    position: relative;
    padding: 2rem 2rem 4rem 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="20" cy="20" r="1" fill="rgba(212,165,116,0.05)"/><circle cx="80" cy="40" r="1" fill="rgba(212,165,116,0.05)"/><circle cx="40" cy="80" r="1" fill="rgba(212,165,116,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 3rem;
}

.hero-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-logo-image {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.hero-logo-image:hover {
    transform: scale(1.05);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #d4a574;
    opacity: 0.9;
    font-weight: 400;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #d58932;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(213, 137, 50, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(213, 137, 50, 0.4);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
    margin-top: 1rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(212, 165, 116, 0.2);
    backdrop-filter: blur(10px);
}

.stat h3 {
    font-size: 2.5rem;
    color: #d4a574;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat p {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #35302b;
}

.about h2 {
    font-size: 2.8rem;
    color: #d4a574;
    margin-bottom: 3rem;
    font-weight: 700;
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(212, 165, 116, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(212, 165, 116, 0.15);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(212, 165, 116, 0.15);
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    color: #d4a574;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.feature p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Portfolio Section */
.portfolio {
    padding: 5rem 0;
    background: #2a241f;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.portfolio-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    opacity: 1 !important;
    visibility: visible !important;
}

.portfolio-grid .portfolio-item {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    background: #35302b;
}

.portfolio-grid .portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.portfolio-grid .portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.portfolio-header {
    text-align: center;
    margin-bottom: 4rem;
}

.portfolio-header h2 {
    font-size: 2.8rem;
    color: #d4a574;
    margin-bottom: 1rem;
    font-weight: 700;
}

.portfolio-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(213, 137, 50, 0.3);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.filter-btn.active,
.filter-btn:hover {
    background: #d58932;
    color: #1e1a17;
    border-color: #d58932;
    transform: translateY(-2px);
}

/* Portfolio Mosaic Grid */
.portfolio-mosaic {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-auto-rows: 180px;
    gap: 6px;
    max-width: 1400px;
    margin: 0 auto 3rem auto;
    position: relative;
    z-index: 2;
    grid-auto-flow: dense;
}

.portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    background: #35302b;
}

/* Mosaic Layout Patterns - Melhor distribuição */
.portfolio-item:nth-child(12n+1) {
    grid-column: span 3;
    grid-row: span 2;
}

.portfolio-item:nth-child(12n+2) {
    grid-column: span 2;
    grid-row: span 1;
}

.portfolio-item:nth-child(12n+3) {
    grid-column: span 2;
    grid-row: span 1;
}

.portfolio-item:nth-child(12n+4) {
    grid-column: span 1;
    grid-row: span 1;
}

.portfolio-item:nth-child(12n+5) {
    grid-column: span 2;
    grid-row: span 2;
}

.portfolio-item:nth-child(12n+6) {
    grid-column: span 2;
    grid-row: span 1;
}

.portfolio-item:nth-child(12n+7) {
    grid-column: span 1;
    grid-row: span 1;
}

.portfolio-item:nth-child(12n+8) {
    grid-column: span 1;
    grid-row: span 1;
}

.portfolio-item:nth-child(12n+9) {
    grid-column: span 2;
    grid-row: span 1;
}

.portfolio-item:nth-child(12n+10) {
    grid-column: span 2;
    grid-row: span 1;
}

.portfolio-item:nth-child(12n+11) {
    grid-column: span 3;
    grid-row: span 1;
}

.portfolio-item:nth-child(12n+12) {
    grid-column: span 1;
    grid-row: span 2;
}

.portfolio-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    z-index: 10;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

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

.portfolio-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(213, 137, 50, 0.95);
    padding: 8px 12px;
    border-radius: 20px;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateY(10px);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-overlay a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.portfolio-overlay a:hover {
    color: #1e1a17;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background: #35302b;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #d4a574;
    margin-bottom: 4rem;
    font-weight: 700;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: rgba(212, 165, 116, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(212, 165, 116, 0.15);
    transition: all 0.3s ease;
    overflow: hidden;
}

.testimonial:hover {
    background: rgba(212, 165, 116, 0.15);
    transform: translateY(-5px);
}

.testimonial-content {
    padding: 2.5rem 2rem;
    text-align: center;
}

.testimonial .stars {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
}

.author-info strong {
    color: #d4a574;
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.author-info span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #2a241f;
}

.contact h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #d4a574;
    margin-bottom: 4rem;
    font-weight: 700;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form {
    background: rgba(212, 165, 116, 0.08);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 165, 116, 0.15);
}

.contact-form h3 {
    color: #d4a574;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(212, 165, 116, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group select {
    color: #000000;
}

.form-group select option {
    color: #000000;
    background: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #d4a574;
    background: rgba(255, 255, 255, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.captcha-group label {
    color: #d4a574;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 0.5rem;
}

.captcha-container span {
    background: rgba(212, 165, 116, 0.2);
    padding: 10px 15px;
    border-radius: 8px;
    color: #d4a574;
    font-weight: bold;
    font-size: 1.1rem;
    min-width: 80px;
    text-align: center;
}

.captcha-container input[type="number"] {
    flex: 1;
    max-width: 200px;
    min-width: 120px;
    padding: 12px 15px;
}

.captcha-container button {
    background: #d58932;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.captcha-container button:hover {
    background: #b8722a;
}

.contact-form button {
    width: 100%;
    padding: 16px;
    background: #d58932;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(213, 137, 50, 0.3);
}

.contact-info-card {
    background: rgba(212, 165, 116, 0.08);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 165, 116, 0.15);
}

.contact-info-card h3 {
    color: #d4a574;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.info-item i {
    color: #d58932;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    width: 20px;
    text-align: center;
}

.info-item a {
    color: #d58932;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #ffffff;
}

/* Footer */
.footer {
    background: #0f0d0b;
    padding: 3rem 0;
}

.footer-content {
    text-align: center;
}

.footer-brand h3 {
    color: #d4a574;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.3rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 900px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.modal-content img {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.close {
    position: absolute;
    top: -10px;
    right: 20px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #d58932;
}

#modalDescription h3 {
    color: #d58932;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }

    .portfolio-mosaic {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: 160px;
        gap: 5px;
    }

    .portfolio-item:nth-child(6n+1) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .portfolio-item:nth-child(6n+2) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .portfolio-item:nth-child(6n+3) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .portfolio-item:nth-child(6n+4) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .portfolio-item:nth-child(6n+5) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .portfolio-item:nth-child(6n+6) {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-content {
        padding: 0 1rem;
    }

    .contact-form,
    .contact-info-card {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .portfolio-mosaic {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 140px;
        gap: 4px;
    }

    .portfolio-item:nth-child(4n+1) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .portfolio-item:nth-child(4n+2) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .portfolio-item:nth-child(4n+3) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .portfolio-item:nth-child(4n+4) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
        padding: 0 1rem;
    }

    .portfolio-grid .portfolio-item {
        width: 100%;
        height: 200px;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .logo-image {
        width: 70px;
        height: 70px;
    }

    .hero-logo-image {
        width: 140px;
        height: 140px;
    }
}

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

    .portfolio-mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
        gap: 3px;
    }

    .portfolio-item:nth-child(3n+1) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .portfolio-item:nth-child(3n+2) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .portfolio-item:nth-child(3n+3) {
        grid-column: span 1;
        grid-row: span 1;
    }
}