/* Estilos específicos para o brand-content-start.php */

/* Estilo para o logo no topo */
.brand-logo-header {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 10;
    background-color: rgba(13, 110, 253, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 2.5rem;
    width: auto;
}

.logo-text {
    font-size: 1.8rem;
    color: white;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Estilo para o cabeçalho */
.brand-header {
    margin-bottom: 1rem;
    margin-top: 4rem;
}

.brand-header .main-headline {
    font-size: 2.5rem;
    margin: 1.5rem 0;
    line-height: 1.3;
    font-weight: 600;
}

.brand-header .brand-highlight {
    color: #ffffff;
    font-weight: 700;
    background-color: rgba(13, 110, 253, 0.2);
    padding: 0.1rem 0.3rem;
    border-radius: 4px;
}

/* Estilo para a seção de propósito */
.purpose-section {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 0.8rem;
    margin: 0.5rem 0;
}

.purpose-text {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Estilos para os recursos */
.features-grid {
    margin: 0.7rem 0;
    gap: 0.7rem;
}

.feature-item {
    border-radius: 8px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
}

.feature-item {
    padding: 0.5rem;
}

.feature-item i {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Estilo para a seção CTA */
.cta-section {
    text-align: center;
    margin: 1rem 0 0.5rem;
}

.cta-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.8rem;
}

.cta-section .text-highlight {
    color: #ffffff;
    background-color: rgba(25, 135, 84, 0.3);
    padding: 0.1rem 0.5rem;
    border-radius: 4px;
}

.cta-section p {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

.cta-section .btn {
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease;
}

.cta-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Estilo para o rodapé */
.brand-footer {
    margin-top: 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.brand-footer p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Responsividade */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .brand-header h1 {
        font-size: 1.8rem;
    }
    
    .purpose-section {
        padding: 1rem;
    }
    
    .purpose-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section h2 {
        font-size: 1.3rem;
    }
}
