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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* ==========================================================================
   Header -- SUBSTITUA TODA A SEÇÃO DO HEADER ANTIGO POR ESTA
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(249, 245, 243, 0.5); /* Cor inicial com transparência */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px; /* Altura fixa para o cabeçalho */
}

.logo img {
    height: 60px; /* Tamanho da logo */
    width: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2.5rem; /* Espaçamento entre os links */
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #9c5a41;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #9c5a41;
    transition: width 0.3s ease-in-out;
}

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

.nav-link.active {
    color: #9c5a41;
    font-weight: 600;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}


.cta-button {
    background: #9c5a41;
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none; /* Caso use <a> */
    white-space: nowrap; /* Evita que o texto quebre */
}

.cta-button:hover {
    background: #824931;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* --- Estilos do Menu Mobile --- */
.mobile-menu-toggle {
    display: none; /* Escondido em desktop */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001; /* Garante que fique acima do menu */
}


.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Animação do ícone 'X' */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Garante que o vídeo não transborde */
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.232); /* Camada preta transparente de 50% */
    z-index: 1; /* Garante que fique acima do vídeo */
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que o vídeo cubra toda a área */
    position: absolute;
    top: 0;
    left: 0;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    color: white;
}

.hero-subtitle {
    color: #dd9c81;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    background: linear-gradient(135deg, #dd9c81 0%, #4a9e5f 50%, #dd9c81 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    position: relative;
    animation: gradient-nature 4s ease-in-out infinite;
}

@keyframes gradient-nature {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary {
    background: #c1854a;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-decoration: none;
}

.btn-primary:hover {
    background: #a9703f;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #dd9c81;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}


#section-title-color{
    color: #bb6d36;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: #9c5a41;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #f9f5f3;
}

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

.quote-block {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.quote-block::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #9c5a41;
    font-weight: 700;
}

.quote-block blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.quote-block cite {
    color: #9c5a41;
    font-weight: 600;
    font-style: normal;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    padding: 6rem 0;
    
}

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

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #9c5a41, #c1854a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #bb6d36, #df7417);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Projects Section */
.projects {
    padding: 6rem 0;
    background: #f9f5f3;
}

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

.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(156, 90, 65, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-btn {
    background: #c1854a;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.project-btn:hover {
    background: #a9703f;
    transform: translateY(-2px);
}

.project-info {
    padding: 2rem;
}

.project-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.project-info p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0 3rem;
    background: linear-gradient(135deg, #bb6d36, #df7417);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
}

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

.contact-content-single {
    grid-template-columns: minmax(280px, 720px);
    justify-content: center;
}

.contact-content-single .contact-info {
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.contact-content-single .contact-item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.contact-info > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.contact-item i {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    background: linear-gradient(135deg, #bb6d36, #df7417);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-sizing: border-box;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    background: #f9f5f3;
    padding: 3rem;
    border-radius: 20px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

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


/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #c1854a;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section ul li a:hover {
    color: #c1854a;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #9c5a41;
    transform: translateY(-2px);
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.3);
}

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

/* ==========================================================================
   Responsive Design -- SUBSTITUA A SEÇÃO DE RESPONSIVIDADE ANTIGA
   ========================================================================== */
@media (max-width: 992px) {
    .nav-list {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Menu mobile ativo */
    .nav {
        display: flex;
    }
    
    .cta-button {
        display: none;
    }
    
    /* Mostra o botão do menu mobile */
    .mobile-menu-toggle {
        display: flex !important;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    /* Outros ajustes responsivos */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: center;
    }
    
    .about-content, .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid, .projects-grid {
        grid-template-columns: 1fr;
    }
    
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card, .contact-form {
        padding: 2rem 1.5rem;
    }
}



/* New Pages Styles */

/* Active Navigation Link */
.nav-link.active {
    color: #9c5a41;
    font-weight: 600;
}

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

/* Page Header Styles */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #9c5a41 0%, #bf6412 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-subtitle {
    color: #dd9c81;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-description {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Projects Page Styles */
.projects-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid #9c5a41;
    color: #9c5a41;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #9c5a41;
    color: white;
}

.projects-gallery {
    padding: 4rem 0;
}

.projects-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.project-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.project-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.project-item:hover .project-image-container img {
    transform: scale(1.1);
}

.project-overlay-detailed {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(156, 90, 65, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-item:hover .project-overlay-detailed {
    opacity: 1;
}

.project-info-overlay {
    text-align: center;
    color: white;
}

.project-info-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.project-details {
    padding: 2rem;
}

.project-details h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.project-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.spec {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.spec i {
    color: #9c5a41;
}

.project-btn-detailed {
    background: #9c5a41;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.project-btn-detailed:hover {
    background: #824931;
    transform: translateY(-2px);
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: #f9f5f3;
}

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

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #bb6d36, #df7417);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* E-book Page Styles */
.ebook-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #9c5a41 0%, #bf6412 100%);
    color: white;
}

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

.ebook-subtitle {
    color: #dd9c81;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.ebook-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.ebook-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.ebook-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.feature i {
    color: #dd9c81;
    font-size: 1.2rem;
}

.ebook-download-btn {
    font-size: 1.1rem;
    padding: 1.25rem 2.5rem;
}

.ebook-preview {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ebook-hero-image {
    max-width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.ebook-hero-image:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.25));
}

.ebook-cover {
    width: 300px;
    height: 400px;
    background: url('images/livro3d.png') no-repeat center/cover;
    border-radius: 15px;
    
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #333;
    transform: perspective(1000px) rotateY(-5deg);
}

.ebook-cover-content h3 {
    font-size: 0.9rem;
    color: #9c5a41;
    font-weight: 600;
    letter-spacing: 1px;
}

.ebook-cover-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin: 0.5rem 0;
}

.ebook-cover-content > p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.ebook-cover-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}

.ebook-cover-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.ebook-author p {
    font-size: 0.8rem;
    color: #9c5a41;
    font-weight: 600;
}

/* E-book Content */
.ebook-content {
    padding: 6rem 0;
}

.ebook-chapters {
    display: grid;
    gap: 2rem;
}

.chapter {
    display: flex;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    align-items: flex-start;
}

.chapter-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #bb6d36, #df7417);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.chapter-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.chapter-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.chapter-content ul {
    list-style: none;
    padding: 0;
}

.chapter-content li {
    color: #666;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.chapter-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #9c5a41;
    font-weight: 600;
}

/* Download Section */
.download-section {
    padding: 6rem 0;
    background: #f9f5f3;
}

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

.ebook-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    padding: 0;
}

