/* Definição das fontes com @font-face */
@font-face {
    font-family: 'Merriweather Sans';
    src: url('/fonts/merriweathersans/MerriweatherSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Merriweather Sans';
    src: url('/fonts/merriweathersans/MerriweatherSans-Bold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('/fonts/roboto/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('/fonts/roboto/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('/fonts/roboto/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Garantir que o body ocupe a altura total e empurre o footer para o fundo */
html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #424242;
    background-color: #F5F7FA;
}

main {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
}

/* Estilização geral */
header {
    background-color: #E3F2FD;
    color: #1565C0;
}

header h1 {
    font-family: 'Merriweather Sans', sans-serif;
    font-weight: 600;
    font-size: 2.5rem;
    margin: 0;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 1.5rem;
    }
}

.navbar {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E0E0E0;
    min-height: 150px;
    max-height: 150px;
    display: flex;
    align-items: center;
}

.navbar-collapse {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.navbar-logo {
    width: 50px;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
}

.navbar .nav-link {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: #424242;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #1976D2 !important;
}

@media (max-width: 991px) {
    .navbar {
        min-height: 60px;
        max-height: none;
    }

    .navbar-collapse {
        flex-direction: column;
        gap: 0.5rem;
        background-color: #FFFFFF;
        padding: 10px 0;
    }

    .navbar-nav {
        padding: 10px 0;
        text-align: center;
    }

    .nav-link {
        padding: 10px 20px;
    }

    .navbar-logo {
        width: 80px;
    }
}

/* Ajuste para páginas de venda */
.sales-page .navbar {
    min-height: 50px;
    max-height: 50px;
}

@media (max-width: 991px) {
    .sales-page .navbar {
        min-height: 50px;
        max-height: none;
    }
}

.intro h2 {
    font-family: 'Merriweather Sans', sans-serif;
    font-weight: 400;
    color: #1565C0;
}

.intro p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
}

.product-card {
    transition: all 0.3s ease;
    background-color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card .bi {
    color: #EF5350;
}

.product-card h3 {
    font-family: 'Merriweather Sans', sans-serif;
    font-weight: 400;
    color: #1565C0;
}

.product-card .card-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
}

.product-card .btn {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    background-color: #EF5350;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-top: 1rem;
    align-self: center;
}

.product-card .btn:hover {
    background-color: #E53935;
}

footer {
    background-color: #E3F2FD;
    color: #424242;
}

footer p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

footer a {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: #1976D2;
    text-decoration: none;
}

footer a:hover {
    color: #D81B60;
}

/* Ajustes gerais */
.container {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

h2, h3 {
    color: #1565C0;
}

p, ul {
    font-size: 1.1rem;
}

/* Ajuste para botões gerais (ex.: formulário de contato) */
.btn {
    background-color: #EF5350;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: #FFFFFF;
}

.btn:hover {
    background-color: #E53935;
    color: #FFFFFF;
}

/* Estilização das imagens dos produtos */
.product-card img {
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 200px;
}

/* Imagens nas páginas de venda */
.container img {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Mini-galeria nas páginas de venda */
.row img {
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.row img:hover {
    transform: scale(1.05);
}

/* Ajuste para alinhar o botão "Saiba Mais" nos cards */
.product-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.product-card .card-content {
    flex-grow: 1;
}

.hero {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%); /* Mantém o gradiente existente */
    width: 100%; /* Garante largura total */
    margin: 0; /* Remove margens externas */
    padding: 4rem 0; /* Mantém o padding vertical */
    border-radius: 0; /* Remove bordas arredondadas, se houver */
}


.hero h1 {
    font-family: 'Merriweather Sans', sans-serif;
    font-weight: 600;
    color: #1565C0;
}

.hero p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.25rem;
    color: #424242;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.hero .btn-cta {
    font-size: 1.2rem;
    padding: 0.75rem 2rem;
}

.hero .container {
    max-width: 1200px; /* Limita o conteúdo interno, ajustável conforme necessário */
}

.hero .lead {
    font-size: 1.25rem; /* Default lead size */
    color: #424242; /* Your body text color */
    max-width: 800px; /* Limits width for readability */
    margin: 0 auto 1rem; /* Centers and adds spacing */
}

.hero .fw-bold.text-uppercase {
    color: #EF5350; /* CTA color for emphasis */
    font-size: 1.3rem; /* Slightly larger for impact */
}

.hero ul.list-unstyled {
    max-width: 800px; /* Matches paragraph width */
    margin: 0 auto 2rem; /* Centers and adds spacing below */
    padding: 0;
}

.hero ul.list-unstyled li {
    font-size: 1.1rem; /* Slightly smaller than lead */
    color: #424242;
    line-height: 1.6; /* Improves readability */
}

@media (max-width: 576px) {
    .hero .lead {
        font-size: 1.1rem; /* Smaller on mobile */
    }
    .hero .fw-bold.text-uppercase {
        font-size: 1.15rem;
    }
    .hero ul.list-unstyled li {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 2rem 0; /* Reduz padding em telas pequenas */
    }
}

.btn-cta {
    background-color: #EF5350;
    border: none;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-cta:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.btn-cta:hover {
    background-color: #E53935;
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .card {
        padding: 1.5rem;
    }
    .card h4 {
        font-size: 1.25rem;
    }
    .card p {
        font-size: 1rem;
    }
}

.bg-cta {
    background: linear-gradient(135deg, #EF5350 0%, #D81B60 100%); /* Gradiente vermelho-rosa */
    color: #FFFFFF;
    padding: 3rem 0;
    border-radius: 8px;
}

.product-image {
    max-width: 100%;
    max-height: 720px; /* Limita altura para evitar imagens muito grandes */
    object-fit: contain; /* Preserva proporção */
    width: auto;
    margin: 0 auto;    
}
@media (max-width: 576px) {
    .product-image {
        max-height: 300px; /* Menor em telas pequenas */
    }
}

.benefit-icon {
    font-size: 2.5rem; /* Tamanho do ícone */
    color: #EF5350; /* Cor do CTA, consistente com a paleta */
    display: block; /* Garante centralização */
    margin: 0 auto 1rem; /* Espaçamento inferior */
}

.card {
    transition: transform 0.3s ease; /* Suaviza o hover */
}

.card:hover {
    transform: translateY(-5px); /* Efeito de elevação no hover */
}

@media (max-width: 576px) {
    .benefit-icon {
        font-size: 2rem; /* Menor em telas pequenas */
    }
}

.section-padding {
    padding: 3rem 0; /* Matches other sections */
}

/* Ensure text aligns with your style */
.sobre-produtora p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: #424242;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.sobre-produtora h2 {
    font-family: 'Merriweather Sans', sans-serif;
    font-weight: 600;
    color: #1565C0;
}

.produtor {
    width: auto;
    height: 450px;
}

