/* CSS Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

section#campanhas-eleitorais p {
    color: white !important;
}

 .arrumando-tudo .section-title h2{
    color: white!important;
}

section#campanhas-eleitorais {
    background: #164063;
    color: white!important;
}


.servico-icon img {
    width: 100%;
    border-radius: 20px;
}


.btn-detalhes{
    text-decoration:    none;  
    color:  white;
}

.ajuste-fino {
    text-align: left;
    padding-bottom: 40px;
}

.resolvendo {
    display: flex;
    gap: 30px;
}

.resolvendo img {
    border-radius: 20px;
    max-width: 600px;
}

.ajuste{
    display: flex;
    flex-direction: column;
    padding: 30px 0px;

}

.arrumando{
    display:    flex;  
    gap:20px;
    padding: 0px 30px;
    align-items:    center; 
}

.arrumando img{
        max-width: 550px;
    padding: 60px 0px;
    border-radius: 118px;
}
/* Variáveis de Cores e Fontes */
:root {
    --primary-color: #164063; /* Azul SGB */
    --secondary-color: #2e2e2e; /* Cinza Escuro SGB */
    --white-color: #ffffff;
    --light-gray-color: #f8f9fa;
    --medium-gray-color: #6c757d;
    --font-primary: 'Roboto', sans-serif;
    --font-secondary: 'Bebas Neue', cursive;
    --shadow-light: 0 4px 10px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 15px 35px rgba(0, 0, 0, 0.15);
    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s ease;
}

/* Configurações Globais */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--secondary-color);
    background-color: var(--white-color);
    line-height: 1.7;
    overflow-x: hidden;
}

img.img-forma {
    width: 90px;
}


.itens-icon{
    display: flex;
    gap:20px;
    align-items: center;
}


.container {

   
    padding: 0 2rem;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
}

.main-header.scrolled {
    background: var(--white-color);
    box-shadow: var(--shadow-medium);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    height: 50px;
    transition: transform var(--transition-fast);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 700;
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition-fast);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width var(--transition-fast);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: var(--transition-fast);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: left;
    overflow: hidden;
}


.dois{
    background: #2e2e2e;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(46 144 225 / 80%), rgb(18 18 18 / 60%));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white-color);
    max-width: 700px;
    animation: fadeInUp 1s ease;
    padding-top: 120px;
    padding-bottom: 60px;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
}

.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    border: 2px solid transparent;
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

/* Layouts de Seção */
section {
    position: relative;
    overflow: hidden;
}

.section-layout-1, .section-layout-3 {
    padding: 8rem 0;
}

.section-layout-1 {
    background: var(--white-color);
}

.section-layout-3 {
    background: var(--light-gray-color);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.section-layout-3 .content-wrapper {
    grid-template-columns: 1fr 1fr;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    line-height: 1.2;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.text-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.text-content ul {
    list-style: none;
    margin-top: 2rem;
}

.text-content li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.text-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 14px solid var(--primary-color);
}

.image-content {
    position: relative;
}

.delta-shape-bg {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120%;
    height: 120%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 85%);
    opacity: 0.08;
    z-index: 1;
}

.section-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-slow);
    position: relative;
    z-index: 2;
}

.section-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-heavy);
}

/* Seção Pilares */
.section-layout-2 {
    padding: 8rem 0;
    background: var(--secondary-color);
    color: var(--white-color);
    position: relative;
}

.section-layout-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 90,90 10,90" fill="%23164063" opacity="0.05"/></svg>');
    background-size: 200px 200px;
    background-repeat: repeat;
}

.section-layout-2 .section-title {
    color: var(--white-color);
    text-align: center;
    margin-bottom: 4rem;
}

.pilares-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.pilar-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pilar-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: rotate(45deg);
    transition: all var(--transition-slow);
    opacity: 0;
}

.pilar-card:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

.pilar-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pilar-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--white-color));
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    opacity: 0.8;
}

.pilar-card .img-forma {
    width: 90px;
    margin: 0 auto 1.5rem;
    display: block;
}

.pilar-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white-color);
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.3;
    min-height: 60px;
}

.pilar-card p {
    opacity: 0.9;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-top: auto;
}

/* Seção Atuação */
.section-layout-4 {
    padding: 8rem 0;
    background: var(--white-color);
}

.section-layout-4 .section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.atuacao-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.atuacao-card {
    padding: 3rem;
    border-left: 6px solid var(--primary-color);
    background: var(--light-gray-color);
    border-radius: 0 15px 15px 0;
    transition: all var(--transition-fast);
    position: relative;
}

.atuacao-card::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 52px solid var(--primary-color);
    opacity: 0.1;
}

.atuacao-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
    background: var(--white-color);
}

.atuacao-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Seção Modalidades */
.section-layout-5 {
    padding: 8rem 0;
    background: var(--primary-color);
    color: var(--white-color);
}

.section-layout-5 .section-title {
    color: var(--white-color);
    text-align: center;
    margin-bottom: 4rem;
}

.modalidades-tabs {
    max-width: 900px;
    margin: 0 auto;
}

.tab-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-link {
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: var(--white-color);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 50px;
    transition: all var(--transition-fast);
    position: relative;
}

.tab-link:hover {
    border-color: var(--white-color);
    background: rgba(255, 255, 255, 0.1);
}

