/* ================================================================
   ==================     SOLUÇÃO FINAL E COMPLETA    ===================
   ================================================================ */
html,
body {
    width: 100%;
    overflow-x: hidden;
}


/* ========= RESET BÁSICO E CONFIGURAÇÕES GLOBAIS ========= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0f172a;
    color: #e2e8f0;
}

/* ========= BOTÃO FLUTUANTE WHATSAPP ========= */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ========= HEADER E NAVEGAÇÃO ========= */
#header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.navbar {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.logo img {
    height: 45px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 8px #00c3ff);
}

.menu {
    display: flex;
    gap: 2rem;
}

.menu a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.menu a::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 0;
    background: #00c3ff;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.menu a:hover {
    color: #00c3ff;
}

.menu a:hover::after {
    width: 100%;
}

.navbar-right .btn-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: #00c3ff;
    color: #0f172a;
}

.btn-contact:hover {
    background-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 195, 255, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 9999;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: #e2e8f0;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

/* ========= SEÇÃO HERO (INÍCIO) ========= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 40px 20px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

.hero-content {
    z-index: 10;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-size: clamp(2.2rem, 7vw, 3.5rem);
}

.hero .slogan {
    color: #94a3b8;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1rem, 4vw, 1.25rem);
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta.primary {
    background: #00c3ff;
    color: #0f172a;
}

.btn-cta.primary:hover {
    background: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 195, 255, 0.5);
}

.btn-cta.secondary {
    background: transparent;
    color: #e2e8f0;
    border: 2px solid #334155;
}

.btn-cta.secondary:hover {
    background: #334155;
    color: #fff;
    transform: scale(1.05);
}

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

.bubble {
    position: absolute;
    bottom: -150px;
    border-radius: 50%;
    background: rgba(0, 195, 255, 0.1);
    animation: float 20s infinite ease-in-out;
}
.bubble:nth-child(1) { width: 80px; height: 80px; left: 10%; animation-duration: 22s; }
.bubble:nth-child(2) { width: 120px; height: 120px; left: 85%; animation-duration: 25s; animation-delay: 3s; }
.bubble:nth-child(3) { width: 60px; height: 60px; left: 40%; animation-duration: 18s; animation-delay: 5s; }
.bubble:nth-child(4) { width: 150px; height: 150px; left: 60%; animation-duration: 28s; }
.bubble:nth-child(5) { width: 100px; height: 100px; left: 25%; animation-duration: 21s; animation-delay: 7s;}

@keyframes float {
    0% { transform: translateY(0); opacity: 0.5; }
    100% { transform: translateY(-120vh); opacity: 0; }
}

.hero-svg {
    position: absolute; bottom: 0; left: 0; width: 100%; height: auto; z-index: 1; pointer-events: none;
}

/* ========= ESTILOS GERAIS PARA SEÇÕES ========= */
.titulo-secao {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00c3ff;
    text-align: center;
    margin-bottom: 1rem;
}

.subtitulo-secao {
    font-size: 1.15rem;
    color: #94a3b8;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

/* ========= SEÇÃO SOBRE (TIMELINE) ========= */
.sobre-interativo {
    background-color: #0f172a;
    padding: 100px 0;
    position: relative;
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 50px auto 0;
    counter-reset: timeline-step;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: #334155;
    z-index: 1;
}

.timeline-linha-progresso {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 0;
    background-color: #00c3ff;
    box-shadow: 0 0 10px rgba(0, 195, 255, 0.7);
    z-index: 2;
    transition: height 0.3s ease-out;
}

.timeline-item {
    position: relative;
    width: 50%;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    counter-increment: timeline-step;
}

.timeline-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    padding-right: 40px;
    text-align: right;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-left: 40px;
    text-align: left;
}

.timeline-ponto {
    position: absolute;
    top: 20px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #0f172a;
    border: 3px solid #334155;
    z-index: 3;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-ponto {
    right: -8px;
}

.timeline-item:nth-child(even) .timeline-ponto {
    left: -8px;
}

.timeline-item.is-visible .timeline-ponto {
    border-color: #00c3ff;
    transform: scale(1.1);
    animation: pulse 1.s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 195, 255, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 195, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 195, 255, 0); }
}

.timeline-conteudo {
    padding: 20px;
    background-color: #1e293b;
    border-radius: 8px;
    border: 1px solid #334155;
}

.timeline-conteudo h3 {
    font-size: 1.4rem;
    color: #f1f5f9;
    margin-bottom: 10px;
}

.timeline-conteudo p {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.6;
}

.swipe-indicator {
    display: none;
    text-align: center;
    color: #526079;
    font-weight: 500;
    margin-top: 1.5rem;
}


