/* ===== SEÇÃO PRODUTO ===== */
.produto {
    background-color: #eef1f6; /* Fundo azulado mais escuro */
    background-image: 
        linear-gradient(to right, rgba(51, 86, 111, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(51, 86, 111, 0.03) 1px, transparent 1px);
    background-size: 20px 20px; /* Tamanho do grid */
    padding: var(--spacing-lg) 0;
    position: relative;
    overflow: hidden;
}

/* Círculos decorativos suaves */
.produto::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(51, 86, 111, 0.06) 0%, rgba(51, 86, 111, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.produto::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(51, 86, 111, 0.08) 0%, rgba(51, 86, 111, 0) 75%);
    border-radius: 50%;
    z-index: 1;
}

/* Linhas decorativas nos cantos */
.produto .corner-tr {
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, transparent 62%, var(--azul-claro) 62.5%, transparent 62.6%),
                linear-gradient(225deg, transparent 62%, var(--azul-claro) 62.5%, transparent 62.6%),
                linear-gradient(45deg, transparent 49.5%, var(--azul-medio) 49.6%, transparent 50.5%);
    background-size: 80px 80px, 80px 80px, 30px 30px;
    background-repeat: no-repeat, no-repeat, repeat;
    background-position: top right, top right, top right;
    opacity: 0.5;
    z-index: 1;
}

.produto .corner-bl {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 250px;
    height: 250px;
    background: linear-gradient(315deg, transparent 62%, var(--azul-claro) 62.5%, transparent 62.6%),
                linear-gradient(45deg, transparent 62%, var(--azul-claro) 62.5%, transparent 62.6%),
                linear-gradient(225deg, transparent 49.5%, var(--azul-medio) 49.6%, transparent 50.5%);
    background-size: 80px 80px, 80px 80px, 30px 30px;
    background-repeat: no-repeat, no-repeat, repeat;
    background-position: bottom left, bottom left, bottom left;
    opacity: 0.5;
    z-index: 1;
}

.produto .container {
    position: relative;
    z-index: 2;
}

.produto h2 {
    color: var(--azul-escuro-2);
    margin-bottom: var(--spacing-md);
    font-size: 2.8rem;
    position: relative;
    display: block;
    text-align: center;
    width: 100%;
}

.produto-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    position: relative;
    overflow: visible;
}

.produto-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.produto-descricao {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--texto-escuro);
    margin-bottom: var(--spacing-md);
}

.produto-info h3 {
    color: var(--azul-escuro-1);
    margin-bottom: var(--spacing-sm);
    font-size: 1.4rem;
    position: relative;
    display: inline-block;
}

.produto-features {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.produto-features li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.produto-features li:last-child {
    margin-bottom: 0;
}

.produto-features li:hover {
    transform: translateX(5px);
}

.produto-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-color: var(--azul-medio);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(51, 86, 111, 0.2);
}

.produto-features li::after {
    content: '✓';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--branco);
    font-size: 0.8rem;
    font-weight: bold;
}

.produto-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.oil-image {
    max-width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.12));
    will-change: transform;
    animation: pulse-zoom 6s infinite alternate cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@keyframes pulse-zoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

/* Media Queries */
@media (max-width: 992px) {
    .produto h2 {
        font-size: 2.4rem;
    }
    
    .produto-descricao {
        font-size: 1rem;
    }
    
    .produto-features li {
        font-size: 1rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .oil-image {
        max-height: 320px;
    }
    
    .produto-card {
        gap: var(--spacing-sm);
        padding: var(--spacing-sm);
    }
    
    .produto-info h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .produto {
        min-height: 100vh; /* Fallback */
        min-height: calc(var(--vh, 1vh) * 100);
        height: 100vh; /* Fallback */
        height: calc(var(--vh, 1vh) * 100);
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: var(--spacing-md) 0;
        box-sizing: border-box;
    }
    
    .produto .container {
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: center;
    }
    
    .produto-card {
        flex-direction: column-reverse;
        gap: var(--spacing-sm);
        padding: var(--spacing-sm);
        flex: 1;
        display: flex;
        justify-content: space-between;
        overflow-y: auto;
        max-height: calc(100vh - 150px); /* Fallback */
        max-height: calc((var(--vh, 1vh) * 100) - 150px);
    }
    
    .produto-visual {
        display: flex;
        justify-content: center;
        align-items: center;
        flex: 0 0 auto;
    }
    
    .produto-info {
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch; /* Para melhor performance em iOS */
    }
    
    .produto-info h3 {
        font-size: 1.3rem;
    }
    
    .oil-image {
        max-height: 250px;
        margin-bottom: var(--spacing-sm);
    }
    
    .produto h2 {
        font-size: 2.2rem;
        margin-bottom: var(--spacing-sm);
        flex: 0 0 auto;
    }
}

@media (max-width: 576px) {
    .produto {
        min-height: 100vh; /* Fallback */
        min-height: calc(var(--vh, 1vh) * 100);
        height: 100vh; /* Fallback */
        height: calc(var(--vh, 1vh) * 100);
        padding: var(--spacing-md) 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .oil-image {
        max-height: 180px;
    }
    
    .produto h2 {
        font-size: 1.8rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .produto-features li {
        font-size: 0.95rem;
        padding-left: 2rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .produto-descricao {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: var(--spacing-sm);
    }
    
    .produto-info {
        padding: 0;
    }
    
    .produto-card {
        padding: var(--spacing-xs);
        gap: var(--spacing-xs);
    }
    
    .produto-info h3 {
        font-size: 1.2rem;
        margin-bottom: var(--spacing-xs);
    }
} 