/* Banner Portolio */
.banner-portfolio {
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0 40px 0;
    background-color: white;
}

.banner-portfolio img {
    width: 50%;
    height: auto;
    object-fit: cover;
}

/* Portfolio Section com imagem de fundo */
.portfolio-section {
    background-color: #fff; /* fallback */
    background-image: url("/public/assets/images/cabeamentos.jpg"); /* sua imagem */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* efeito parallax leve */
    color: var(--cor-white); /* texto branco */
    font-family: "Quicksand", sans-serif;
    padding: 60px 20px;
    position: relative;
}

/* Overlay escuro */
.portfolio-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* ajuste a opacidade se quiser */
    z-index: 1;
}

/* Container acima do overlay */
.portfolio-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

/* Títulos em verde */
.portfolio-section h2 {
    color: var(--cor-button);
    font-size: 1.5rem;
}

.portfolio-section h3 {
    color: var(--cor-button);
}

/* Parágrafo e listas em branco */
.portfolio-section p,
.portfolio-section li {
    color: var(--cor-white);
}

/* Strong com verde */
.portfolio-section li strong {
    color: var(--cor-button);
}

/* Cards */
.cards-portfolio {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.card-portfolio {
    background-color: rgba(
        0,
        0,
        0,
        0.5
    ); /* semi-transparente para sobrepor imagem */
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s, background-color 0.3s;
}

.card-portfolio:hover {
    transform: translateY(-5px);
    background-color: rgba(0, 0, 0, 0.7);
}

.card-portfolio h3 {
    margin-bottom: 10px;
}

.card-portfolio ul {
    list-style-type: disc;
    margin-left: 20px;
}

.card-portfolio li {
    margin-bottom: 8px;
}

/* Section Portfólio */
.about-portfolio {
    background-color: #fff;
    color: #333;
    font-family: "Quicksand", sans-serif;
    padding: 80px 20px;
}

/* Container */
.about-portfolio .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Layout em duas colunas */
.portfolio-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap; /* responsivo */
}

/* Texto */
.portfolio-text {
    flex: 1;
    min-width: 300px;
}

.about-portfolio .section-title {
    color: #77995e;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.about-portfolio .portfolio-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

/* Imagem */
.portfolio-logo {
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: center;
}

.portfolio-logo img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Multivendor Section */
.multivendor-section {
    position: relative;
    background: url("/public/assets/images/circuitos.jpg") no-repeat center
        center/cover;
    background-attachment: fixed;
    padding: 100px 20px;
    color: #fff;
    font-family: "Quicksand", sans-serif;
}

.multivendor-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* camada escura para contraste */
}

.multivendor-section .container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 1;
    text-align: left;
}

/* Título */
.multivendor-section .section-title {
    color: #77995e;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 30px;
}

/* Texto inicial */
.multivendor-section .intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 40px;
}

/* Lista de benefícios */
.multivendor-section .benefits {
    list-style: none;
    padding: 0;
}

.multivendor-section .benefits li {
    font-size: 1.1rem;
    margin-bottom: 18px;
    padding-left: 25px;
    position: relative;
}

.multivendor-section .benefits li::before {
    content: "✔";
    color: #77995e;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* DC HW Support Section */
.support-section {
    background: #fff;
    padding: 80px 20px;
    font-family: "Quicksand", sans-serif;
    color: #333;
}

.support-section .container {
    max-width: 1100px;
    margin: 0 auto;
}

.support-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1a1d26;
    border-left: 6px solid #77995e;
    padding-left: 12px;
}

.support-section .subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #666;
}

.support-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.support-cards .card-suport {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-left: 5px solid #77995e;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support-cards .card-suport:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Diferenciais Section */
.diferenciais-section {
    background: #fff;
    padding: 80px 20px;
    font-family: "Quicksand", sans-serif;
    color: #333;
}

.diferenciais-section .container {
    max-width: 1100px;
    margin: 0 auto;
}

.diferenciais-section .section-title {
    font-size: 1.5rem; /* mantém padrão */
    margin-bottom: 30px;
    color: #1a1d26;
    border-left: 6px solid #77995e;
    padding-left: 12px;
}

.diferenciais-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.diferenciais-list li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    font-size: 1.1rem;
    color: #333;
}

.diferenciais-list li::before {
    content: "✔"; /* marcador diferente */
    color: #77995e;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.diferenciais-section .intro-portfolio {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555;
}

.diferenciais-section .subsection-title {
    font-size: 1.2rem;
    color: #77995e;
    margin-bottom: 15px;
}

/* Serviços Section */
.services-section {
    padding: 80px 20px;
    font-family: "Quicksand", sans-serif;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px; /* largura máxima para centralizar */
    margin: 0 auto; /* centraliza na tela */
}

.service-card {
    background: #fff;
    padding: 30px;
    border-left: 6px solid #77995e;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.service-card.alt {
    background: #f9f9f9; /* contraste no segundo bloco */
}

.service-card .section-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1d26;
}

.service-card .subtitle {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
    font-size: 1rem;
    color: #333;
}

.service-card li::before {
    content: "✔";
    color: #77995e;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Asset Section */
.asset-section {
    padding: 80px 20px;
    background: #f9f9f9; /* leve contraste das outras sections */
    text-align: center; /* centraliza o texto */
    font-family: "Quicksand", sans-serif;
}

.asset-section .container {
    max-width: 700px;
    margin: 0 auto;
}

.asset-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1d26;
}

.asset-section .subtitle {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #555;
}

.asset-list {
    list-style: none;
    padding: 0;
    text-align: left; /* mantém os itens alinhados */
}

.asset-list li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    font-size: 1rem;
    color: #333;
}

.asset-list li::before {
    content: "✔";
    color: #77995e;
    font-weight: bold;
    position: absolute;
    left: 0;
}

@media (max-width: 900px) {
    .banner-portfolio{
        margin: 0;
    }
    
    .banner-portfolio img {
        width: 100%;
    }

     .portfolio-section.parallax-portfolio, .multivendor-section {
        background-attachment: scroll;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .banner-portfolio{
        margin: 0;
    }

    .banner-portfolio img {
        width: 100%;
    }

     .portfolio-section.parallax-portfolio, .multivendor-section {
        background-attachment: scroll;
    }

    .portfolio-section {
        padding: 80px 20px;
    }

    .portfolio-section h2 {
        font-size: 2rem;
    }

    .portfolio-section p {
        font-size: 1rem;
    }

    .cards-portfolio {
        grid-template-columns: 1fr; 
    }
}
