/* ============================
   Página Principal (Home)
   ============================ */

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(192, 31, 37, 0.7), rgba(255, 215, 0, 0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta .btn {
    padding: 12px 35px;
    font-size: 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-cta .btn-primary {
    background: #FFD700;
    color: #C01F25;
    border: 2px solid #FFD700;
    font-weight: 700;
}

.hero-cta .btn-primary:hover {
    background: #C01F25;
    color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-cta .btn-outline-light {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.hero-cta .btn-outline-light:hover {
    background: #ffffff;
    color: #C01F25;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    padding: 80px 0;
    background: #ffffff;
}

.about-content {
    padding-right: 40px;
}

.about-content .section-title {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

.about-content .section-subtitle {
    font-size: 1.1rem;
    color: #C01F25;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.about-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #C01F25;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-link:hover {
    color: #FFD700;
    gap: 12px;
}

.about-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 15px;
}

.about-img-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.about-img-grid img:hover {
    transform: scale(1.05);
}

/* ============================================
   STATS HIGHLIGHT
   ============================================ */

.stats-highlight {
    padding: 60px 0;
    background: #f8f9fa;
}

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

.stat-item {
    text-align: center;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-item .stat-icon {
    font-size: 2.5rem;
    color: #C01F25;
    margin-bottom: 15px;
}

.stat-item h4 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 700;
}

.stat-item p {
    color: #7f8c8d;
    font-size: 0.95rem;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */

.products-section {
    padding: 80px 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #C01F25, #FFD700);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-desc {
    font-size: 1.1rem;
    color: #7f8c8d;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: #e0e0e0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #C01F25;
    color: #FFD700;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
}

.product-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.product-features span {
    font-size: 0.9rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-features i {
    color: #C01F25;
}

.btn-product {
    display: inline-block;
    color: #C01F25;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 0;
    border-bottom: 2px solid #C01F25;
    transition: all 0.3s ease;
}

.btn-product:hover {
    color: #FFD700;
    border-bottom-color: #FFD700;
}

.products-cta {
    text-align: center;
}

/* ============================================
   VALUES SECTION
   ============================================ */

.values-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.value-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.35s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #C01F25;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 3rem;
    color: #C01F25;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.2);
    color: #FFD700;
}

.value-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
}

.value-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   CTA FINAL SECTION
   ============================================ */

.cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, #C01F25 0%, #8B1420 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-final::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.cta-final h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.cta-final p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-buttons .btn-light {
    background: #FFD700;
    color: #C01F25;
    font-weight: 700;
}

.cta-buttons .btn-light:hover {
    background: #FFC700;
    color: #8B1420;
    transform: translateY(-2px);
}

.cta-buttons .btn-outline-light {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.cta-buttons .btn-outline-light:hover {
    background: #FFD700;
    color: #C01F25;
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 768px) {
    .hero-section {
        height: 450px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .about-img-grid {
        grid-template-columns: 1fr;
    }

    .about-img-grid img {
        height: 300px;
    }

    .section-title {
        font-size: 2rem;
    }

    .products-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-final h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 350px;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .about-content .section-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .product-image {
        height: 220px;
    }

    .cta-final h2 {
        font-size: 1.5rem;
    }

    .cta-final p {
        font-size: 1rem;
    }
}

/* Painéis de produtos e cuidados */
.painel-produtos {
    background: linear-gradient(120deg, #FFD700 60%);
    color: #fff;
}

.painel-cuidados {
    background: linear-gradient(120deg, #C01F25 60%);
    color: #232526;
}

.display-5 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    text-shadow: 0 2px 12px rgba(191,13,0,0.10);
}

.lead,
.lead-painel, p {
    font-size: 1.25rem;
    font-weight: 400;
    color: #000000;
}

.lead-painel h3 {
    color: #C01F25;
}

/* Seção de história */
.historia-section {
    max-width: 720px;
    margin: 32px auto 0 auto;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 32px 28px 24px 28px;
    position: relative;
    z-index: 1;
    transition: box-shadow 0.2s;
}

.titulo-historia {
    text-align: center;
    color: #C01F25;
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 1px;
    text-shadow: 0 2px 12px rgba(191,13,0,0.10);
}

.historia-texto,
.historia-texto-2 p {
    color: #232526;
    font-size: 1.13em;
    margin-bottom: 0;
    line-height: 2;
    text-align: justify;
}

.historia-texto-2 {
    color: #232526;
    font-size: 1.13em;
    margin-bottom: 0;
    line-height: 2;
    text-align: justify;
    max-width: 720px;
    margin: 32px auto 48px auto;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 32px 28px 24px 28px;
    position: relative;
    z-index: 1;
    transition: box-shadow 0.2s;
}

/* Imagens da galeria */
/* Imagens da galeria */
.img-principal {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 2px solid #e0e0e0;
    background: rgba(255,255,255,0.04);
    margin-bottom: 10px;
    transition: box-shadow 0.3s, border 0.3s, width 0.3s, height 0.3s;
}

.img-mini {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #e0e0e0;
    background: rgba(255,255,255,0.08);
    margin-bottom: 0;
    transition: box-shadow 0.3s, border 0.3s, width 0.3s, height 0.3s;
}

.img-mini-1 {
    margin-right: 12px;
    border: 2px solid #e0e0e0;
    background: rgba(255,255,255,0.08);
    transition: box-shadow 0.3s, border 0.3s;
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.img-mini-2 {
    margin-right: 12px;
    border: 2px solid #e0e0e0;
    background: rgba(255,255,255,0.08);
    transition: box-shadow 0.3s, border 0.3s;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.img-mini-3 {
    margin-right: 12px;
    border: 2px solid #e0e0e0;
    background: rgba(255,255,255,0.08);
    transition: box-shadow 0.3s, border 0.3s;
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

/* Efeito de profundidade para imagens */
.img-principal,
.img-mini,
.img-mini-1,
.img-mini-2,
.img-mini-3 {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.4s, border 0.3s;
}

.img-principal:hover,
.img-mini:hover,
.img-mini-1:hover,
.img-mini-2:hover,
.img-mini-3:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    border: 2px solid #999;
}

/* Controles do carrossel */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 12px;
}

.carousel-btn {
    background: #666;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 1.5em;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.carousel-btn:hover {
    background: #333;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Efeito de rastro de fumaça */
.smoke-trail {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(16px);
    z-index: 9999;
    animation: smoke-fade 1.1s linear forwards;
    mix-blend-mode: lighten;
}

@keyframes smoke-fade {
    0% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
    100% {
        transform: scale(3.5) translateY(-32px);
        opacity: 0;
    }
}

/* Tabela de produção */
.tabela-producao {
    width: 90%;
    max-width: 700px;
    margin: 32px auto 24px auto;
    border-collapse: collapse;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(192,31,37,0.10), 0 1.5px 8px rgba(255,215,0,0.07);
    overflow: hidden;
    text-align: center;
    transition: box-shadow 0.2s;
    display: table;
}

.tabela-producao th {
    background: #666;
    color: #fff;
    padding: 16px 10px;
    border: none;
    font-size: 1.15em;
}

.tabela-producao td {
    padding: 14px 10px;
    border: none;
    font-size: 1.08em;
    color: #232526;
    background: #fafafa;
    transition: background 0.2s;
}

.tabela-producao tr:nth-child(even) td {
    background: #f3f3f3;
}

.tabela-producao tr:hover td {
    background: #FFF3E0;
    color: #C01F25;
}

.tabela-producao-titulo {
    text-align: left;
    color: #C01F25;
    font-size: 2em;
    font-weight: 700;
    margin: 32px auto 18px auto;
    letter-spacing: 1px;
    text-shadow: 0 2px 12px rgba(191,13,0,0.10);
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

/* Responsivo */
@media (max-width: 900px) {
    .historia-section {
        max-width: 96vw;
        padding: 18px 8px 14px 8px;
    }
    
    main {
        padding: 18px 0 12px 0;
    }
    
    .titulo-historia {
        font-size: 1.8em;
        padding: 0;
    }

    .historia-texto {
        font-size: 1em;
    }
    
    .img-principal {
        width: 180px;
        height: 180px;
    }
    
    .img-mini {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 700px) {
    .tabela-producao {
        width: 99vw;
        font-size: 0.95em;
    }
    
    .tabela-producao th,
    .tabela-producao td {
        padding: 8px 4px;
    }
}

/* ============================================
   SEÇÃO DE ESTATÍSTICAS - HOME
   ============================================ */

.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(76, 175, 80, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(76, 175, 80, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.stats-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #2c3e50;
    position: relative;
    z-index: 2;
    letter-spacing: -0.5px;
}

.stats-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #C01F25, #FFD700);
    margin: 15px auto 0;
    border-radius: 2px;
}

.stats-container {
    position: relative;
    z-index: 2;
}

.stat-card {
    margin-bottom: 30px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
    border-radius: 12px;
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 3rem;
    color: #C01F25;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: rgba(76, 175, 80, 0.2);
    transform: scale(1.1);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-text {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   SEÇÃO DE DIFERENCIAIS
   ============================================ */

.diferenciais-section {
    padding: 60px 0;
    background: #ffffff;
}

.diferenciais-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.diferenciais-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ee5a6f);
    margin: 15px auto 0;
    border-radius: 2px;
}

.diferencial-card {
    margin-bottom: 30px;
    padding: 40px 25px;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 5px solid transparent;
    position: relative;
    overflow: hidden;
}

.diferencial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(255, 107, 107, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.diferencial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-left-color: #C01F25;
    background: #ffffff;
}

.diferencial-card:hover::before {
    opacity: 1;
}

.diferencial-icon {
    font-size: 3.5rem;
    color: #C01F25;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.diferencial-card:hover .diferencial-icon {
    color: #ff6b6b;
    transform: scale(1.2) rotate(-5deg);
}

.diferencial-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    letter-spacing: -0.3px;
}

.diferencial-card p {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    min-height: 80px;
}

.diferencial-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #C01F25;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.diferencial-link:hover {
    color: #ff6b6b;
    gap: 12px;
}

.diferencial-link i {
    transition: transform 0.3s ease;
}

.diferencial-link:hover i {
    transform: translateX(3px);
}

/* ============================================
   CTA INTERMEDIÁRIO
   ============================================ */

.cta-intermediario {
    padding: 60px 0;
    background: linear-gradient(135deg, #C01F25 0%, #8B1420 100%);
    position: relative;
    overflow: hidden;
}

.cta-intermediario::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.cta-intermediario::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
}

.cta-buttons .btn-primary {
    background: #ffffff;
    color: #C01F25;
    border-color: #ffffff;
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-outline-primary {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.cta-buttons .btn-outline-primary:hover {
    background: #ffffff;
    color: #C01F25;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 768px) {
    .stats-title,
    .diferenciais-title,
    .cta-content h2 {
        font-size: 2rem;
        margin-bottom: 35px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }

    .diferencial-icon {
        font-size: 3rem;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .stats-section,
    .diferenciais-section,
    .cta-intermediario {
        padding: 45px 0;
    }
}

@media (max-width: 480px) {
    .stats-title,
    .diferenciais-title,
    .cta-content h2 {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }

    .stat-text {
        font-size: 0.85rem;
    }

    .diferencial-card {
        padding: 30px 20px;
    }

    .diferencial-card h3 {
        font-size: 1.3rem;
    }

    .diferencial-card p {
        font-size: 0.9rem;
        min-height: auto;
    }

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

    .stats-section,
    .diferenciais-section,
    .cta-intermediario {
        padding: 35px 0;
    }
}

/* ============================================
   ANIMAÇÕES
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card,
.diferencial-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.col-md-4:nth-child(1) .diferencial-card { animation-delay: 0.1s; }
.col-md-4:nth-child(2) .diferencial-card { animation-delay: 0.2s; }
.col-md-4:nth-child(3) .diferencial-card { animation-delay: 0.3s; }
