/* Pepita Digital - Estilos para Páginas de Soluções */

/* Solution Hero Section */
.solution-hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.solution-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.solution-hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8));
}

.solution-hero-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 80px 0;
    color: white;
}

.solution-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.badge {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--color-gold);
    color: white;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.solution-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.solution-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 800px;
}

/* Solution Intro Section */
.solution-intro {
    padding: 100px 0;
    background-color: white;
}

.intro-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
    align-items: center;
}

.intro-content h2 {
    color: var(--color-gold);
    margin-bottom: 30px;
}

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

.intro-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.intro-content ul li {
    margin-bottom: 10px;
    position: relative;
    list-style: none;
    padding-left: 25px;
}

.intro-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--color-gold);
    border-radius: 50%;
}

.intro-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Solution Offering Section */
.solution-offering {
    padding: 100px 0;
    background-color: var(--color-gray);
}

.solution-offering h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.offering-item {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.offering-item:hover {
    transform: translateY(-10px);
}

.offering-icon {
    width: 70px;
    height: 70px;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-gold);
    border-radius: 50%;
}

.offering-icon img {
    width: 40px;
    height: 40px;
}

.offering-item h3 {
    margin-bottom: 20px;
    color: var(--color-text);
}

.offering-item ul {
    padding-left: 0;
    margin-bottom: 0;
}

.offering-item ul li {
    list-style: none;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.offering-item ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--color-gold);
    border-radius: 50%;
}

/* Solution Cases Section */
.solution-cases {
    padding: 100px 0;
    background-color: white;
}

.solution-cases h2 {
    text-align: center;
    margin-bottom: 50px;
}

.cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.case-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    background-color: var(--color-gray);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.case-image {
    height: 100%;
}

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

.case-content {
    padding: 30px;
}

.case-content h3 {
    color: var(--color-text);
    margin-bottom: 5px;
    font-size: 1.8rem;
}

.case-content h4 {
    color: var(--color-gold);
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 500;
}

.case-content p {
    margin-bottom: 20px;
}

/* Solution Benefits Section */
.solution-benefits {
    padding: 100px 0;
    background-color: var(--color-gray);
}

.solution-benefits h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.benefit-item {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-gold);
    border-radius: 50%;
}

.benefit-icon img {
    width: 40px;
    height: 40px;
}

.benefit-item h3 {
    margin-bottom: 15px;
    color: var(--color-text);
}

/* Solution CTA Section */
.solution-cta {
    padding: 100px 0;
    background-color: var(--color-gold);
    color: white;
    text-align: center;
}

.solution-cta h2 {
    margin-bottom: 20px;
}

.solution-cta p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.solution-cta .btn {
    background-color: white;
    color: var(--color-gold);
}

.solution-cta .btn:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}

/* Responsividade */
@media (max-width: 992px) {
    .solution-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .solution-subtitle {
        font-size: 1.2rem;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-image {
        order: -1;
    }
    
    .case-item {
        grid-template-columns: 1fr;
    }
    
    .case-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .solution-hero {
        height: auto;
        padding-top: 100px;
    }
    
    .solution-hero-image {
        position: relative;
        height: 300px;
    }
    
    .solution-hero-content {
        position: relative;
        padding: 50px 0;
        background-color: var(--color-text);
    }
    
    .offering-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}
