/* =========================================
   SEÇÃO - O QUE É TEF
========================================= */

.tef-about {
    padding: 110px 0;
    background: #ffffff;
}

.tef-about .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
}

.section-badge {
    display: inline-block;

    padding: 8px 18px;
    border-radius: 999px;

    background: #f0fdf4;
    color: #15803d;

    font-size: 0.95rem;
    font-weight: 600;

    margin-bottom: 22px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;

    color: #0f172a;

    margin-bottom: 22px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.15rem;
    line-height: 1.8;

    color: #64748b;
}

/* Grid */

.tef-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Cards */

.feature-card {
    background: #ffffff;

    border: 1px solid #e2e8f0;
    border-radius: 24px;

    padding: 34px 28px;

    transition: all 0.25s ease;

    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.03),
        0 8px 24px rgba(15, 23, 42, 0.04);
}

.feature-card:hover {
    transform: translateY(-4px);

    border-color: #cbd5e1;

    box-shadow:
        0 8px 24px rgba(15, 23, 42, 0.06),
        0 18px 40px rgba(15, 23, 42, 0.08);
}

/* Ícone */

.feature-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: #f0fdf4;

    font-size: 1.5rem;

    margin-bottom: 24px;
}

/* Título */

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;

    color: #0f172a;

    margin-bottom: 14px;
}

/* Texto */

.feature-card p {
    color: #64748b;

    line-height: 1.7;
    font-size: 1rem;
}

/* Responsivo */

@media (max-width: 1024px) {
    .tef-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .tef-about {
        padding: 80px 0;
    }

    .section-header h2 {
        font-size: 2.1rem;
    }

    .tef-features {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 28px 24px;
    }
}








/* =========================================
   BENEFÍCIOS - SPLIT LAYOUT
========================================= */

.benefits-split .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.benefits-wrapper {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

/* =========================================
   Conteúdo esquerdo
========================================= */

.benefits-content {
    flex: 1;
}

.benefits-label {
    display: inline-block;

    margin-bottom: 24px;

    font-size: 0.95rem;
    font-weight: 600;

    color: #16a34a;

    background: #f0fdf4;

    padding: 8px 16px;
    border-radius: 999px;
}

.benefits-content h2 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 700;

    color: #0f172a;

    margin-bottom: 24px;
}

.benefits-content > p {
    font-size: 1.1rem;
    line-height: 1.9;

    color: #64748b;

    margin-bottom: 42px;

    max-width: 580px;
}

/* =========================================
   Lista de benefícios
========================================= */

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.benefit-check {
    min-width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: #f0fdf4;
    color: #16a34a;

    font-weight: 700;
    font-size: 1rem;
}

.benefit-text h3 {
    font-size: 1.15rem;
    font-weight: 700;

    color: #0f172a;

    margin-bottom: 8px;
}

.benefit-text span {
    color: #64748b;

    line-height: 1.8;
    font-size: 1rem;
}

/* =========================================
   Lado direito
========================================= */

.benefits-image {
    flex: 1;

    display: flex;
    justify-content: center;
}

.image-wrapper {
    position: relative;
	/*margin-top: 80px;*/
}

.image-wrapper img {
    width: 100%;
    max-width: 560px;

    border-radius: 28px;

    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.08),
        0 25px 60px rgba(15, 23, 42, 0.12);
}

/* =========================================
   Floating Cards
========================================= */

.floating-card {
    position: absolute;

    background: #ffffff;

    border: 1px solid #e2e8f0;
    border-radius: 18px;

    padding: 14px 18px;

    font-size: 0.95rem;
    font-weight: 600;

    color: #0f172a;

    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.08);
}

.card-1 {
    top: 40px;
    left: -30px;
}

.card-2 {
    bottom: 40px;
    right: 50px;
}


.icon-wrapper-benefits {
  width: 60px !important;
  height: 60px !important;
  min-width: 60px;
  border-radius: 12px;
  background-color: rgba(13, 110, 253, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0px;
}
.icon-benefits {
  width: 36px;
  height: 36px;
  stroke-width: 1.6;
}


/* =========================================
   Responsivo
========================================= */

@media (max-width: 1024px) {

    .benefits-split .container {
        flex-direction: column;
        gap: 60px;
    }

    .benefits-content {
        text-align: center;
    }

    .benefits-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .benefit-item {
        text-align: left;
    }

}

@media (max-width: 768px) {

    .benefits-split {
        padding: 80px 0;
    }

    .benefits-content h2 {
        font-size: 2.2rem;
    }

    .floating-card {
        display: none;
    }

}





/* =========================================
   COMO FUNCIONA
========================================= */

.tef-flow {
    padding: 120px 0;
    background: #f8fafc;
    overflow: hidden;
}

.tef-flow .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================================
   Header
========================================= */

.flow-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 90px;
}

.flow-header h2 {
    font-size: 2.9rem;
    font-weight: 700;

    color: #0f172a;

    margin-bottom: 24px;
    line-height: 1.2;
}

.flow-header p {
    font-size: 1.1rem;
    line-height: 1.9;

    color: #64748b;
}

/* =========================================
   Fluxo
========================================= */

.flow-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;

    gap: 0;
}

/* =========================================
   Linha entre passos
========================================= */

.flow-line {
    flex: 1;

    height: 3px;
	opacity: 0.8;

    background:
        linear-gradient(
            to right,
            #dbeafe,
            #bfdbfe
        );

    margin-top: 42px;

    min-width: 60px;
}

/* =========================================
   Step
========================================= */

.flow-step {
    width: 260px;
    text-align: center;
    position: relative;
}

/* Número */