.tab-link.active {
    background: var(--white-color);
    color: var(--primary-color);
    border-color: var(--white-color);
}

.tab-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 15px;
    min-height: 150px;
}

.tab-pane {
    display: none;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* Footer */
.main-footer-final {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white-color);
    padding: 6rem 0 2rem;
    position: relative;
}

.main-footer-final::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 87px solid #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1.5rem;
    filter: brightness(1.2);
}

.footer-col h4 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--white-color);
}

.footer-col a {
    color: var(--white-color);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: all var(--transition-fast);
    opacity: 0.9;
}

.footer-col a:hover {
    opacity: 1;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    padding: 0.8rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    transition: all var(--transition-fast);
    display: inline-block;
}

.social-links a:hover {
    background: var(--white-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.8;
}

/* Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all var(--transition-fast);
    z-index: 1000;
    box-shadow: var(--shadow-medium);
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-heavy);
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

   .novos {
    padding-top: 60px !important;
}

  a.btn.btn-primary {
    max-width: 100%!important;
}
    .nav-menu a{
        font-size: 24px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--white-color);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: var(--transition-fast);
        box-shadow: var(--shadow-medium);
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .section-layout-3 .content-wrapper {
    flex-direction: column-reverse;
    display: flex;
    }
    
    .section-layout-3 .image-content {
        order: -1;
    }
    
    .atuacao-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .tab-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .pilares-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {



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

.title2 h2 {
    margin-bottom: 26px !important;
}

.title2 .section-title::after {
    content: '';
    position: absolute;
    display: flex;
    bottom: -10px;
    width: 80px;
    height: 4px;
    justify-content: center;
    margin: 0px auto;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    text-align: center;
    align-items: center;
}

.ajuste-fino {
    text-align: left;
    padding-bottom: 0px;
}







.resolvendo img {
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
}

.tab-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    min-height: 150px;
}


.arrumando{
    
    flex-direction: column-reverse;
    
}


.arrumando img {
    max-width: 100%;
    border-radius: 20px;
    padding:    0px;
}


.itens-icon{
    display: flex;
    gap:20px;
    align-items: center;
    text-align: left;
    padding: 20px 0px;
}




.footer-col h4::after {
    content: '';
    position: relative;
    display: flex;
    width: 50px;
    margin: 0px auto;
    height: 3px;
    background: var(--white-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.section-title::after {
    content: '';
    position: relative;
    display: flex;
    bottom: -10px;
    width: 80px;
    height: 4px;
    justify-content: center;
    margin: 0px auto;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    text-align: center;
    align-items: center;
}



    .container {
        padding: 0 1rem;
    }
    
     .hero-title {
        font-size: 3rem;
        padding-top: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
     .btn {
        padding: 1rem 2rem;
        font-size: 1.3rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .section-layout-1, .section-layout-3, .section-layout-2, .section-layout-4, .section-layout-5 {
        padding: 4rem 0;
    }
}

/* Melhorias de Performance */
.section-image,
.pilar-card,
.atuacao-card {
    will-change: transform;
}

/* Acessibilidade */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }


}

/* Estados de Foco */
.btn:focus,
.tab-link:focus,
.nav-menu a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}



/* ==== FIX SGB: botão do hero não vazar e alinhar à esquerda ==== */
.hero-section .hero-content { text-align: left !important; }
.hero-section .btn {
    display: inline-block;
    position: relative;
    overflow: hidden;
    margin: 0; /* evita margens que empurrem para fora */
}

/* Seção "O que fazemos" - Layout Compacto */
.section-layout-compact {
    padding: 5rem 0;
    background: var(--white-color);
}

.section-layout-compact .section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.servico-card {
    background: var(--light-gray-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.servico-card.destaque {
    background: linear-gradient(135deg, var(--primary-color), #1a5a7a);
    color: var(--white-color);
}

.servico-card.destaque:hover {
    border-color: var(--white-color);
}

.servico-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.servico-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.servico-card.destaque h3 {
    color: var(--white-color);
}

.servico-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.servico-card li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1rem;
}

.servico-card li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.servico-card.destaque li::before {
    color: var(--white-color);
}

.solucoes-resumo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--light-gray-color);
    border-radius: 15px;
}

.solucao-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.solucao-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cta-final {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color), #1a5a7a);
    border-radius: 15px;
    color: var(--white-color);
}

.cta-final p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.cta-final .btn {
    background: var(--white-color);
    color: var(--primary-color);
    border: none;
}

.cta-final .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsividade para seção compacta */
@media (max-width: 768px) {
    .section-layout-compact {
        padding: 3rem 0;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .servico-card {
        padding: 1.5rem;
    }
    
    .solucoes-resumo {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    
    .cta-final {
        padding: 1.5rem;
    }
}

/* Responsividade melhorada para cards de pilares */
@media (max-width: 768px) {
    .pilar-card {
        min-height: 250px;
        padding: 2rem;
    }
    
    .pilar-card h3 {
        font-size: 1.2rem;
        min-height: 50px;
    }
    
    .pilares-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pilar-card .img-forma {
        width: 80px;
    }
    .hero-content{
        padding-top: 90px;
        padding-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .pilar-card {
        min-height: 220px;
        padding: 1.5rem;
    }
    
    .pilar-card h3 {
        font-size: 1.1rem;
        min-height: 45px;
    }
    
    .pilar-card .img-forma {
        width: 70px;
    }
}