/* ========= SEÇÃO PROJETOS ========= */
.projetos {
    background-color: #1e293b;
    padding: 100px 20px;
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.showcase-image {
    text-align: center;
}

.showcase-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.showcase-info .tag {
    display: inline-block;
    background-color: rgba(0, 195, 255, 0.1);
    color: #00c3ff;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.showcase-info h3 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.showcase-info .subtitle {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 2rem;
}

.case-study h4 {
    font-size: 1.1rem;
    color: #00c3ff;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.case-study p {
    color: #cbd5e1;
}

.case-study ul {
    list-style-type: none;
    padding-left: 0;
}

.case-study ul li {
    position: relative;
    padding-left: 20px;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}

.case-study ul li::before {
    content: '✓';
    color: #00c3ff;
    position: absolute;
    left: 0;
    font-weight: 600;
}

.tech-tags {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tags span {
    background-color: #334155;
    color: #cbd5e1;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

.showcase-cta {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

/* Esconde as abas no desktop por padrão */
.case-study-tabs, .case-study-content {
    display: none;
}


.cta-container {
    background-color: #0f172a;
    margin-top: 80px;
    padding: 60px 20px;
    border-radius: 16px;
    text-align: center;
}

.cta-container h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-grid {
    max-width: 800px;
    margin: 2rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.cta-card {
    background-color: #1e293b;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #334155;
    text-align: left;
}

.cta-card svg {
    color: #00c3ff;
    margin-bottom: 1rem;
}

.cta-card h4 {
    font-size: 1.2rem;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
}

.cta-card p {
    color: #94a3b8;
    font-size: 0.95rem;
}

/* ========= SEÇÃO SERVIÇOS (ACCORDION) ========= */
.servicos {
    background-color: #0f172a;
    padding: 100px 20px;
}

.accordion-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background-color: #1e293b;
    border-radius: 12px;
    border: 1px solid #334155;
    transition: all 0.4s ease;
}

.accordion-item.active {
    border-color: #00c3ff;
    box-shadow: 0 0 20px rgba(0, 195, 255, 0.2);
}

.accordion-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.accordion-header-content svg {
    color: #00c3ff;
    flex-shrink: 0;
}

.accordion-header-content h3 {
    font-size: 1.3rem;
    color: #f1f5f9;
}

.accordion-icon {
    font-size: 2rem;
    color: #94a3b8;
    transition: transform 0.4s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    color: #00c3ff;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-body-content {
    padding: 0 1.5rem 1.5rem 4.5rem;
    color: #94a3b8;
    border-top: 1px solid #334155;
    margin: 0 1.5rem;
    padding-top: 1.5rem;
}

.accordion-body-content h4 {
    font-size: 1.1rem;
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.accordion-body-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.accordion-body-content ul {
    list-style-type: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.accordion-body-content ul li {
    position: relative;
    padding-left: 20px;
}

.accordion-body-content ul li::before {
    content: '✓';
    color: #00c3ff;
    position: absolute;
    left: 0;
}

/* ========= SEÇÃO PROCESSO (Aprimorada) ========= */
.processo {
    background-color: #1e293b;
    padding: 100px 20px;
    overflow: hidden;
}

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

.etapa {
    background-color: #0f172a;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid #334155;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.etapa:hover {
    transform: translateY(-8px);
    border-color: #00c3ff;
    box-shadow: 0 10px 30px rgba(0, 195, 255, 0.1);
}

.etapa-icone {
    color: #00c3ff;
    margin-bottom: 1.5rem;
}

.etapa-numero {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
}

.etapa h3 {
    font-size: 1.3rem;
    color: #f1f5f9;
    margin-bottom: 0.75rem;
}

.etapa p {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* ========= FOOTER (Aprimorado) ========= */
.footer {
    background-color: #0f172a;
    padding: 100px 20px 40px;
    border-top: 1px solid #334155;
}

.footer-hub {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    text-align: left;
    align-items: center;
}

.footer-intro h3 {
    font-size: 2.2rem;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.footer-intro p {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.7;
}

.footer-contact-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background-color: #1e293b;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #334155;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: #00c3ff;
    box-shadow: 0 8px 25px rgba(0, 195, 255, 0.1);
}

.contact-card-icon {
    color: #00c3ff;
}

.contact-card-info span {
    display: block;
    font-size: 1rem;
    color: #94a3b8;
}

.contact-card-info strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #f1f5f9;
    word-wrap: break-word;
    word-break: break-all;
}

.footer-bottom {
    max-width: 1100px;
    margin: 60px auto 0;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #94a3b8;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-socials a {
    color: #94a3b8;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: #00c3ff;
}

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

/* ANIMAÇÕES PERSONALIZADAS PARA A SEÇÃO DE PROCESSO */
@keyframes slideInFromLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

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


@media (max-width: 992px) {
    .navbar { padding: 1rem 1.5rem; }
    .navbar-left { gap: 1.5rem; }

    .menu {
        position: fixed;
        left: -100%;
        top: 71px;
        gap: 0;
        flex-direction: column;
        background-color: #0f172a;
        width: 100%;
        height: calc(100vh - 71px);
        text-align: center;
        transition: 0.3s;
        padding-top: 2rem;
        z-index: 9997;
    }

    .menu.active { left: 0; }
    .menu a { padding: 1.5rem 0; font-size: 1.2rem; }
    .menu a:hover::after { width: 0; }
    .navbar-right .btn-contact { display: none; }
    .hamburger { display: flex; }
    
    .hamburger.active .line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .line:nth-child(2) { opacity: 0; }
    .hamburger.active .line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .showcase-container {
        grid-template-columns: 1fr;
        gap: 2rem; /* Reduzido para mobile */
    }
    
    .showcase-image { order: -1; }
    
    /* <<< NOVO: Ativa o sistema de abas no mobile */
    .showcase-info .case-study { display: none; }
    .case-study-tabs, .case-study-content { display: block; }
    
    .case-study-tabs {
        display: flex;
        flex-wrap: wrap; /* Permite que as abas quebrem a linha se necessário */
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .tab-pill {
        border: 1px solid #334155;
        background-color: transparent;
        color: #94a3b8;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-family: 'Poppins', sans-serif;
        font-size: 0.9rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .tab-pill.active {
        background-color: #00c3ff;
        border-color: #00c3ff;
        color: #0f172a;
        font-weight: 600;
    }

    .case-study-content {
        min-height: 120px; /* Evita que a seção "pule" ao trocar de abas */
    }

    .content-panel {
        display: none;
        opacity: 0;
        animation: fadeIn 0.4s ease forwards;
    }
    .content-panel.active {
        display: block;
    }
    
    .content-panel p {
        color: #cbd5e1;
        line-height: 1.7;
    }

    .content-panel ul {
        list-style: none;
        padding-left: 0;
    }
    
    .content-panel ul li {
        position: relative;
        padding-left: 20px;
        margin-bottom: 0.5rem;
        color: #cbd5e1;
    }

    .content-panel ul li::before {
        content: '✓';
        color: #00c3ff;
        position: absolute;
        left: 0;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    /* <<< FIM DO SISTEMA DE ABAS */

    .footer-hub { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .contact-card { text-align: left; }
}

@media (max-width: 768px) {
    .titulo-secao { font-size: 2rem; }
    .subtitulo-secao { font-size: 1rem; margin-bottom: 3rem; padding: 0 20px; }
    .projetos, .servicos, .processo { padding: 60px 15px; }
    .sobre-interativo, .footer { padding: 60px 0; }
    
    .footer { padding: 60px 20px; }

    .sobre-interativo .titulo-secao,
    .sobre-interativo .subtitulo-secao {
        padding-left: 20px;
        padding-right: 20px;
    }

    .timeline-container {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        margin-top: 2rem;
        padding: 0 20px 20px 20px;
        max-width: 100%;
    }
    .timeline-container::-webkit-scrollbar { display: none; }
    .timeline-container { -ms-overflow-style: none; scrollbar-width: none; }
    .timeline-container::before, .timeline-linha-progresso, .timeline-ponto { display: none; }

    .timeline-item {
        flex: 0 0 85%;
        width: 85%;
        margin-right: 20px;
        margin-left: 0 !important;
        margin-bottom: 0;
        padding: 0 !important;
        scroll-snap-align: start;
        text-align: left !important;
        opacity: 1;
        transform: none;
    }
    .timeline-item:last-child { margin-right: 0; }
    .timeline-conteudo {
        width: 100%;
        position: relative;
        overflow: hidden;
        padding: 1.8rem;
    }
    .timeline-conteudo::before {
        content: "0" counter(timeline-step);
        position: absolute;
        right: -10px;
        bottom: -25px;
        font-size: 100px;
        font-weight: 700;
        line-height: 1;
        color: rgba(0, 195, 255, 0.05);
        z-index: 1;
    }
    .timeline-conteudo h3, .timeline-conteudo p {
        position: relative;
        z-index: 2;
    }
    .timeline-conteudo p {
        font-size: 0.9rem;
    }
    .swipe-indicator { display: block; }

    .processo-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .etapa {
        opacity: 0;
        transition: opacity 0.5s ease-out;
    }
    .etapa.aos-animate {
        animation-duration: 0.7s;
        animation-fill-mode: forwards;
        animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .etapa:nth-of-type(odd).aos-animate { animation-name: slideInFromLeft; }
    .etapa:nth-of-type(even).aos-animate { animation-name: slideInFromRight; }

    .cta-group { flex-direction: column; align-items: center; gap: 1rem; }
    .btn-cta { width: 100%; max-width: 320px; }
    .accordion-body-content ul { grid-template-columns: 1fr; }
    .accordion-body-content { padding: 1.5rem; }
    .accordion-header-content h3 { font-size: 1.1rem; }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    .footer-bottom p { text-align: center; }
    .footer-socials { order: -1; }
}

@media (max-width: 480px) {
    .navbar { padding: 1rem; }
    .logo img { height: 40px; }
    .showcase-info h3 { font-size: 1.8rem; }
    .footer-intro h3 { font-size: 1.8rem; }
    .cta-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}