.sitename {
    font-family: 'poppins' !important;
    color: #1050a2 !important;
}

#about2 {
    background: #0043dd;
}

#about2 .about-title {
    font-size: 48px;
    color: #fff;
}

#about2 .about-meta {
    color: #00fcff;
    font-size: 20px;
}

#about2 .about-description {
    font-size: 22px;
}

#about2 .feature-tit {
    font-size: 18px;
    color: #48bcff;
}

#about2 .feature-tit i {
    font-size: 18px;
    color: #48bcff;
}

#about2 .feature-desc {
    font-size: 16px;
    color: #fff;
}

#about {
    background: #fff;
}

#about .about-title {
    font-size: 48px;
}

#about .about-meta {
    font-size: 20px;
}

#about .about-description {
    font-size: 20px;
}

#about .feature-tit {
    font-size: 18px;
}

#about .feature-tit i {
    font-size: 18px
}

#about .feature-desc {
    font-size: 16px;
}


#hero .hero-content h3 i::before {
    color: #ff8800;
}

#hero .hero-content h3{
    color: #ff8800;
}

#features-cards .about-title{
    font-size: 2.5rem;
}


/* ===== Identification Cards ===== */
.identification-card {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
  border: 2px solid #0043dd;
  border-radius: 12px;
  padding: 15px 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.identification-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 67, 221, 0.15);
  border-color: #0056f0;
}

.point-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #0043dd 0%, #0056f0 100%);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.1rem;
  margin-right: 12px;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(0, 67, 221, 0.25);
}

.identification-card:hover .point-number {
  transform: scale(1.08);
  box-shadow: 0 5px 15px rgba(0, 67, 221, 0.35);
}

.final-message-box {
  background: linear-gradient(135deg, #fff3cd 0%, #ffe8a1 100%);
  border: 2px solid #ff9800;
  border-radius: 15px;
  padding: 15px 20px;
  box-shadow: 0 8px 25px rgba(255, 152, 0, 0.15);
  transition: all 0.3s ease;
  width: 100%;
}

.final-message-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 152, 0, 0.25);
}



/* ===== CSS DAS IMAGENS E BADGE ===== */

/* Wrapper das imagens */
.image-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px 40px 40px;
    overflow: visible !important;
}

/* Container das imagens */
.images {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

/* Imagem principal (maior) */
.images .main-image {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

/* Imagem pequena (sobreposta) */
.images .small-image {
    position: absolute;
    bottom: -25px;
    left: -25px;
    width: 42%;
    height: auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 4px solid #0043dd;
    z-index: 2;
}

/* Badge flutuante - CORRIGIDO */
.experience-badge {
    position: absolute;
    right: 10px;
    background: linear-gradient(135deg, #48bcff 0%, #0043dd 100%);
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 67, 221, 0.5);
    z-index: 100;
    text-align: center;
    min-width: 160px;
}

.experience-badge h3 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.experience-badge h3 span {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 5px;
    opacity: 0.95;
}

.experience-badge p {
    color: #fff;
    font-size: 0.8rem;
    margin: 8px 0 0 0;
    opacity: 0.9;
}

/* Animação flutuante */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsivo */
@media (max-width: 991px) {
    .image-wrapper {
        padding: 50px 15px 30px 30px;
        margin-top: 40px;
    }
    
    .images {
        max-width: 380px;
    }
    
    .images .small-image {
        width: 40%;
        bottom: -20px;
        left: -20px;
        border-width: 3px;
    }
    
    .experience-badge {
        right: 5px;
        top: 15px;
        padding: 18px 22px;
        min-width: 140px;
    }
    
    .experience-badge h3 {
        font-size: 1.8rem;
    }
    
    .experience-badge h3 span {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .image-wrapper {
        padding: 40px 10px 25px 25px;
    }
    
    .images {
        max-width: 300px;
    }
    
    .images .small-image {
        width: 38%;
        bottom: -15px;
        left: -15px;
        border-width: 3px;
    }
    
    .experience-badge {
        padding: 15px 18px;
        min-width: 120px;
        right: 5px;
        top: 10px;
    }
    
    .experience-badge h3 {
        font-size: 1.5rem;
    }
    
    .experience-badge h3 span {
        font-size: 0.75rem;
    }
    
    .experience-badge p {
        font-size: 0.7rem;
    }
}

.problem-card {
    background: linear-gradient(135deg,rgba(255, 255, 255, 0.15) 0%,rgba(255, 255, 255, 0.08) 100%);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}


#diagnostico .card-diag {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
    padding: 20px;
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
}

#diagnostico .card-diag i {
    font-size: 1.8rem;
    color: #0043dd;
    margin-right: 15px;
    flex-shrink: 0;
}

.alert-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe8a1 100%);
    padding: 15px;
    border-radius: 15px;
}

.alert-box i {
    font-size: 1.8rem;
    color: #ff9800;
    margin-right: 15px;
    flex-shrink: 0;
}

#diagnostico {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
    padding: 80px 0;
}

#autoridade {
    background: linear-gradient(135deg, #0043dd 0%, #0056f0 100%);
    padding: 80px 0;
}

#autoridade .metodologia i {
    font-size: 1.8rem;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 5px;
    color: #48bcff !important;
}

#autoridade .section-title h2::after {
    background: #48bcff !important;
}

#autoridade .values-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 15px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
}

#autoridade .values-box i {
    font-size: 1.5rem;
    margin-right: 12px;
    flex-shrink: 0;
    margin-top: 5px;
}

#filtro .serve {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 7px;
    padding-left: 25px;
    border-radius: 15px;
    height: 100%;
    
}

#filtro .serve i {
    font-size: 1.8rem;
    color: #4caf50;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 5px;
    
}

#filtro .nserve {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    padding: 7px;
    padding-left: 25px;
    border-radius: 15px;
    height: 100%;
}

#filtro .nserve i {
    font-size: 1.8rem;
    color: #d32f2f;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 5px;
}

#call-to-action .escassez {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    backdrop-filter: blur(10px);
}

#call-to-action .escassez i {
    font-size: 1.8rem;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 5px;
}


#micro-seguranca .section-title h2:after {
  background: #48bcff;
}