﻿/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Usar container do Bootstrap; remover override customizado */

/* Hero Section */
.hero-section {
    position: relative;
    background: url('../images/gestao-lean-da-estrategia/back1.png') center center/cover no-repeat,
                linear-gradient(168.16deg, #29235c -10.32%, #394195 110.32%);
    min-height: 654px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    text-align: left;
    max-width: 843px;
    padding: 40px 20px;
    margin-left: 190px;
}

.hero-title {
    font-size: clamp(28px, 4.5vw, 59px);
    font-weight: 700;
    line-height: clamp(36px, 5.5vw, 70px);
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.title-orange {
    color: #ff8000;
}

.title-white {
    color: #ffffff;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 700;
    color: #ff8000;
    margin-bottom: 49px;
    line-height: clamp(22px, 3vw, 32px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.btn-primary {
    background: #00c950;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 10px 37px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #00b347;
    transform: translateY(-1px);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

/* Garantir que o botão não mude de cor ao clicar/visitar */
.btn-primary:link,
.btn-primary:visited {
    color: #ffffff;
    background: #00c950;
    text-decoration: none;
}

.btn-primary:focus,
.btn-primary:active {
    color: #ffffff;
    background: #00c950;
    outline: none;
    border: none;
    text-decoration: none;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    transform: none;
}

/* CTA específico do hero com seta à direita */
.hero-cta {
    position: relative;
    padding-right: 44px;
}

.hero-cta::after {
    content: "→";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-60%);
    font-weight: 900;
    font-size: 16px;
}

.hero-cta:hover::after {
    transform: translateY(-60%) translateX(2px);
}

/* Orange Section */
.orange-section {
    background: #ff8000;
    padding: 60px 0;
    text-align: center;
}

.orange-section .section-title {
    font-size: 35px;
    font-weight: 700;
    line-height: 40px;
    color: #000000;
    margin-bottom: 20px;
    max-width: 658px;
    margin-left: auto;
    margin-right: auto;
}

.orange-section .section-description {
    font-size: 21px;
    line-height: 28px;
    max-width: 874px;
    margin: 1rem auto;
}

.text-white {
    color: #ffffff;
}

.text-bold {
    font-weight: 700;
    color: #000000;
}

/* Why Strategies Fail Section */
.why-fail-section {
    padding: 50px 0;
    background: #ffffff;
    position: relative;
    overflow: visible;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 40px;
}

/* Largura controlada sem usar .container */
.why-fail-section .content-wrapper {
    max-width: 1210px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title-dark {
    font-size: 35px;
    font-weight: 700;
    line-height: 40px;
    color: #272861;
    margin-bottom: 20px;
    text-align: center;
}

.section-text {
    font-size: 20px;
    line-height: 28px;
    color: #4a5565;
    margin-bottom: 20px;
}

.pillars-preview {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.pillar-icon {
    color: #00c950;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 3px;
}

.pillar-item p {
    font-size: 24px;
    line-height: 28px;
    color: #364153;
}

/* Imagem dos pilares à direita */
.why-right {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.pillars-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.15));
}

/* Imagem flutuante fora do content-wrapper para sobrepor outras seções */
.pillars-floating {
    position: absolute;
    right: calc((65vw - 1210px) / 2 - 24px);
    top: -40px;
    z-index: 3;
    pointer-events: none;
}

.institute-text {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: #272861;
    text-align: left;
    margin-top: 24px;
    margin-bottom: 0px;
}

/* How It Works Section */
.how-works-section {
    padding: 80px 0 120px;
    position: relative;
    overflow: visible;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 60% 30%, rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 90% 70%, rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        #f8f9fa;
    background-size: 50px 50px, 80px 80px, 60px 60px, 70px 70px, 90px 90px;
}

.how-works-section .container {
    position: relative;
    z-index: 4;
}

/* Imagem flutuante da seção Como Funciona */
.how-works-floating {
    position: absolute;
    left: 50%;
    bottom: -40px;
    transform: translateX(-50%);
    z-index: 3;
    pointer-events: none;
}

.how-works-image {
    max-width: 600px;
    height: auto;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.15));
}

.section-title-orange {
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
    color: #ff8000;
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 32px;
    font-weight: 500;
    line-height: 28px;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
}

.section-description-center {
    font-size: 20px;
    line-height: 28px;
    color: #000000;
    text-align: center;
    max-width: 837px;
    margin: 0 auto 60px;
}

/* Three Pillars Diagram */
.pillars-diagram {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><defs><linearGradient id="gear1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23ff8000;stop-opacity:1" /><stop offset="100%" style="stop-color:%23e67300;stop-opacity:1" /></linearGradient><linearGradient id="gear2" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%2329235c;stop-opacity:1" /><stop offset="100%" style="stop-color:%23394195;stop-opacity:1" /></linearGradient><linearGradient id="gear3" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%2300c950;stop-opacity:1" /><stop offset="100%" style="stop-color:%2300b347;stop-opacity:1" /></linearGradient></defs><circle cx="200" cy="150" r="80" fill="url(%23gear1)" opacity="0.1"/><circle cx="600" cy="150" r="80" fill="url(%23gear2)" opacity="0.1"/><circle cx="200" cy="450" r="80" fill="url(%23gear3)" opacity="0.1"/><circle cx="600" cy="450" r="80" fill="url(%23gear1)" opacity="0.1"/></svg>') center/contain no-repeat;
    filter: drop-shadow(10px 14px 10px rgba(0, 0, 0, 0.25));
}

.pillar-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pillar-top {
    grid-column: 1 / 3;
    justify-self: center;
    max-width: 300px;
}

.pillar-left {
    grid-column: 1;
    grid-row: 2;
}

.pillar-right {
    grid-column: 2;
    grid-row: 2;
}

.pillar-bottom {
    grid-column: 1 / 3;
    grid-row: 3;
    justify-self: center;
    max-width: 300px;
}

.pillar-card h4 {
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.pillar-top h4 {
    color: #ff8000;
    text-shadow: none;
}

.pillar-left h4 {
    color: #29235c;
    text-shadow: none;
}

.pillar-right h4 {
    color: #00c950;
    text-shadow: none;
}

.pillar-bottom h4 {
    color: #ff8000;
    text-shadow: none;
}

.pillar-card p {
    font-size: 16px;
    line-height: 20px;
    color: #333;
}

/* Success Cases Section */
.success-cases-section {
    background: url('../images/gestao-lean-da-estrategia/back2.png') left center / cover no-repeat, #ff8000;
    padding: 80px 0;
    position: relative;
    overflow: visible;
}

.section-title-white {
    font-size: 40px;
    font-weight: 900;
    line-height: 40px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
}

.section-description-white {
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
    max-width: 637px;
    margin-left: auto;
    margin-right: auto;
}

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

.testimonial-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e5e5;
    height: 300px;
    width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

/* Bloco da logo da empresa */
.company-logo-container {
    height: 85px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.company-logo {
    margin: 0;
}

/* Bloco do cabeçalho (título + autor) */
.testimonial-header {
    height: 65px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Bloco da citação */
.testimonial-quote-container {
    height: 65px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Bloco do botão */
.testimonial-button-container {
    height: 36px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.company-logo img {
    max-width: 132px;
    /*height: 40px;*/
    object-fit: contain;
}

.testimonial-card h4 {
    font-size: 19px;
    font-weight: 700;
    line-height: 28px;
    color: #0a0a0a;
    margin-bottom: 0px;
}

.author {
    font-size: 13px;
    line-height: 20px;
    color: #737373;
    margin-bottom: 0px;
}

.divider {
    width: 238px;
    height: 1px;
    background-color: #999999;
    margin: 11px 0 3px 0;
    display: block;
    border: none;
    opacity: 1;
}

.quote {
    font-size: 15px;
    line-height: 24px;
    color: #333;
    margin: 5px 0 10px;
    font-style: italic;
}

/* Estilo do botão baseado no componente Figma */
.testimonial-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ababab;
    border-radius: 8px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    background: #ffffff;
    padding: 9px 16px;
    width: 100%;
    height: 36px;
    text-decoration: none;
    font-family: Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 20px;
    color: #0a0a0a;
    transition: all 0.3s ease;
    margin-top: 10px;
}

    .testimonial-button:hover {
        box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
        border-color: #999;
        color: #0a0a0a;
        text-decoration: none;
        transform: translateY(-3px);
    }

.testimonial-button-text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.testimonial-button-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Estilo antigo mantido para compatibilidade */
.testimonial-link {
    font-size: 13px;
    color: #0a0a0a;
    text-decoration: none;
    font-weight: 500;
}

.testimonial-link:hover {
    color: #ff8000;
}

/* Imagem flutuante da seção de casos de sucesso */
.success-cases-floating {
    position: absolute;
    left: calc((65vw - 1210px) / 2 - 24px);
    bottom: -40px;
    z-index: 3;
    pointer-events: none;
}

.success-cases-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.15));
}

/* Content Section */
.content-section {
    padding: 80px 0;
    background: #ffffff;
}

.section-description-dark {
    font-size: 20px;
    line-height: 26px;
    color: #000;
    text-align: center;
    margin-bottom: 60px;
}

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

.article-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #ABABAB;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.article-card h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: #272861;
    margin-bottom: 8px;
}

.article-card p {
    font-size: 14px;
    line-height: 20px;
    color: #666;
    margin-bottom: 20px;
}

.article-image {
    margin: 20px 0;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    object-fit: cover;
}

.article-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ababab;
    border-radius: 8px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    background: #ffffff;
    padding: 9px 16px;
    width: 100%;
    height: 36px;
    text-decoration: none;
    font-family: Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 20px;
    color: #0a0a0a;
    transition: all 0.3s ease;
    margin-top: 10px;
}

    .article-link:hover {
        box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
        border-color: #999;
        color: #0a0a0a;
        text-decoration: none;
        transform: translateY(-3px);
    }

/* Texto e ícone do botão de artigo, espelhando o de depoimento */
.article-link-text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.article-link-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Contact Section */
.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: inset 0px -14px 34px 0px #090249;
    padding: 44px 0 78px;
    background: linear-gradient(90deg, #29235c 0%, #394195 100%);
    min-height: 909px;
}

.contact-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1920px;
    width: 100%;
    padding: 0 602px;
}

