/* Estilos complementares para a página de impressão 3D */

/* Botões */
.imp3d-hero .btn-primary,
.imp3d-hero .btn-outline-primary {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.imp3d-hero .btn-primary {
    background: #f69323;
    border-color: #f69323;
    color: #fff;
}

.imp3d-hero .btn-outline-primary {
    background: transparent;
    border: 2px solid #f69323;
    color: #f69323;
}

.imp3d-hero .btn-primary:hover
 {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(246, 148, 35, 0.5);
}

.imp3d-hero .btns {
    display: flex;
    gap: 15px;
}

/* Hero Section */
.imp3d-hero {
    padding: 50px 0;
    background-color: #222;
    position: relative;
    z-index: 1;
}

.imp3d-hero .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.imp3d-hero .hero-title {
    color: #fff;
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    text-align: center;
}

.imp3d-hero .hero-title span {
    color: #f69323;
}

.imp3d-hero .hero-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.imp3d-hero .btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 0 auto;
}

/* Simplificando a imagem do hero */
.imp3d-hero .hero-image {
    position: relative;
    overflow: hidden;
}

.imp3d-hero .hero-image img {
    width: 100%;
    height: auto;
    transform: translateZ(0);
    transition: transform 0.3s ease-out;
}

.imp3d-hero:hover .hero-image img {
    transform: translateZ(20px);
}

/* Service Cards */
.imp3d-service-card {
    background: #fff;
    border-radius: 10px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgb(246, 147, 35);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.imp3d-service-card:hover {
    box-shadow: 0 15px 15px rgba(255, 153, 0, 0.452);
}

.imp3d-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f69323 0%, #ff6b00 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #fff;
    font-size: 26px;
    box-shadow: 0 5px 15px rgba(246, 147, 35, 0.2);
}

.imp3d-service-card h3 {
    color: #222;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.imp3d-service-card p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
    flex-grow: 1;
}

/* Process Section */
.imp3d-process {
    background: #222;
    position: relative;
    z-index: 1;
    padding: 40px 0;
}

.imp3d-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/patterns/hex.svg') repeat;
    opacity: 0.05;
    z-index: -1;
}

.imp3d-process .section-title h2,
.imp3d-process .section-title p {
    color: #fff;
}

.imp3d-process-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 35px 35px 35px 80px;
    margin-bottom: 20px;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.imp3d-process-number {

    position: absolute;
    left: 5px;
    top: 15%;
    transform: translateY(-50%);
    font-size: 68px;
    font-weight: 700;
    color: rgb(246, 148, 35);
    line-height: 1;
}

.imp3d-process-card h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.imp3d-process-card p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 0;
    line-height: 1.6;
    flex-grow: 1;
}

/* Tech Section */
.imp3d-tech {
    padding: 40px 0;
}

.imp3d-tech .container {
    max-width: 1200px;
    margin: 0 auto;
}

.imp3d-tech .row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0 auto;
    max-width: 900px;
}

.imp3d-tech .col-md-6 {
    flex: 0 1 400px;
    display: flex;
}

.imp3d-tech-card {
    background: #fff;
    border-radius: 10px;
    padding: 35px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.imp3d-tech-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

.imp3d-tech-card p {
    color: #666;
    margin-bottom: 25px;
}

.imp3d-tech-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.imp3d-tech-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #555;
}

.imp3d-tech-features li i {
    color: #28a745;
    margin-right: 10px;
}

.imp3d-tech-btn {
    margin-top: auto;
    text-align: center;
}

.imp3d-tech-btn .btn {
    width: auto;
    min-width: 200px;
    padding: 12px 25px;
    border-radius: 5px;
    background: #f69323;
    color: #fff;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.imp3d-tech-btn .btn:hover {
    background: #ff6b00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(246, 147, 35, 0.3);
}

/* Espaçamento para "Pronto para Inovar" */
.section-title.text-center {
    margin-top: 40px;
    padding-top: 20px;
}

/* Responsividade */
@media (max-width: 992px) {
    .imp3d-tech .row {
        max-width: 800px;
    }
    
    .imp3d-tech .col-md-6 {
        flex: 0 1 350px;
    }
}

@media (max-width: 768px) {
    .imp3d-tech .row {
        flex-direction: column;
        padding: 0 15px;
    }
    
    .imp3d-tech .col-md-6 {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .imp3d-tech-card {
        max-width: 100%;
    }
}

/* CTA Section */


.btn-light {
    background: #009edd;
    margin-top: 30px;
    color: #f3f3f3;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 35px;
}

.btn-light i {
    font-size: 20px;
}

.btn-light:hover {
    transform: translateY(-1px);
    color: #f3f3f3;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.301);
}

/* Seções */
.imp3d-section {
    padding: 40px 0;
}

.section-title {
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 36px;
    color: #222;
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title h2 i {
    color: #f69323;
    font-size: 32px;
    opacity: 0.9;
}

.section-title p {
    color: #666;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Responsividade */
@media (max-width: 991px) {
    .imp3d-hero {
        padding: 40px 0;
    }

    .imp3d-hero .hero-title {
        font-size: 36px;
    }

    .imp3d-hero .hero-image {
        margin-top: 30px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .imp3d-process-card {
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .imp3d-section {
        padding: 30px 0;
    }

    .imp3d-hero .hero-title {
        font-size: 30px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .imp3d-hero .btns {
        flex-direction: column;
    }

    .imp3d-hero .btn-primary,
    .imp3d-hero .btn-outline-primary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .imp3d-section,
    .imp3d-tech,
    .imp3d-process {
        padding: 30px 0;
    }

    .section-title {
        margin-bottom: 25px;
    }

    .imp3d-hero {
        padding: 40px 0;
    }

    .imp3d-hero .hero-title {
        font-size: 32px;
    }

    .imp3d-hero .hero-subtitle {
        font-size: 16px;
    }

    .imp3d-hero .btns {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
}

/* Tech Cards */
.tech-comparison {
    padding: 40px 0;
}

.tech-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.247);
    transition: all 0.4s ease;
    border: none;
    max-width: 400px;
    margin-left: 10px;
    margin-right: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.tech-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

.tech-card p {
    color: #666;
    margin-bottom: 25px;
    text-align: center;
}

.tech-card__features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 20px;
    margin-bottom: 25px;
    flex: 1;
}

.tech-card__features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #555;
}

.tech-card__features li i {
    color: #28a745;
    margin-right: 10px;
}

.tech-card__btn {
    margin-top: auto;
    text-align: center;
}

.tech-card__btn .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #f69323;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    transition: all 0.3s ease;
    width: auto;
    min-width: 200px;
}

.tech-card__btn .btn:hover {
    background: #ff6b00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(246, 147, 35, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .tech-card {
        min-height: auto;
        padding: 25px;
    }

    .tech-card__btn .btn {
        width: 100%;
    }
}