/* Estilos específicos para a página de terceirização */
#design-hero .hero-content {
    width: 500px;
}
#design-hero .hero-banner img {
    width: 50%;
}

.design-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}


.plan-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-card.featured {
    border: 2px solid #4d6de6;
    transform: scale(1.02);
    z-index: 2;
}

.plan-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #4d6de6;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
}

.plan-header {
    margin-bottom: 20px;
    text-align: center;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.plan-description {
    color: #6c757d;
    font-size: 16px;
}

.price-info {
    text-align: center;
    margin-bottom: 20px;
}

.plan-price {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.currency {
    font-size: 24px;
    vertical-align: super;
}

.price-per-item {
    font-size: 14px;
    color: #6c757d;
    margin-top: 5px;
}

.economy {
    display: block;
    color: #28a745;
    font-weight: bold;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.plan-features li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
}

.plan-features ion-icon {
    margin-right: 10px;
    font-size: 18px;
    min-width: 24px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    margin-top: 50px;
}

.comparison-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.comparison-card.traditional {
    border-top: 4px solid #ff6b6b;
}

.comparison-card.noutflow {
    border-top: 4px solid #51cf66;
}

.comparison-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f1f3f5;
    display: flex;
    align-items: center;
}

.comparison-features ion-icon {
    margin-right: 10px;
    font-size: 20px;
}

.vs-card {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vs-circle {
    background: #4d6de6;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
}



/* Seção de Processo - Design Moderno */
.process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><rect fill="none" width="200" height="200"/><path fill="%234d6de610" d="M45,50c0-16.6,13.4-30,30-30s30,13.4,30,30s-13.4,30-30,30S45,66.6,45,50z M125,150c0-16.6,13.4-30,30-30s30,13.4,30,30s-13.4,30-30,30S125,166.6,125,150z"/></svg>');
    background-size: 400px;
    opacity: 0.3;
    z-index: 0;
}

.process-container {
    position: relative;
    z-index: 2;
}

.process-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.process-steps-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    position: relative;
}

.process-step-2 {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(77, 109, 230, 0.15);
    padding: 40px 30px;
    width: 300px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.process-step:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(77, 109, 230, 0.25);
}

.process-step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #4d6de6, #8a63d2);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 18px;
    font-weight: 700;
    color: #4d6de6;
    background: rgba(77, 109, 230, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4d6de6, #8a63d2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 48px;
    color: white;
    box-shadow: 0 15px 30px rgba(77, 109, 230, 0.3);
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.step-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4d6de6, #8a63d2);
    border-radius: 3px;
}

.step-description {
    color: #6c757d;
    font-size: 17px;
    line-height: 1.6;
}

/* Responsividade para a seção de comparação */
@media (max-width: 992px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vs-card {
        order: 2;
        margin: 30px auto;
    }
    
    .traditional {
        order: 1;
    }
    
    .noutflow {
        order: 3;
    }
    
    .vs-circle {
        /*transform: rotate(90deg);*/
    }
}