.contact-section .section-title-white {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 717px;
    height: 40px;
    line-height: 40px;
    letter-spacing: 0;
    color: #ff8000;
    font-family: Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 23px;
}

.contact-section .section-description-white {
    align-items: center;
    width: 637px;
    /*height: 102px;*/
    line-height: 30px;
    letter-spacing: 0;
    color: #ffffff;
    font-family: Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
    font-size: 20px;
    margin-bottom: 50px;
    font-weight: 400;
}

.contact-section .section-description-white .text-bold {
    line-height: 24px;
    letter-spacing: 0;
    color: #ff8000;
    font-family: Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.contact-form-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 134px;
    border-radius: 31px;
    box-shadow: 6px 12px 14px 0px #00000040;
    background: #ffffff;
    padding: 34px 30px 20px;
    width: calc(100% - 268px);
    max-width: none;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
    width: 100%;
}

.form-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.form-row .form-group {
    flex: 1;
}

.form-label {
    display: flex;
    align-items: center;
    height: 18px;
    line-height: 18px;
    letter-spacing: 0;
    color: #000000;
    font-family: Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    display: flex;
    align-items: center;
    border-radius: 7px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 12px 16px;
    width: 100%;
    box-sizing: border-box;
    color: #000000;
    font-family: Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
    font-size: 14px;
}