.step-number {
    width: 84px;
    height: 84px;

    margin: 0 auto 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
	
	background: linear-gradient(
        180deg,
        #ffffff,
        #f8fafc
    );	

    /*background: #ffffff;*/

    border: 1px solid #dbeafe;

    color: #2563eb;

    font-size: 1.8rem;
    font-weight: 700;

    box-shadow:
        0 4px 10px rgba(37, 99, 235, 0.05),
        0 12px 30px rgba(15, 23, 42, 0.06);
}

/* Título */

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 700;

    color: #0f172a;

    margin-bottom: 14px;
    line-height: 1.4;
}

/* Texto */

.step-content p {
    color: #64748b;

    line-height: 1.8;
    font-size: 1rem;
}

/* =========================================
   Responsivo
========================================= */

@media (max-width: 1024px) {

    .flow-steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .flow-line {
        width: 2px;
        height: 60px;

        margin-top: 0;
        min-width: auto;
    }

}

@media (max-width: 768px) {

    .tef-flow {
        padding: 80px 0;
    }

    .flow-header {
        margin-bottom: 70px;
    }

    .flow-header h2 {
        font-size: 2.2rem;
    }

    .flow-step {
        width: 100%;
        max-width: 340px;
    }

    .step-number {
        width: 72px;
        height: 72px;

        font-size: 1.5rem;
    }

}

/* =========================================
   INTEGRAÇÕES
========================================= */

.tef-integrations {
    padding: 120px 0;
    background: #ffffff;
}

.tef-integrations .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================================
   Header
========================================= */

.integrations-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 80px;
}

.integrations-header h2 {
    font-size: 2.9rem;
    font-weight: 700;

    color: #0f172a;

    margin-bottom: 24px;
    line-height: 1.2;
}

.integrations-header p {
    font-size: 1.1rem;
    line-height: 1.9;

    color: #64748b;
}

/* =========================================
   Grid
========================================= */

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* =========================================
   Card
========================================= */

.integration-card {
    background: #ffffff;

    border: 1px solid #e2e8f0;
    border-radius: 28px;

    padding: 34px 32px;

    transition: all 0.3s ease;

    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.03),
        0 10px 30px rgba(15, 23, 42, 0.04);

    display: flex;
    flex-direction: column;
}

/* Hover */

.integration-card:hover {
    transform: translateY(-6px);

    border-color: #cbd5e1;

    box-shadow:
        0 12px 30px rgba(15, 23, 42, 0.06),
        0 22px 50px rgba(15, 23, 42, 0.08);
}

/* Card destaque */

.integration-card.featured {
    border: 1px solid #bbf7d0;

    box-shadow:
        0 10px 30px rgba(34, 197, 94, 0.08),
        0 20px 50px rgba(15, 23, 42, 0.06);
}

/* =========================================
   Topo
========================================= */

.integration-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 30px;
}

/* Logo */

.integration-logo {
    height: 50px;
    object-fit: contain;
}

/* Badge */

.integration-badge {
    padding: 8px 14px;

    border-radius: 999px;

    font-size: 0.85rem;
    font-weight: 600;
}

/* Badge ativo */

.integration-badge.active {
    background: #f0fdf4;
    color: #15803d;
}

/* Badge pending */

.integration-badge.pending {
    background: #fef9c3;
    color: #a16207;
}

/* =========================================
   Conteúdo
========================================= */

.integration-card h3 {
    font-size: 1.6rem;
    font-weight: 700;

    color: #0f172a;

    margin-bottom: 18px;
}

.integration-card p {
    color: #64748b;

    line-height: 1.9;
    font-size: 1rem;

    margin-bottom: 28px;
}

/* =========================================
   Lista
========================================= */

.integration-features {
    list-style: none;

    display: flex;
    flex-direction: column;
    gap: 14px;

    margin-bottom: 34px;
}

.integration-features li {
    color: #334155;

    font-size: 0.98rem;
    line-height: 1.6;
}

/* =========================================
   Botão
========================================= */

.integration-button {
    margin-top: auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 52px;

    border-radius: 16px;

    background: #22c55e;
    color: #ffffff;

    font-weight: 600;
    text-decoration: none;

    transition: all 0.25s ease;
}

/* Hover */

.integration-button:hover {
    background: #16a34a;

    transform: translateY(-2px);
}

/* Secondary */

.integration-button.secondary {
    background: #f8fafc;
    color: #0f172a;

    border: 1px solid #e2e8f0;
}

.integration-button.secondary:hover {
    background: #ffffff;
    border-color: #cbd5e1;
}

/* Disabled */

.disabled-btn {
    background: #f1f5f9;
    color: #94a3b8;

    cursor: not-allowed;
}

/* Card disabled */

.integration-card.disabled {
    opacity: 0.92;
}

.integration-card.featured {
    box-shadow:
        0 10px 30px rgba(34, 197, 94, 0.08),
        0 20px 50px rgba(15, 23, 42, 0.06),
        0 0 0 1px rgba(34, 197, 94, 0.05);
}

/* =========================================
   Responsivo
========================================= */

@media (max-width: 1024px) {

    .integrations-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {

    .tef-integrations {
        padding: 80px 0;
    }

    .integrations-header {
        margin-bottom: 60px;
    }

    .integrations-header h2 {
        font-size: 2.2rem;
    }

    .integration-card {
        padding: 28px 24px;
    }

}


#carouselIntegracao .carousel-indicators{
    gap: 16px;
}
#carouselIntegracao .carousel-indicators button{
    width: 15px;
    height: 15px;

    border-radius: 50%;
    border: none;

    background-color: #cbd5e1;

    opacity: 1;
}

#carouselIntegracao .card{
    height: 340px;
}