.ebook-image-large {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

.ebook-image-large:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.2));
}

.download-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.cta-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-description strong {
    color: #9c5a41;
    font-weight: 600;
}

.download-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.download-benefits {
    display: grid;
    gap: 1rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit i {
    color: #9c5a41;
    font-size: 1.2rem;
}

.ebook-purchase-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    padding: 1.25rem 2.5rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    width: 100%;
    justify-content: center;
    text-decoration: none;
}

.ebook-purchase-btn i {
    font-size: 1.1rem;
}

.purchase-note {
    text-align: center;
    font-size: 0.95rem;
    color: #666;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.purchase-note i {
    color: #9c5a41;
}

.download-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.ebook-form input,
.ebook-form select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.ebook-form input:focus,
.ebook-form select:focus {
    outline: none;
    border-color: #9c5a41;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #9c5a41;
    border-color: #9c5a41;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Testimonials */
.testimonials-section {
    padding: 6rem 0;
}

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

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

.testimonial-content p {
    font-style: italic;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author h4 {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #9c5a41;
    font-size: 0.9rem;
}

/* About Page Styles */
.about-hero {
    padding: 8rem 0 4rem;
    background: #f9f5f3;
}

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

.about-subtitle {
    color: #9c5a41;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.1;
}

.about-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* MVV Section */
.mvv-section {
    padding: 6rem 0;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.mvv-item {
    text-align: center;
    padding: 2rem;
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #bb6d36, #df7417);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.mvv-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.mvv-item p {
    color: #666;
    line-height: 1.6;
}

/* Story Section */
.story-section {
    padding: 6rem 0;
    background: #f9f5f3;
}

.story-timeline {
    max-width: 800px;
    margin: 0 auto;
}

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

.timeline-year {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #bb6d36, #df7417);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
}

.timeline-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose-section {
    padding: 6rem 0;
}

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

.differential-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.differential-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.differential-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #bb6d36, #df7417);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.3rem;
}

.differential-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.differential-item p {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: #f9f5f3;
}

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

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.member-photo {
    margin-bottom: 1.5rem;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #bb6d36, #df7417);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 2rem;
}

.member-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.member-info span {
    color: #9c5a41;
    font-weight: 500;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.member-info p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #9c5a41 0%, #bf6412 100%);
    color: white;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #dd9c81;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Contact Page Styles */
.contact-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #9c5a41 0%, #bf6412 100%);
    color: white;
    text-align: center;
}

.contact-subtitle {
    color: #dd9c81;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-description {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Info Section */
.contact-info-section {
    padding: 6rem 0;
}

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

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #bb6d36, #df7417);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.3rem;
}

.contact-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.email-centered {
    text-align: center;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contact-card small {
    color: #999;
    font-size: 0.8rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 6rem 0;
    background: #f9f5f3;
}

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

.contact-form-content-single {
    grid-template-columns: minmax(280px, 760px);
    justify-content: center;
}

.contact-form-content-single .form-info {
    text-align: center;
}

.contact-form-content-single .form-benefits {
    max-width: 440px;
    margin: 0 auto;
}

.form-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.form-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.form-benefits {
    display: grid;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-item i {
    color: #9c5a41;
    font-size: 1.2rem;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.detailed-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.detailed-contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.detailed-contact-form input,
.detailed-contact-form select,
.detailed-contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.detailed-contact-form input:focus,
.detailed-contact-form select:focus,
.detailed-contact-form textarea:focus {
    outline: none;
    border-color: #9c5a41;
}

.detailed-contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Map Section */
.map-section {
    padding: 6rem 0;
}

.map-container {
    margin-top: 2rem;
}

.map-placeholder {
    height: 400px;
    background: #f0f0f0;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e0e0e0;
}

.map-content {
    text-align: center;
    color: #666;
}

.map-content i {
    font-size: 3rem;
    color: #9c5a41;
    margin-bottom: 1rem;
}

.map-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.map-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: #f9f5f3;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.faq-item {
    background: white;
    border-radius: 15px;
    align-content: center;
    width: 100%;
    align-items: center;
    

    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f9f5f3;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.faq-question i {
    color: #9c5a41;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .ebook-title,
    .about-title,
    .contact-title {
        font-size: 2.5rem;
    }
    
    .ebook-hero-content,
    .about-hero-content,
    .contact-form-content,
    .download-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ebook-image-large {
        max-height: 400px;
    }
    
    .ebook-purchase-btn {
        width: 100%;
        font-size: 1.1rem;
        padding: 1.1rem 2rem;
    }
    
    .projects-grid-detailed {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .ebook-features {
        grid-template-columns: 1fr;
    }
    
    .ebook-cover {
        width: 250px;
        height: 350px;
        transform: none;
    }
    
    .chapter {
        flex-direction: column;
        text-align: center;
    }
    
    .mvv-grid,
    .differentials-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .detailed-contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-title,
    .ebook-title,
    .about-title,
    .contact-title {
        font-size: 2rem;
    }
    
    .ebook-cover {
        width: 200px;
        height: 280px;
        padding: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
    }
}



/* Blog Page Styles */

/* Blog Hero Section */
.blog-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #9c5a41 0%, #bf6412 100%);
    color: white;
    text-align: center;
}

.blog-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-subtitle {
    color: #dd9c81;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.blog-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.blog-description {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Blog Categories */
.blog-categories {
    padding: 3rem 0;
    background: #f9f5f3;
}

.categories-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-btn {
    background: transparent;
    border: 2px solid #9c5a41;
    color: #9c5a41;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.category-btn.active,
.category-btn:hover {
    background: #9c5a41;
    color: white;
    transform: translateY(-2px);
}

/* Featured Post */
.featured-post {
    padding: 4rem 0;
}

.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.featured-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.post-category {
    background: #9c5a41;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.post-date {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.featured-content {
    padding: 3rem;
}

.featured-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.2;
}

.featured-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.post-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-weight: 600;
    color: #333;
}

.read-time {
    font-size: 0.9rem;
    color: #666;
}

.read-more-btn {
    background: #9c5a41;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: #824931;
    transform: translateY(-2px);
}

/* Blog Posts Grid */
.blog-posts {
    padding: 4rem 0;
    background: #f9f5f3;
}

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

.blog-post {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

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

.blog-post:hover .post-image img {
    transform: scale(1.1);
}

.post-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.post-overlay .post-category {
    background: rgba(156, 90, 65, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.post-content {
    padding: 2rem;
}

.post-content .post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.post-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.3;
}

.post-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-footer .author {
    font-size: 0.9rem;
    color: #666;
}

.read-more {
    background: transparent;
    color: #9c5a41;
    border: 2px solid #9c5a41;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.read-more:hover {
    background: #9c5a41;
    color: white;
}

/* Newsletter Section */
.newsletter-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #9c5a41 0%, #bf6412 100%);
    color: white;
}

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

.newsletter-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.newsletter-benefits {
    display: grid;
    gap: 1rem;
}

.newsletter-benefits .benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.newsletter-benefits .benefit i {
    color: #dd9c81;
    font-size: 1.2rem;
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

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

.newsletter-signup input,
.newsletter-signup select {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.newsletter-signup input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-signup input:focus,
.newsletter-signup select:focus {
    outline: none;
    border-color: #dd9c81;
    background: rgba(255, 255, 255, 0.2);
}

.newsletter-signup select {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-signup select option {
    background: #9c5a41;
    color: white;
}

.newsletter-btn {
    width: 100%;
    background: #dd9c81;
    color: #9c5a41;
    font-size: 1.1rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.newsletter-btn:hover {
    background: #c78067;
}

.newsletter-disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
    line-height: 1.4;
    text-align: center;
}

/* Related Topics */
.related-topics {
    padding: 6rem 0;
}

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

.topic-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.topic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.topic-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #bb6d36, #df7417);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.3rem;
}

.topic-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.topic-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.topic-link {
    color: #9c5a41;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.topic-link:hover {
    border-color: #9c5a41;
}

/* Blog Responsive Design */
@media (max-width: 768px) {
    .blog-title {
        font-size: 2.5rem;
    }
    
    .categories-filter {
        gap: 0.5rem;
    }
    
    .category-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .featured-article {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .featured-image {
        height: 250px;
    }
    
    .featured-content {
        padding: 2rem;
    }
    
    .featured-content h2 {
        font-size: 1.5rem;
    }
    
    .post-author {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-info h2 {
        font-size: 2rem;
    }
    
    .topics-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        padding: 6rem 0 3rem;
    }
    
    .blog-title {
        font-size: 2rem;
    }
    
    .featured-content h2 {
        font-size: 1.3rem;
    }
    
    .newsletter-form {
        padding: 2rem;
    }
}


/* Post Template Styles */

/* Breadcrumb */
.breadcrumb {
    padding: 2rem 0 1rem;
    background: #f9f5f3;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #9c5a41;
}

.breadcrumb-separator {
    color: #999;
}

.breadcrumb-current {
    color: #9c5a41;
    font-weight: 500;
}

/* Post Header */
.post-header {
    padding: 3rem 0;
    background: white;
}

.post-header-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.post-category-badge {
    margin-bottom: 1.5rem;
}

.category-tag {
    background: #9c5a41;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #333;
}

.post-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    position: relative;
    width: 50px;
    height: 50px;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #bb6d36, #df7417);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.author-role {
    font-size: 0.9rem;
    color: #666;
}

.post-info {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.post-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.post-info i {
    color: #9c5a41;
}

/* Featured Image */
.post-featured-image {
    padding: 2rem 0;
    background: #f9f5f3;
}

.featured-image-container {
    max-width: 1000px;
    margin: 0 auto;
}

.featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-caption {
    text-align: center;
    margin-top: 1rem;
}

.image-caption p {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Post Content */
.post-content {
    padding: 4rem 0;
    background: white;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.main-content {
    position: relative;
}

/* Social Share Sidebar */
.social-share-sidebar {
    position: sticky;
    top: 120px;
    left: -80px;
    width: 60px;
    height: fit-content;
    z-index: 100;
}

.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.share-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    color: white;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.copy-link {
    background: #666;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Article Body */
.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.lead-paragraph {
    font-size: 1.3rem;
    font-weight: 500;
    color: #9c5a41;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.article-body h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin: 3rem 0 1.5rem;
    line-height: 1.3;
}

.article-body h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin: 2.5rem 0 1rem;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.post-quote {
    background: #f9f5f3;
    border-left: 4px solid #b76550;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
    font-size: 1.2rem;
    font-style: italic;
    color: #333;
}

.post-quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #9c5a41;
    font-weight: 600;
    font-style: normal;
}

.post-quote cite::before {
    content: "— ";
}

.content-image {
    margin: 3rem 0;
    text-align: center;
}

.content-image img {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.content-list {
    margin: 2rem 0;
    padding-left: 0;
    list-style: none;
}

.content-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.content-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #9c5a41;
    font-weight: 700;
    font-size: 1.2rem;
}

.info-box {
    background: linear-gradient(135deg, #f9f5f3, #faeadd);
    border: 1px solid #e8d8d0;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.info-box-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.info-box-header i {
    color: #9c5a41;
    font-size: 1.5rem;
}

.info-box-header h3 {
    color: #9c5a41;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.info-box-content p {
    margin: 0;
    color: #333;
}

/* Sidebar */
.post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #9c5a41;
}

/* Table of Contents */
.toc-list {
    list-style: none;
    padding: 0;
}

.toc-list li {
    margin-bottom: 0.75rem;
}

.toc-list a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.toc-list a:hover {
    color: #9c5a41;
}

/* Author Widget */
.author-bio {
    text-align: center;
}

.author-avatar-large {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.author-avatar-large img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-placeholder-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #bb6d36, #df7417);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.author-bio-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.author-bio-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.author-social {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.social-link {
    width: 35px;
    height: 35px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #9c5a41;
    color: white;
}

/* Categories Widget */
.categories-list {
    list-style: none;
    padding: 0;
}

.categories-list li {
    margin-bottom: 0.5rem;
}

.categories-list a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s ease;
}

.categories-list a:hover {
    color: #9c5a41;
}

.categories-list span {
    background: #f0f0f0;
    color: #666;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
}

/* Newsletter Widget */
.sidebar-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-newsletter-form input {
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.sidebar-newsletter-form input:focus {
    outline: none;
    border-color: #9c5a41;
}

.sidebar-newsletter-form .btn-primary {
    font-size: 0.9rem;
    padding: 0.75rem;
}

/* Post Tags */
.post-tags {
    padding: 2rem 0;
    background: #f9f5f3;
    border-top: 1px solid #e0e0e0;
}

.tags-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tags-label {
    font-weight: 600;
    color: #333;
}

.tags-list {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: white;
    color: #666;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #9c5a41;
    color: white;
    border-color: #9c5a41;
}

/* Post Share */
.post-share {
    padding: 3rem 0;
    background: white;
}

.share-wrapper {
    text-align: center;
}

.share-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
}

.share-buttons-horizontal {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn-large {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

.share-btn-large.facebook {
    background: #1877f2;
}

.share-btn-large.twitter {
    background: #1da1f2;
}

.share-btn-large.linkedin {
    background: #0077b5;
}

.share-btn-large.whatsapp {
    background: #25d366;
}

.share-btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Related Posts */
.related-posts {
    padding: 4rem 0;
    background: #f9f5f3;
}

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

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

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

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

.related-post:hover .related-post-image img {
    transform: scale(1.1);
}

.related-post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(156, 90, 65, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.related-post-content {
    padding: 1.5rem;
}

.related-post-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.related-post-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.related-post-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #999;
}

/* Comments Section */
.comments-section {
    padding: 4rem 0;
    background: white;
}

.comments-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.comments-wrapper h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
}

.comment-form-wrapper {
    background: #f9f5f3;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.comment-form-wrapper h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

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

.comment-form .form-group {
    margin-bottom: 1rem;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #9c5a41;
}

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

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.comment {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #f9f5f3;
    border-radius: 15px;
}

.comment-avatar {
    flex-shrink: 0;
}

.comment-avatar .avatar-placeholder {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #bb6d36, #df7417);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.comment-header h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.comment-date {
    font-size: 0.8rem;
    color: #999;
}

.comment-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.reply-btn {
    background: transparent;
    border: 1px solid #9c5a41;
    color: #9c5a41;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reply-btn:hover {
    background: #9c5a41;
    color: white;
}

/* Post Template Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-share-sidebar {
        display: none;
    }
    
    .post-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .post-title {
        font-size: 2rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .post-info {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .featured-image {
        height: 250px;
    }
    
    .article-body {
        font-size: 1rem;
    }
    
    .lead-paragraph {
        font-size: 1.1rem;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
    }
    
    .share-buttons-horizontal {
        flex-direction: column;
        align-items: center;
    }
    
    .share-btn-large {
        width: 200px;
        justify-content: center;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .comment-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .tags-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .post-title {
        font-size: 1.5rem;
    }
    
    .post-subtitle {
        font-size: 1rem;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
    
    .comment-form-wrapper {
        padding: 1.5rem;
    }
    
    .comment {
        padding: 1rem;
    }
}



/* New styles for project cards and 2x2 layout */
.projects-grid-detailed {
    display: grid;
    grid-template-columns: 1fr; /* Default to 1 column on small screens */
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

/* 2x2 layout for tablets and larger screens */
@media (min-width: 768px) {
    .projects-grid-detailed {
        grid-template-columns: repeat(2, 1fr); /* Exactly 2 columns for 2x2 layout */
        gap: 2.5rem;
    }
}

.project-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensure cards have equal height */
}

.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.project-image-container {
    position: relative;
    width: 100%;
    padding-bottom: 65%; /* Aspect ratio 4:3 for images */
    overflow: hidden;
}

.project-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-item:hover .project-image-container img {
    transform: scale(1.05);
}

.project-overlay-detailed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(156, 90, 65, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-item:hover .project-overlay-detailed {
    opacity: 1;
}

.project-info-overlay {
    color: white;
    text-align: center;
    padding: 1rem;
}

.project-info-overlay h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.project-info-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.project-details {
    padding: 1.5rem;
    flex-grow: 1; /* Allow details section to grow and push button to bottom */
    display: flex;
    flex-direction: column;
}

.project-details h3 {
    font-size: 1.5rem;
    color: #9c5a41;
    margin-bottom: 0.75rem;
}

.project-details p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1; /* Allow description to take available space */
}

.project-btn-detailed {
    display: inline-block;
    background: #c1854a;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    align-self: flex-start; /* Align button to the start of the flex container */
}

.project-btn-detailed:hover {
    background: #a9703f;
    transform: translateY(-2px);
}

/* Adjustments for existing styles to avoid conflicts */
.projects-gallery .container {
    padding-top: 2rem;
    padding-bottom: 3rem;
}







/* Responsive adjustments for smaller screens */
@media (max-width: 767px) {
    .projects-grid-detailed {
        grid-template-columns: 1fr; /* Single column on small screens */
    }

    .project-details h3 {
        font-size: 1.3rem;
    }

    .project-details p {
        font-size: 0.9rem;
    }

    .project-btn-detailed {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}



/* Project Gallery Styles */
.project-hero {
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.project-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: -2;
}

.project-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.project-hero-content {
    color: white;
    z-index: 2;
    position: relative;
}

.breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.project-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.project-hero-subtitle {
    font-size: 1.2rem;
    color: #dd9c81;
    margin-bottom: 1rem;
    font-weight: 500;
}

.project-hero-description {
    font-size: 1.1rem;
    max-width: 600px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Project Details Section */
.project-details-section {
    padding: 6rem 0;
    background: #f9f5f3;
}

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

.project-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.project-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.project-specs {
    margin-top: 2rem;
}

.project-specs h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #9c5a41;
}

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

.spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.spec-item i {
    font-size: 1.2rem;
    color: #9c5a41;
    width: 20px;
}

.spec-item strong {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.2rem;
}

.spec-item span {
    color: #666;
    font-size: 0.9rem;
}

.project-highlights {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.project-highlights h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #9c5a41;
}

.highlights-list {
    list-style: none;
    padding: 0;
}

.highlights-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.highlights-list i {
    color: #9c5a41;
    font-size: 1rem;
}

.highlights-list li:last-child {
    margin-bottom: 0;
}

/* Photo Gallery */
.photo-gallery {
    padding: 6rem 0;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item.main-image {
    grid-column: span 2;
    grid-row: span 2;
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(156, 90, 65, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

/* Modal Styles */
.modal {
    display: none; /* Escondido por padrão */
    position: fixed; /* Fixo na tela */
    z-index: 1000; /* Acima de tudo */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Scroll se necessário */
    background-color: rgba(0, 0, 0, 0.9); /* Fundo escuro */
    padding-top: 40px;
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px; /* Tamanho máximo da imagem */
    animation: zoom 0.6s; /* Efeito de zoom ao abrir */
}

@keyframes zoom {
    from {transform: scale(0);}
    to {transform: scale(1);}
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Responsividade para mobile */
@media screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}


/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #dd9c81;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #dd9c81;
}

.lightbox-prev {
    margin-left: -60px;
}

.lightbox-next {
    margin-right: -60px;
}

/* Related Projects */
.related-projects {
    padding: 6rem 0;
    background: #f9f5f3;
}

.related-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.related-project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.related-project-image {
    height: 200px;
    overflow: hidden;
}

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

.related-project-card:hover .related-project-image img {
    transform: scale(1.1);
}

.related-project-info {
    padding: 1.5rem;
}

.related-project-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.related-project-info p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.related-project-link {
    color: #9c5a41;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.related-project-link:hover {
    color: #824931;
}


.page-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #dd9c81;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Responsive Design for Gallery Pages */
@media (max-width: 1024px) {
    .project-details-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.main-image {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .project-hero {
        height: 50vh;
    }
    
    .project-hero-title {
        font-size: 2rem;
    }
    
    .project-hero-description {
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .gallery-item.main-image {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .related-projects-grid {
        grid-template-columns: 1fr;
    }
    
    .lightbox-prev {
        margin-left: -40px;
    }
    
    .lightbox-next {
        margin-right: -40px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        padding: 0.8rem;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .project-hero-title {
        font-size: 1.5rem;
    }
    
    .project-details-section {
        padding: 3rem 0;
    }
    
    .photo-gallery {
        padding: 3rem 0;
    }
    
    .related-projects {
        padding: 3rem 0;
    }
    
    .project-highlights {
        padding: 1.5rem;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .lightbox-close {
        top: -30px;
        font-size: 1.5rem;
    }
}


/* Mobile Responsive Styles for Hero Section */
@media (max-width: 768px) {
    /* Hero Section Mobile Styles */
    .hero {
        height: 120vh;
        padding: 0 10px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding-top: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: space-around;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .stat {
        padding: 1rem 0.75rem;
        min-width: 80px;
        flex: 1;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .scroll-indicator {
        bottom: 1rem;
    }
    
    .scroll-arrow {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-stats {
        gap: 0.5rem;
    }
    
    .stat {
        padding: 0.75rem 0.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 375px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-content {
        padding-top: 0.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
}



/* Mobile Menu Specific Styles */
@media (max-width: 768px) {
    .header.menu-open {
        position: fixed;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
}








/* Technical Specifications Section */
.technical-specs-section {
    padding: 5rem 0;
    background: #f9f5f3;
}

.specs-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

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

.spec-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.spec-item h3 {
    color: #9c5a41;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.spec-item p {
    color: #666;
    line-height: 1.6;
}

.specs-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-box {
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid;
}

.info-box.included {
    background: #f9f5f3;
    border-color: #9c5a41;
}

.info-box.not-included {
    background: #fff3cd;
    border-color: #ffc107;
}

.info-box h4 {
    color: #9c5a41;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-box p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Dimensions Section */
.dimensions-section {
    padding: 5rem 0;
    background: white;
}

.dimensions-table-container {
    margin-top: 2rem;
    overflow-x: auto;
}

.dimensions-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dimensions-table th {
    background: #9c5a41;
    color: white;
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
}

.dimensions-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    color: #666;
}

.dimensions-table tbody tr:hover {
    background: #f9f5f3;
}

.dimensions-table tbody tr:last-child td {
    border-bottom: none;
}

.dimensions-note {
    margin-top: 2rem;
    text-align: center;
}

.dimensions-note p {
    color: #666;
    font-style: italic;
}


@media (max-width: 480px) {
    .dimensions-table th,
    .dimensions-table td {
        padding: 0.75rem;
        font-size: 0.8rem;
    }
}

/* ========================================================================== 
   MOBILE RESPONSIVENESS IMPROVEMENTS FOR PROJECTS PAGE
   ========================================================================== */

/* Mobile Navigation Improvements */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
        margin-right: 0 !important;
        background: transparent !important;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(249, 245, 243, 0.98);
        backdrop-filter: blur(20px);
        transition: left 0.3s ease;
        z-index: 999;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        display: flex !important;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        width: 100%;
        max-width: 400px;
        justify-content: center;
        align-items: center;
        list-style: none;
        margin: 0 auto;
    }
    
    .nav-list li {
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(156, 90, 65, 0.1);
        display: block;
    }
    
    .header-actions .cta-button {
        display: none;
    }
}

/* Page Header Mobile Improvements */
@media (max-width: 768px) {
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .page-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .page-subtitle {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }
    
    .page-description {
        font-size: 1rem;
        padding: 0 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 5rem 0 2.5rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .page-description {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
}

/* Projects Gallery Mobile Improvements */
@media (max-width: 768px) {
    .projects-gallery {
        padding: 3rem 0;
    }
    
    .projects-grid-detailed {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .project-item {
        margin-bottom: 1rem;
    }
    
    .project-image-container {
        padding-bottom: 60%;
    }
    
    .project-details {
        padding: 1.5rem;
    }
    
    .project-details h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .project-details p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.25rem;
    }
    
    .project-btn-detailed {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .projects-gallery {
        padding: 2rem 0;
    }
    
    .projects-grid-detailed {
        padding: 0 0.5rem;
        gap: 1.5rem;
    }
    
    .project-details {
        padding: 1.25rem;
    }
    
    .project-details h3 {
        font-size: 1.2rem;
    }
    
    .project-details p {
        font-size: 0.9rem;
    }
    
    .project-btn-detailed {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Technical Specifications Mobile Improvements */
@media (max-width: 768px) {
    .technical-specs-section {
        padding: 4rem 0;
    }
    
    .specs-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .specs-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .spec-item {
        padding: 1.5rem;
        text-align: center;
    }
    
    .spec-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .spec-item p {
        font-size: 0.9rem;
    }
    
    .specs-info {
        gap: 1rem;
    }
    
    .info-box {
        padding: 1.25rem;
    }
    
    .info-box h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .info-box p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .technical-specs-section {
        padding: 3rem 0;
    }
    
    .spec-item {
        padding: 1.25rem;
    }
    
    .spec-item h3 {
        font-size: 1rem;
    }
    
    .spec-item p {
        font-size: 0.85rem;
    }
    
    .info-box {
        padding: 1rem;
    }
    
    .info-box h4 {
        font-size: 0.95rem;
    }
    
    .info-box p {
        font-size: 0.8rem;
    }
}

/* Dimensions Section Mobile Improvements */
@media (max-width: 768px) {
    .dimensions-section {
        padding: 4rem 0;
    }
    
    .dimensions-table-container {
        margin-top: 2rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .dimensions-table {
        min-width: 500px;
        font-size: 0.9rem;
    }
    
    .dimensions-table th,
    .dimensions-table td {
        padding: 1rem 0.75rem;
        white-space: nowrap;
    }
    
    .dimensions-table th {
        font-size: 0.85rem;
    }
    
    .dimensions-note {
        margin-top: 1.5rem;
        padding: 0 1rem;
    }
    
    .dimensions-note p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .dimensions-section {
        padding: 3rem 0;
    }
    
    .dimensions-table {
        min-width: 450px;
        font-size: 0.8rem;
    }
    
    .dimensions-table th,
    .dimensions-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .dimensions-note {
        padding: 0 0.5rem;
    }
    
    .dimensions-note p {
        font-size: 0.85rem;
    }
}

/* CTA Section Mobile Improvements */
@media (max-width: 768px) {
    .cta-section {
        padding: 4rem 0 2rem;
    }
    
    .cta-content {
        text-align: center;
        padding: 0 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }
    
    .cta-content .btn-primary {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 3rem 0 1.5rem;
    }
    
    .cta-content {
        padding: 0 0.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-content .btn-primary {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
}

/* Footer Mobile Improvements */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p,
    .footer-section li {
        font-size: 0.9rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 1rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .footer-bottom {
        margin-top: 2rem;
        padding-top: 2rem;
        text-align: center;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-section {
        padding: 0 1rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .footer-section p,
    .footer-section li {
        font-size: 0.85rem;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
}

/* Container Mobile Improvements */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

/* Section Headers Mobile Improvements */
@media (max-width: 768px) {
    .section-header {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }
    
    .section-description {
        font-size: 1rem;
        line-height: 1.5;
    }
}

/* Services Page Specific Styles */
.mentorship-highlight {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f5f2 0%, #e8ddd4 100%);
    border-radius: 15px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid #9c5a41;
    position: relative;
    overflow: hidden;
}

.mentorship-highlight::before {
    content: 'DESTAQUE';
    position: absolute;
    top: 10px;
    right: 10px;
    background: #9c5a41;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 1;
}

.mentorship-summary p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5a4a3a;
    margin: 0;
}

.mentorship-pricing {
    display: flex;
    justify-content: center;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid #9c5a41;
    min-width: 250px;
}

.pricing-card h4 {
    color: #9c5a41;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #9c5a41;
    margin-bottom: 0.5rem;
}

.duration {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 500;
}

.pricing-description {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
}

/* Pricing Section Styles */
.pricing-section {
    padding: 6rem 0;
    background: #fafafa;
    border-top: 5px solid #9c5a41;
    border-bottom: 5px solid #9c5a41;
}

.pricing-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.pricing-category {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid #9c5a41;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.category-header {
    margin-bottom: 2rem;
    text-align: center;
}

.category-header h3 {
    color: #9c5a41;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.category-header h4 {
    color: #5a4a3a;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.category-header p {
    color: #777;
    font-size: 1rem;
    margin: 0;
}

.table-container {
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #9c5a41;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-table thead {
    background: linear-gradient(135deg, #9c5a41 0%, #c1854a 100%);
    color: white;
    position: relative;
}

.pricing-table thead::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #9c5a41 0%, #c1854a 100%);
}

.pricing-table th {
    padding: 1.2rem 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.pricing-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
}

.pricing-table tbody tr:hover {
    background: #f9f5f3;
    transform: translateY(-1px);
    transition: all 0.3s ease;
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table td:last-child {
    font-weight: 600;
    color: #9c5a41;
    font-size: 1.1rem;
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #9c5a41 0%, #c1854a 100%);
    color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid #9c5a41;
    position: relative;
    overflow: hidden;
}

.pricing-note::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.pricing-note p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Payment Section Styles */
.payment-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f5f2 0%, #e8ddd4 100%);
    position: relative;
    overflow: hidden;
}

.payment-section::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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(156, 90, 65, 0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.payment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.payment-card, .contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid #9c5a41;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-card:hover, .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.payment-icon, .contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9c5a41 0%, #c1854a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.payment-card h3, .contact-card h3 {
    color: #9c5a41;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.payment-list {
    text-align: left;
    margin-bottom: 1.5rem;
}

.payment-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.payment-item i {
    color: #9c5a41;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.payment-item span {
    color: #5a4a3a;
    font-size: 1rem;
}

.delivery-note {
    color: #777;
    font-style: italic;
    margin: 0;
    font-size: 0.9rem;
}

.contact-details {
    margin-bottom: 1.5rem;
}

.payment-section .contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.payment-section .contact-item i {
    color: #9c5a41;
    margin-right: 0.75rem;
    font-size: 1.1rem;
    width: 20px;
    background: none;
    border-radius: 0;
    min-width: auto;
    min-height: auto;
    height: auto;
}

.contact-item span {
    color: #5a4a3a;
    font-size: 1rem;
}

.contact-signature {
    color: #777;
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive Design for Services Page */
@media (max-width: 768px) {
    .mentorship-highlight {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .pricing-categories {
        gap: 2rem;
    }
    
    .pricing-category {
        padding: 1.5rem;
    }
    
    .payment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .payment-card, .contact-card {
        padding: 2rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .mentorship-highlight {
        padding: 1.5rem;
    }
    
    .pricing-card {
        min-width: auto;
        padding: 1.5rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .pricing-category {
        padding: 1.5rem;
    }
    
    .payment-card, .contact-card {
        padding: 1.5rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 0.5rem 0.25rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 2.5rem;
        padding: 0 0.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-description {
        font-size: 0.9rem;
    }
}