@media (max-width: 768px) {
    .comparison-card {
        padding: 25px 20px;
    }
    
    .comparison-features li {
        padding: 10px 0;
        font-size: 15px;
    }
    
    .vs-circle {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .comparison-header {
        padding: 0 15px 15px;
    }
    
    .comparison-title {
        font-size: 20px;
    }
    
    .comparison-features li {
        font-size: 14px;
    }
}

.process-connectors {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 160px;
    transform: translateY(-50%);
    z-index: 0;
}

.connector-line {
    height: 3px;
    background: linear-gradient(90deg, #4d6de6, #8a63d2);
    flex-grow: 1;
    margin: 0 10px;
    position: relative;
}

.connector-arrow {
    position: absolute;
    right: -12px;
    top: -8px;
    color: #4d6de6;
    font-size: 20px;
}

/* Responsividade */
@media (max-width: 1100px) {
    .process-connectors {
        display: none;
    }
    
    .process-steps-2 {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step-2 {
        width: 80%;
        max-width: 500px;
    }
    
    .process-step::before {
        height: 100%;
        width: 5px;
    }
    
    .process-step:hover {
        transform: translateX(10px);
    }
}

@media (max-width: 768px) {
    .process-step-2 {
        width: 100%;
    }
    
    .process-header {
        margin-bottom: 50px;
    }
    
    .step-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }
}



.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-group {
    background: white;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(77, 109, 230, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-group:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(77, 109, 230, 0.2);
}

.group-header {
    background: linear-gradient(135deg, #4d6de6, #8a63d2);
    color: white;
    padding: 30px;
    display: flex;
    align-items: center;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 32px;
}

.service-icon ion-icon {
    color: white;
}

.group-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.service-options {
    padding: 25px;
}

.service-option {
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid #f1f3f5;
}

.service-option:last-child {
    border-bottom: none;
}

.option-icon {
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f1f3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 24px;
    color: #4d6de6;
}

.option-details h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #333;
}

.option-details p {
    color: #6c757d;
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

/* Responsividade */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .group-header {
        padding: 20px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .group-title {
        font-size: 20px;
    }
}

.guarantees {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    position: relative;
    overflow: hidden;
}

.guarantees::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><rect fill="none" width="200" height="200"/><path fill="%234d6de610" d="M45,50c0-16.6,13.4-30,30-30s30,13.4,30,30s-13.4,30-30,30S45,66.6,45,50z M125,150c0-16.6,13.4-30,30-30s30,13.4,30,30s-13.4,30-30,30S125,166.6,125,150z"/></svg>');
    background-size: 400px;
    opacity: 0.3;
    z-index: 0;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.guarantee-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(77, 109, 230, 0.1);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border-top: 4px solid #4d6de6;
}

.guarantee-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4d6de6, #8a63d2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.guarantee-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(77, 109, 230, 0.2);
}

.guarantee-card:hover::before {
    transform: scaleX(1);
}

.guarantee-icon {
    font-size: 64px;
    color: #4d6de6;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.guarantee-icon ion-icon{
    margin: 0 auto;
}

.guarantee-card:hover .guarantee-icon {
    color: #8a63d2;
    transform: scale(1.1);
}

.guarantee-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.guarantee-description {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.guarantee-badge {
    display: inline-block;
    background: rgba(77, 109, 230, 0.1);
    color: #4d6de6;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Responsividade */
@media (max-width: 768px) {
    .guarantees-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .guarantee-card {
        padding: 30px 20px;
    }
    
    .guarantee-icon {
        font-size: 48px;
    }
}


/* ====================== */
/* Seção de Especialistas */
/* ====================== */
.section.experts {
    padding: 80px 0;
    background-color: #f8f9ff;
    position: relative;
    overflow: hidden;
}

.experts .container {
    position: relative;
    z-index: 2;
}

.expert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.expert-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #eee;
}

.expert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.expert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2a73f5, #39ac31);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.expert-card:hover::before {
    opacity: 1;
}

.expert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.expert-badges .badge {
    background: #f0f7ff;
    color: #2a73f5;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.expert-name {
    font-size: 22px;
    color: #1e1a34;
    margin-bottom: 15px;
    font-weight: 700;
}

.expert-description {
    color: #5c5b70;
    line-height: 1.6;
}

.stats-box {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 0 30px;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: #e0e5f0;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #2a73f5;
    line-height: 1.2;
    position: relative;
}

.stat-number::after {
    content: '+';
    position: absolute;
    top: -10px;
    right: -15px;
    font-size: 32px;
    color: #39ac31;
}

.stat-label {
    font-size: 18px;
    color: #5c5b70;
    font-weight: 500;
}

/* ========================= */
/* Seção de Recursos da Plataforma */
/* ========================= */
.section.platform-features {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card-design {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.feature-card-design:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-card-design::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #39ac31, #2a73f5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card-design:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #2a73f5;
    font-size: 36px;
    transition: all 0.3s ease;
}

.feature-card-design:hover .feature-icon {
    background: #2a73f5;
    color: #fff;
    transform: scale(1.1);
}

.feature-title {
    font-size: 20px;
    color: #1e1a34;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-description {
    color: #5c5b70;
    line-height: 1.6;
    font-size: 16px;
}


/* Responsividade */
@media (max-width: 992px) {
    .stat-item:not(:last-child)::after {
        display: none;
    }
    
    .stat-item {
        padding: 20px 0;
        flex: 0 0 auto;
        min-width: 180px;
        text-align: center;
    }
    
    .stats-box {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .expert-grid, 
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .stats-box {
        flex-direction: column;
        gap: 10px;
    }
    
    .stat-item {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}


/* Estilos para a seção "Eugências" */
.eagency-section {
    padding: 80px 0;
    background-color: #f8f9ff;
    position: relative;
    overflow: hidden;
}

.eagency-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 115, 245, 0.03) 0%, rgba(57, 172, 49, 0.03) 100%);
    z-index: -1;
}

.eagency-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.eagency-header {
    margin-bottom: 50px;
}

.eagency-header .section-title {
    margin-bottom: 20px;
}

.eagency-header .section-text {
    font-size: 18px;
    line-height: 1.7;
    color: #5c5b70;
}

.eagency-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.benefit-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    text-align: center;
    border: 1px solid #f0f5ff;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #2a73f5;
    font-size: 32px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: #2a73f5;
    color: #fff;
    transform: scale(1.1);
}

.benefit-content h3 {
    font-size: 22px;
    color: #1e1a34;
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-content p {
    color: #5c5b70;
    line-height: 1.6;
    font-size: 16px;
}

.eagency-stats {
    display: flex;
    justify-content: center;
}

.stat-badge {
    background: #2a73f5;
    color: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 20px rgba(42, 115, 245, 0.2);
    max-width: 350px;
    width: 100%;
}

.stat-badge span {
    display: block;
    text-align: center;
    font-weight: 500;
    line-height: 1.4;
}

.stat-badge span:first-child {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-badge span:nth-child(2) {
    font-size: 20px;
    margin-bottom: 5px;
}

.stat-badge span:last-child {
    font-size: 18px;
}

/* Responsividade */
@media (max-width: 768px) {
    .eagency-benefits {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 40px;
    }
    
    .stat-badge {
        padding: 15px 20px;
    }
    
    .stat-badge span:first-child {
        font-size: 20px;
    }
    
    .stat-badge span:nth-child(2) {
        font-size: 18px;
    }
    
    .stat-badge span:last-child {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .eagency-section {
        padding: 60px 0;
    }
    
    .eagency-header .section-text {
        font-size: 16px;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    
    .benefit-content h3 {
        font-size: 20px;
    }
    
    .benefit-content p {
        font-size: 15px;
    }
}