/* Página Soluções - Design Melhorado Inspirado na Ocyan */

/* ===== SEÇÃO HERO ===== */
.solucoes-hero {
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f3 100%);
    padding: 80px 20px 60px;
    position: relative;
    overflow: hidden;
}

.solucoes-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(102, 187, 106, 0.1), rgba(56, 142, 60, 0.1));
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.2rem;
    color: #004d40;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 1.6rem;
    color: #00695c;
    margin-bottom: 30px;
    font-weight: 500;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.15rem;
    color: #37474f;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-highlight {
    background: rgba(102, 187, 106, 0.1);
    padding: 25px;
    border-radius: 12px;
    margin-top: 40px;
    border-left: 4px solid #66bb6a;
}

.hero-highlight p {
    margin: 0;
    font-size: 1.1rem;
    color: #2e7d32;
}

/* ===== SEÇÃO SERVIÇOS ===== */
.solucoes-servicos {
    padding: 80px 20px;
    background: #ffffff;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.servico-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(102, 187, 106, 0.1);
    position: relative;
    overflow: hidden;
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #66bb6a, #4caf50);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.servico-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.servico-card:hover::before {
    transform: scaleX(1);
}

.servico-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.icon-hexagon {
    width: 80px;
    height: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.3s ease;
}

.icon-hexagon svg {
    width: 36px;
    height: 36px;
    color: #ffffff;
    z-index: 2;
}

/* Cores específicas para cada hexágono */
.icon-hexagon.consultoria {
    background: linear-gradient(135deg, #66bb6a, #4caf50);
}

.icon-hexagon.layout {
    background: linear-gradient(135deg, #42a5f5, #1e88e5);
}

.icon-hexagon.projetos {
    background: linear-gradient(135deg, #ff7043, #f4511e);
}

.icon-hexagon.comercial {
    background: linear-gradient(135deg, #ab47bc, #8e24aa);
}

.servico-card:hover .icon-hexagon {
    transform: scale(1.1) rotate(5deg);
}

.servico-content h3 {
    font-size: 1.4rem;
    color: #263238;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.servico-content p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.6;
    margin: 0;
}

/* ===== SEÇÃO CTA ===== */
.solucoes-cta {
    background: linear-gradient(135deg, #004d40 0%, #00695c 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.solucoes-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" x="0" y="0" width="50" height="43.4" patternUnits="userSpaceOnUse"><polygon points="24.8,22 37.3,29.2 37.3,43.7 24.8,50.9 12.3,43.7 12.3,29.2" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>') repeat;
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h3 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.6;
}

.btn-solucoes {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #66bb6a, #4caf50);
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(102, 187, 106, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-solucoes::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-solucoes:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 187, 106, 0.4);
    background: linear-gradient(135deg, #4caf50, #388e3c);
}

.btn-solucoes:hover::before {
    left: 100%;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-content h2 {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .servico-card {
        padding: 30px 25px;
    }

    .icon-hexagon {
        width: 70px;
        height: 70px;
    }

    .icon-hexagon svg {
        width: 32px;
        height: 32px;
    }

    .cta-content h3 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .solucoes-hero {
        padding: 60px 15px 40px;
    }

    .solucoes-servicos {
        padding: 60px 15px;
    }

    .solucoes-cta {
        padding: 60px 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .servico-content h3 {
        font-size: 1.2rem;
    }
}