/* Phone input wrapper with Brazil flag */
.phone-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.brazil-flag-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 15px;
    z-index: 2;
    border-radius: 2px;
}

.phone-input {
    padding-left: 40px !important;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #d1d1d1;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #ff8000;
    box-shadow: 0 0 0 2px rgba(255, 128, 0, 0.2);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
    align-items: flex-start;
    padding-top: 12px;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 389px;
    height: 51px;
    border-radius: 8px;
    box-shadow: 0px 1px 2px 0px #0000000d;
    background: #00c950;
    border: none;
    color: #ffffff;
    font-family: Inter, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    margin: 20px auto;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #00b347;
    transform: translateY(-1px);
}

.btn-submit svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.security-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 355px;
    margin: 20px auto 0;
    line-height: 18px;
    letter-spacing: 0;
    color: #d1d1d1;
    font-family: Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
    font-size: 15px;
    text-align: center;
}

.error-message {
    color: #ff6b6b;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.success-message {
    color: #00c950;
    font-size: 14px;
    margin-top: 15px;
    padding: 10px;
    background: rgba(0, 201, 80, 0.1);
    border-radius: 5px;
    border: 1px solid rgba(0, 201, 80, 0.3);
    text-align: center;
}

/* Hero responsiveness and spacing tweaks */
@media (max-width: 1024px) {
    .hero-container {
        margin-left: 96px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        justify-content: center;
    }

    .hero-container {
        margin-left: 0;
        text-align: center;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
        line-height: 56px;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-right {
        justify-content: center;
    }
    .pillars-floating {
        position: static;
        display: flex;
        justify-content: center;
        margin-top: 10px;
        pointer-events: auto;
    }
    
    .pillars-diagram {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .pillar-top,
    .pillar-bottom {
        grid-column: 1;
        max-width: 100%;
    }
    
    .pillar-left,
    .pillar-right {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title-dark,
    .section-title-orange,
    .section-title-white {
        font-size: 28px;
        line-height: 34px;
    }
    
    .orange-section .section-title {
        font-size: 28px;
        line-height: 34px;
    }
    
    /* Responsividade do botão de depoimento */
    .testimonial-button {
        width: 100%;
        max-width: 280px;
        padding: 9px 12px;
        font-size: 12px;
    }
    
    .section-subtitle {
        font-size: 24px;
    }
    
    .testimonials-grid,
    .articles-grid {
        grid-template-columns: repeat(2, 1fr); /* tablet: 2 por linha */
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .pillar-item p {
        font-size: 18px;
    }

    .pillars-image {
        max-width: 420px;
    }
    .why-fail-section .content-wrapper {
        padding: 0 15px;
    }

    .how-works-section {
        padding-bottom: 20px;
    }
    .how-works-floating {
        position: static;
        left: auto;
        bottom: auto;
        transform: none;
        display: flex;
        justify-content: center;
        margin-top: 20px;
        z-index: auto;
        pointer-events: auto;
    }
    .how-works-image {
        max-width: 760px;
    }
    
    .success-cases-floating {
        position: static;
        left: auto;
        bottom: auto;
        transform: none;
        display: flex;
        justify-content: center;
        margin-top: 20px;
        z-index: auto;
        pointer-events: auto;
    }
    
    .success-cases-image {
        max-width: 420px;
    }

    /* Centraliza o divider nos cards no tablet */
    .divider {
        width: 100%;
        max-width: 238px;
        margin: 11px auto 3px;
    }

    /* Centraliza as imagens (logos) dos cards no tablet */
    .company-logo-container {
        align-items: center;
        justify-content: center;
    }
    .company-logo,
    .company-logo img {
        display: block;
        margin: 0 auto;
    }

    /* Dois cards por linha em tablet e centralizar o último ímpar */
    .testimonials-grid,
    .articles-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        justify-items: center;
    }

    /* Padroniza a largura e alinhamento de TODOS os cards no tablet */
    .testimonial-card,
    .article-card {
        width: 100%;
        max-width: 352px;
        justify-self: center;
        margin: 0 auto;
    }

    /* Centraliza textos dos cards no tablet */
    .testimonial-card,
    .article-card {
        text-align: center;
    }
    .testimonial-header,
    .testimonial-quote-container {
        align-items: center;
    }
    .article-card h4,
    .article-card p,
    .author,
    .quote {
        text-align: center;
    }
    /* Centraliza o botão/link "Ler Artigo" no tablet */
    .article-link {
        margin: 0 auto;
    }

    /* ===== Contact (Transforme sua estratégia com propósito) - Tablet ===== */
    .contact-section {
        padding: 32px 0 48px;
        min-height: auto;
        background: linear-gradient(90deg, #29235c 0%, #394195 100%);
    }
    .contact-section .container {
        max-width: 760px;
        width: 100%;
        padding: 0 24px;
        text-align: center;
    }
    .contact-section .section-title-white {
        width: 100%;
        height: auto;
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 12px;
    }
    .contact-section .section-description-white {
        width: 100%;
        height: auto;
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 24px;
        text-align: center;
    }
    .contact-form-wrapper {
        margin: 0;
        width: 100%;
        max-width: 720px;
        padding: 24px;
        border-radius: 20px;
        box-shadow: 6px 12px 14px 0px #00000026;
    }
    .contact-section .form-row {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .btn-submit {
        width: 100%;
        max-width: 280px;
        height: 44px;
        font-size: 16px;
        margin: 12px auto 0;
    }
    .security-text {
        width: 100%;
        margin: 10px auto 0;
        font-size: 13px;
        text-align: center;
    }

    /* Tablet: centraliza APENAS o último card quando número total for ímpar */
    .testimonials-grid > .testimonial-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        width: 100%;
        max-width: 352px;
        justify-self: center;
        margin: 0 auto;
    }
    .articles-grid > .article-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        width: 100%;
        max-width: 352px;
        justify-self: center;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    /* Padroniza o espaçamento de todas as sections no celular */
    section {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
    .why-fail-section {
        padding: 50px 0 0;
    }

    .hero-section {
        min-height: 500px;
    }
    
    /* Oculta o vídeo em mobile para economizar dados */
    .hero-video {
        display: none;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 34px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title-dark,
    .section-title-orange,
    .section-title-white {
        font-size: 24px;
        line-height: 30px;
    }
    
    .orange-section .section-title {
        font-size: 24px;
        line-height: 30px;
    }

    .section-description,
    .section-description-center,
    .section-description-white,
    .section-description-dark {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 20px;
    }
    
    .pillar-card {
        padding: 20px 15px;
    }
    
    .pillar-card h4 {
        font-size: 20px;
    }
    
    .pillar-card p {
        font-size: 14px;
    }

    .how-works-section {
        /* No mobile, a imagem não deve sobrepor o texto */
        padding-bottom: 20px;
        padding-top: 20px;
    }
    .how-works-floating {
        /* Torna a imagem parte do fluxo para ficar abaixo do texto */
        position: static;
        left: auto;
        bottom: auto;
        transform: none;
        display: flex;
        justify-content: center;
        margin-top: 20px;
        z-index: auto;
        pointer-events: auto;
    }
    .how-works-image {
        max-width: 370px;
    }
    /* Ajustes de background e posicionamento da imagem na seção de sucesso */
    .success-cases-section {
        background: #ff8000; /* remove a imagem de fundo no mobile */
        background-image: none;
    }

    .success-cases-floating {
        position: static;
        left: auto;
        bottom: auto;
        transform: none;
        display: flex;
        justify-content: center;
        margin-top: 20px;
        z-index: auto;
        pointer-events: auto;
    }
    
    .success-cases-image {
        max-width: 320px;
        height: auto;
    }

    /* Cards responsivos no mobile: tamanho padronizado e centralizados */
    .testimonial-card,
    .article-card {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
        min-height: 260px; /* altura padrão para uniformização */
    }
    .testimonial-card {
        height: auto;
        padding: 20px;
    }
    .company-logo-container,
    .testimonial-header,
    .testimonial-quote-container,
    .testimonial-button-container {
        height: auto;
    }
    .divider {
        width: 100%;
    }
    .quote {
        font-size: 14px;
        line-height: 22px;
    }
    .article-card {
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between; /* mantém o botão na base do card */
    }
    /* Botão de artigo centralizado no mobile */
    .article-link {
        margin: 12px auto 0;
        max-width: 280px;
        width: 100%;
    }

    /* Mobile: sempre 1 card por linha */
    .testimonials-grid,
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Margens horizontais no mobile para os grids de cards */
    .testimonials-grid,
    .articles-grid {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }

    /* Reforça margem interna na seção de Casos de Sucesso no mobile */
    .success-cases-section .container {
        padding: 0 15px;
    }

    /* ===== Contact (Transforme sua estratégia com propósito) - Mobile ===== */
    .contact-section {
        padding-top: 20px; /* reforço explícito */
        padding-bottom: 20px; /* reforço explícito */
        min-height: auto;
        background: linear-gradient(90deg, #29235c 0%, #394195 100%);
    }
    .contact-section .container {
        max-width: 100%;
        width: 100%;
        padding: 0 15px;
    }
    .contact-section .section-title-white {
        width: 100%;
        height: auto;
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 15px;
    }
    .contact-section .section-description-white {
        width: 100%;
        height: auto;
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 20px;
        text-align: center;
    }
    .contact-form-wrapper {
        margin: 0;
        width: 100%;
        padding: 20px;
        border-radius: 16px;
        box-shadow: 6px 12px 14px 0px #00000026; /* suaviza sombra no mobile */
    }
    .contact-section .form-row {
        flex-direction: column;
        gap: 15px;
    }
    .btn-submit {
        width: 100%;
        max-width: 280px;
        height: 44px;
        font-size: 16px;
    }
    .security-text {
        width: 100%;
        margin: 10px auto 0;
        font-size: 13px;
    }
}

/* ===== RESPONSIVE DESIGN - HERO SECTION ===== */

/* Tablet - Landscape and Portrait */
@media screen and (max-width: 1024px) {
    .hero-section {
        min-height: 500px;
        justify-content: center;
    }
    
    .hero-container {
        margin-left: 96px;
        max-width: 700px;
        padding: 30px 20px;
    }
    
    .hero-title {
        font-size: 48px;
        line-height: 56px;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 35px;
    }
    
    .btn-primary {
        padding: 12px 32px;
        font-size: 14px;
    }

    /* Ajustes do CTA (Saiba Mais) no tablet */
    .hero-cta {
        padding: 12px 40px; /* espaço para a seta */
        border-radius: 12px;
        min-height: 48px;
        min-width: 220px;
    }
    .hero-cta::after {
        right: 16px; /* posiciona melhor a seta no tablet */
        transform: translateY(-50%);
        font-size: 16px;
    }
}

/* Mobile - Portrait and Landscape */
@media screen and (max-width: 768px) {
    .hero-section {
        min-height: 400px;
        justify-content: center;
        background-position: center right;
    }
    
    .hero-container {
        margin-left: 0;
        max-width: 100%;
        padding: 20px 15px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 42px;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 25px;
    }
    
    .btn-primary {
        padding: 14px 28px;
        font-size: 14px;
        display: inline-block;
        width: auto;
    }

    /* CTA (Saiba Mais) - refinamentos para tablet estreito / mobile largo */
    .hero-cta {
        padding: 12px 40px;
        border-radius: 12px;
        min-height: 46px;
        min-width: 210px;
    }
    .hero-cta::after {
        right: 14px;
        transform: translateY(-50%);
        font-size: 16px;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .hero-section {
        min-height: 350px;
    }
    
    .hero-container {
        padding: 15px 10px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 8px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 20px;
    }
    
    .btn-primary {
        padding: 12px 24px;
        font-size: 13px;
        width: 100%;
        max-width: 200px;
    }
}

/* Large Desktop */
@media screen and (min-width: 1200px) {
    .hero-container {
        margin-left: 14vw;
        max-width: 900px;
    }
    
    .hero-title {
        font-size: 3.5rem;
        line-height: 4.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        line-height: 32px;
    }

    .how-works-section {
        position: relative;
        /* Desktop: imagem no fluxo, sem espaço em branco extra */
        padding-bottom: 0;
    }
    .how-works-floating {
        bottom: -60px;
    }
    .how-works-image {
        /*width: 100%;*/
        max-width: 100%;
        height: auto;
    }
    
    .success-cases-floating {
        left: calc((100vw - 1200px) / 2 - 50px);
        bottom: -50px;
    }
    
    .success-cases-image {
        max-width: 700px;
    }
}

/* ===== Desktop – Notebook pequeno (1280×720) ===== */
@media screen and (min-width: 1280px) and (max-width: 1365px) {
  .hero-container {
    margin-left: 10vw;
    max-width: 820px;
    padding: 30px 20px;
  }
  /* Controle de tamanho das imagens nas resoluções 1280×720 */
  .pillars-floating { right: calc((100vw - 1080px) / 2 - 30px); top: -20px; width: 40%; }
  .pillars-image { max-width: clamp(480px, 42vw, 540px); }
  .how-works-section { padding-bottom: 0; }
  .how-works-floating { position: static; left: auto; bottom: auto; transform: none; display: flex; justify-content: center; margin-top: 20px; pointer-events: auto; }
  .how-works-image { max-width: 80%; height: auto; }
  .testimonials-grid,
  .articles-grid {
    max-width: 1080px;
    gap: 24px;
    margin: 0 auto;
  }
  .success-cases-floating {
    left: calc((100vw - 1080px) / 2 - 40px);
  }
  .success-cases-image {
    max-width: 660px;
  }
  .contact-section .container {
    max-width: 1080px;
    padding: 0 60px;
  }
}

/* ===== Desktop – Notebook padrão (1366×768) até Full HD (≤1919) ===== */
@media screen and (min-width: 1366px) and (max-width: 1919px) {
  .hero-container {
    margin-left: 12vw;
    max-width: 900px;
  }
  /* Controle de tamanho das imagens nas resoluções 1366–1919 */
  .pillars-floating { right: calc((100vw - 1200px) / 2 - 40px); }
  .pillars-image { max-width: clamp(560px, 40vw, 600px); }
  .how-works-section { padding-bottom: 0; }
  .how-works-floating { position: static; left: auto; bottom: auto; transform: none; display: flex; justify-content: center; margin-top: 20px; pointer-events: auto; }
  .how-works-image { max-width: 80%; height: auto; }
  .testimonials-grid,
  .articles-grid {
    max-width: 1200px;
    gap: 28px;
    margin: 0 auto;
  }
  .success-cases-floating {
    left: calc((100vw - 1200px) / 2 - 50px);
  }
  .success-cases-image {
    max-width: 700px;
  }
  .contact-section .container {
    max-width: 1200px;
    padding: 0 80px;
  }
}

/* ===== Desktop – Widescreen grande (1920×1080 a 2559×1440) ===== */
@media screen and (min-width: 1920px) and (max-width: 2559px) {
  .hero-container {
    margin-left: calc((100vw - 1440px) / 2 + 60px);
    max-width: 980px;
  }
  /* Controle de tamanho das imagens nas resoluções 1920–2559 */
  .pillars-floating { right: calc((100vw - 1320px) / 2 - 60px); }
  .pillars-image { max-width: clamp(600px, 36vw, 640px); }
  .how-works-section { padding-bottom: 0; }
  .how-works-floating { position: static; left: auto; bottom: auto; transform: none; display: flex; justify-content: center; margin-top: 20px; pointer-events: auto; }
  .how-works-image { max-width: 60%; height: auto; }
  .testimonials-grid,
  .articles-grid {
    max-width: 1320px;
    gap: 32px;
    margin: 0 auto;
  }
  .success-cases-floating {
    left: calc((100vw - 1320px) / 2 - 60px);
  }
  .success-cases-image {
    max-width: 760px;
  }
  .contact-section .container {
    max-width: 1320px;
    padding: 0 120px;
  }
}

/* ===== Desktop – Ultra‑wide (≥2560×1440 e <3440) ===== */
@media screen and (min-width: 2560px) and (max-width: 3439px) {
  .hero-container {
    margin-left: calc((100vw - 1600px) / 2 + 80px);
    max-width: 1040px;
  }
  /* Controle de tamanho das imagens nas resoluções 2560–3439 */
  .pillars-floating { right: calc((100vw - 1440px) / 2 - 14vw); }
  .pillars-image { max-width: clamp(640px, 34vw, 700px); }
  .how-works-section { padding-bottom: 0; }
  .how-works-floating { position: static; left: auto; bottom: auto; transform: none; display: flex; justify-content: center; margin-top: 20px; pointer-events: auto; }
  .how-works-image { max-width: 100%; height: auto; }
  .testimonials-grid,
  .articles-grid {
    max-width: 1440px;
    gap: 36px;
    margin: 0 auto;
  }
  .success-cases-floating {
    left: calc((100vw - 1440px) / 2 - 80px);
  }
  .success-cases-image {
    max-width: 820px;
  }
  .contact-section .container {
    max-width: 1440px;
    padding: 0 160px;
  }
}

/* ===== Desktop – Ultra‑wide grande (≥3440×1440) ===== */
@media screen and (min-width: 3440px) {
  .hero-container {
    margin-left: calc((100vw - 1600px) / 2 + 100px);
    max-width: 1080px;
  }
  /* Controle de tamanho das imagens nas resoluções ≥3440 */
  .pillars-floating { right: calc((100vw - 1600px) / 2 - 20vw); }
  .pillars-image { max-width: clamp(720px, 32vw, 800px); }
  .how-works-section { padding-bottom: 0; }
  .how-works-floating { position: static; left: auto; bottom: auto; transform: none; display: flex; justify-content: center; margin-top: 20px; pointer-events: auto; }
  .how-works-image { max-width: 100%; height: auto; }
  .testimonials-grid,
  .articles-grid {
    max-width: 1600px;
    gap: 38px;
    margin: 0 auto;
  }
  .success-cases-floating {
    left: calc((100vw - 1600px) / 2 - 90px);
  }
  .success-cases-image {
    max-width: 900px;
  }
  .contact-section .container {
    max-width: 1600px;
    padding: 0 180px;
  }
}

/* ===== Large Tablet (iPad Pro Landscape 1024×1366) ===== */
@media screen and (min-width: 821px) and (max-width: 1024px) {
  /* Grid de cards em 2 colunas e centralizados */
  .testimonials-grid,
  .articles-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(320px, 1fr));
    gap: 20px;
    justify-items: center;
    max-width: 1024px;
    margin: 0 auto;
  }
  /* Largura confortável dos cards no iPad Pro */
  .testimonial-card,
  .article-card {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
  /* Centraliza o último card quando houver um ímpar */
  .testimonials-grid > .testimonial-card:last-child:nth-child(odd),
  .articles-grid > .article-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 420px;
    justify-self: center;
  }

  /* Sessão de contato ajustada para tablet grande */
  .contact-section {
    padding: 40px 0 70px;
    min-height: auto;
    background: linear-gradient(90deg, #29235c 0%, #394195 100%);
  }
  .contact-section .container {
    max-width: 1024px;
    width: 100%;
    padding: 0 120px;
    text-align: center;
  }
  .contact-section .section-title-white {
    width: 100%;
    height: auto;
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 16px;
  }
  .contact-section .section-description-white {
    width: 100%;
    height: auto;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 30px;
    text-align: center;
  }
  .contact-form-wrapper {
    margin: 0;
    width: 100%;
    max-width: 784px;
    padding: 26px;
    border-radius: 22px;
    box-shadow: 6px 12px 14px 0px #00000026;
  }
  .contact-section .form-row {
    display: flex;
    gap: 18px;
  }
  .btn-submit {
    width: 100%;
    max-width: 300px;
    height: 46px;
    font-size: 16px;
    margin: 12px auto 0;
  }
  .security-text {
    width: 100%;
    margin: 10px auto 0;
    font-size: 13px;
    text-align: center;
  }

  /* ===== Como Funciona a Gestão Lean da Estratégia ===== */
  /* Evita a sobreposição da imagem de engrenagens com os textos */
  .how-works-section {
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .how-works-floating {
    position: static;        /* torna a imagem parte do fluxo */
    left: auto;
    bottom: auto;
    transform: none;
    display: flex;
    justify-content: center; /* centraliza a imagem abaixo do texto */
    margin-top: 24px;
    z-index: auto;
    pointer-events: auto;
  }
  .how-works-image {
    width: 100%;
    max-width: 980px;        /* tamanho confortável para 1024px */
  }
}

/* ===== Medium Tablet (Android Galaxy Tab 800×1280) ===== */
@media screen and (min-width: 769px) and (max-width: 820px) {
  /* Hero: leve redução do deslocamento lateral */
  .hero-container {
    margin-left: 56px;
    max-width: 720px;
    padding: 26px 18px;
  }

  /* Grid de cards: duas colunas, centralizado e com largura confortável */
  .testimonials-grid,
  .articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 360px); /* largura fixa e consistente */
    gap: 18px;
    justify-items: center;
    justify-content: center; /* centraliza o grid no container */
    max-width: 820px;
    margin: 0 auto;
  }
  .testimonial-card,
  .article-card {
    width: 360px;        /* medida padrão */
    max-width: 360px;    /* garante consistência visual */
    margin: 0 auto;
    justify-self: center;
    text-align: center;
  }
  .testimonial-header,
  .testimonial-quote-container {
    align-items: center;
  }
  .article-card h4,
  .article-card p,
  .author,
  .quote {
    text-align: center;
  }
  .article-link {
    margin: 0 auto;
  }
  /* Centraliza o último card quando houver um ímpar */
  .testimonials-grid > .testimonial-card:last-child:nth-child(odd),
  .articles-grid > .article-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: 360px;
    max-width: 360px;
    justify-self: center;
  }

  /* "Como Funciona" (engrenagens): evita sobreposição e centraliza a imagem */
  .how-works-section {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .how-works-floating {
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    z-index: auto;
    pointer-events: auto;
  }
  .how-works-image {
    width: 100%;
    max-width: 700px;
  }

  /* Casos de Sucesso: imagem integrada ao fluxo e dimensionada */
  .success-cases-floating {
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    z-index: auto;
    pointer-events: auto;
  }
  .success-cases-image {
    max-width: 560px;
  }

  /* Contato (Transforme sua estratégia com propósito) */
  .contact-section {
    padding: 34px 0 54px;
    min-height: auto;
    background: linear-gradient(90deg, #29235c 0%, #394195 100%);
  }
  .contact-section .container {
    max-width: 820px;
    width: 100%;
    padding: 0 60px;
    text-align: center;
  }
  .contact-section .section-title-white {
    width: 100%;
    height: auto;
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 14px;
  }
  .contact-section .section-description-white {
    width: 100%;
    height: auto;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 26px;
    text-align: center;
  }
  .contact-form-wrapper {
    margin: 0;
    width: 100%;
    max-width: 720px;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 6px 12px 14px 0px #00000026;
  }
  .contact-section .form-row {
    display: flex;
    gap: 16px;
  }
  .btn-submit {
    width: 100%;
    max-width: 300px;
    height: 46px;
    font-size: 16px;
    margin: 12px auto 0;
  }
  .security-text {
    width: 100%;
    margin: 10px auto 0;
    font-size: 13px;
    text-align: center;
  }
}
/* Tablet (≤768px): Success Cases layout standardization */
@media (max-width: 768px) {
  .success-cases-section {
    padding: 32px 0;
    background-color: var(--orange-500, #FF7A00);
    background-image: none;
    background-size: cover;
    background-position: center;
  }

  .success-cases-section .container {
    max-width: 720px;
    width: 100%;
    padding: 0 15px;
    text-align: center;
  }

  .success-cases-section .section-title-white,
  .success-cases-title {
    width: 100%;
    font-size: clamp(28px, 4vw, 34px);
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .success-cases-description {
    width: 100%;
    font-size: clamp(16px, 2.2vw, 18px);
    max-width: 64ch;
    margin: 12px auto 20px;
  }

  .success-cases-floating {
    position: static;
    transform: none;
    margin: 20px auto 0;
    width: min(76vw, 560px);
    height: auto;
    display: block;
  }

  .success-cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonial-card,
  .article-card {
    width: 100%;
    max-width: 352px;
    margin: 0 auto;
    padding: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
    border-radius: 16px;
  }

  .testimonial-card .quote,
  .article-card .excerpt {
    font-size: clamp(15px, 2.1vw, 17px);
    line-height: 1.5;
  }

  .testimonial-card .btn,
  .article-card .btn {
    width: 100%;
    max-width: 280px;
    min-height: 44px;
    font-size: 16px;
    margin: 12px auto 0;
  }
}