/* css/home.css */

/* Seção "Banner Principal" */
.vedavel-section {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px;
    background-color: rgba(0, 0, 0, 0.5);
    font-family: var(--fonte-principal);
    color: #ffffff;
    overflow: hidden;
}

.vedavel-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.vedavel-content {
    flex: 1;
    max-width: 50%;
}

.vedavel-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.vedavel-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.vedavel-buttons {
    display: flex;
}

.button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    margin-right: 20px;
    transition: background-color 0.3s ease;
}

.produtos {
    background-color: var(--cor-secundaria);
    color: #fff;
}

.orcamento {
    background-color: var(--cor-secundaria);
    color: #fff;
}

.button:hover {
    background-color: var(--cor-primaria);
}

.vedavel-image {
    flex: 1;
    max-width: 45%;
    text-align: center;
}

.vedavel-image-banner {
    max-width: 100%;
    height: auto;
}

.vedavel-image img {
    max-width: 100%;
    height: auto;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .vedavel-section {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .vedavel-content {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .vedavel-content h1 {
        font-size: 2.2rem;
    }

    .vedavel-buttons {
        flex-direction: column;
        align-items: center;
    }

    .button {
        margin: 10px 0;
        width: 80%;
    }

    .vedavel-image {
        max-width: 80%;
    }
}

/* Section - Sobre a Vedavel */
.sobre-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    font-family: var(--fonte-principal);
}

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

.sobre_titulo {
    color: var(--cor-secundaria);
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
}

.sobre-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.sobre-texto {
    flex: 1;
}

.sobre-texto p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 25px;
}

.sobre-imagem {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.sobre-imagem img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.sobre-imagem img:hover {
    transform: scale(1.03);
}

.sobre-texto>div:last-child {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

/* Section - Produtos em Destaque */
.produtos-destaque-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    font-family: var(--fonte-principal);
}

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

.produtos-carousel {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
}

.produtos-carousel::-webkit-scrollbar {
    display: none;
}

.produto-card {
    min-width: 260px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    background-color: #fff;
}

.produto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.produto-imagem {
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.produto-imagem img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.produto-card:hover .produto-imagem img {
    transform: scale(1.05);
}

.produto-card h3 {
    font-size: 1.2em;
    padding: 15px 20px 5px;
    color: #333;
}

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

.produto-link {
    display: block;
    padding: 12px 20px;
    background-color: #f0f0f0;
    color: var(--cor-secundaria);
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.produto-link:hover {
    background-color: var(--cor-secundaria);
    color: white;
}

.produtos-navegacao {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.produtos-navegacao button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f0f0f0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.produtos-navegacao button:hover {
    background-color: #0056b3;
    color: white;
}

.ver-todos {
    text-align: center;
    margin-top: 40px;
}

/* Section - Depoimentos */
.depoimentos-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    font-family: var(--fonte-principal);
}

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

.depoimentos-slider {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
}

.depoimentos-slider::-webkit-scrollbar {
    display: none;
}

.depoimento-card {
    min-width: 350px;
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.depoimento-texto {
    position: relative;
    margin-bottom: 20px;
}

.aspas {
    color: #ddd;
    font-size: 2em;
    position: absolute;
    top: -10px;
    left: -10px;
}

.depoimento-texto p {
    font-style: italic;
    line-height: 1.6;
    color: #555;
    position: relative;
    z-index: 1;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    gap: 15px;
}

.autor-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.autor-info h4 {
    margin: 0;
    font-size: 1.1em;
    color: #333;
}

.autor-info p {
    margin: 5px 0 0;
    font-size: 0.9em;
    color: #777;
}

.depoimentos-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #0056b3;
    transform: scale(1.2);
}

/* Section - Nossos Clientes */
.clientes-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    font-family: var(--fonte-principal);
}

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

.clientes-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.cliente-logo {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.cliente-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Section - Nosso catálogo (index) */
.catalogo-section {
    background-color: var(--cor-secundaria);
    padding: 80px 20px;
    text-align: center;
    font-family: var(--fonte-principal);
    padding-bottom: 60px;
}

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

.catalogo-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 60px;
    color: #ffffff;
}

.catalogo-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.stat {
    flex: 1;
    min-width: 250px;
    margin: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
    display: block;
    margin-bottom: 15px;
}

.stat p {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.6;
}

.catalogo-download {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: #f0f5fa;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.download-info {
    flex: 2;
}

.download-info h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #333;
}

.download-info p {
    color: #555;
    line-height: 1.6;
}

.download-button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    background-color: #0056b3;
    color: white;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.download-button i {
    font-size: 1.5em;
}

.download-button:hover {
    background-color: #003d82;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Section - Porque escolher a vedavel */
.porque-escolher-section {
    background-color: #f0f0f0;
    padding: 60px 20px;
    text-align: center;
    font-family: var(--fonte-principal);
}

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

.porque-escolher-content h2 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #333;
}

.porque-escolher-item {
    background-color: #e0e0e0;
    padding: 20px;
    border-radius: 5px;
    text-align: left;
    margin-bottom: 20px;
}

.porque-escolher-item h3 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.porque-escolher-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

/* Media Queries */
@media (min-width: 769px) {
    .porque-escolher-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .porque-escolher-content h2 {
        grid-column: 1 / -1;
    }
}

@media (max-width: 992px) {
    .sobre-content,
    .catalogo-download {
        flex-direction: column;
        gap: 30px;
    }

    .sobre-texto,
    .sobre-imagem,
    .download-info {
        width: 100%;
    }

    .depoimento-card {
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .produtos-carousel,
    .depoimentos-slider {
        gap: 20px;
    }

    .produto-card {
        min-width: 220px;
    }

    .depoimento-card {
        min-width: 280px;
        padding: 20px;
    }

    .clientes-logos {
        gap: 30px;
    }

    .catalogo-content h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .stat {
        min-width: 100%;
        margin: 30px 0;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .porque-escolher-item {
        width: 100%;
        margin-bottom: 15px;
    }
}