/* ========== CB Digital - Novas Seções ========== */

/* Stack Tecnológico */
.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tech-category {
    background: rgba(15, 25, 55, 0.5);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.tech-category:hover {
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.2);
    transform: translateY(-3px);
}

.tech-category h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #00d4ff;
    font-weight: 600;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-badge {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.tech-badge:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.6);
    transform: scale(1.05);
}

/* Testimonials Digital */
.testimonials-grid-digital {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card-digital {
    background: rgba(15, 25, 55, 0.6);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.testimonial-card-digital:hover {
    border-color: rgba(102, 126, 234, 0.6);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.2);
    transform: translateY(-5px);
}

.testimonial-rating {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.25rem;
}

.testimonial-card-digital blockquote {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 1.5rem 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(0, 212, 255, 0.4);
}

.testimonial-author strong {
    display: block;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* Equipe */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background: rgba(15, 25, 55, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.2);
    transform: translateY(-8px);
}

.team-member__photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.team-member__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.team-member__role {
    display: block;
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.team-member__badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.team-member__badges span {
    background: rgba(102, 126, 234, 0.15);
    border: 1px solid rgba(102, 126, 234, 0.3);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Blog Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: rgba(15, 25, 55, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.blog-card:hover {
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

.blog-card__image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card__content {
    padding: 1.5rem;
}

.blog-card__category {
    display: inline-block;
    background: rgba(0, 212, 255, 0.15);
    color: #00d4ff;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.blog-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #fff;
    line-height: 1.3;
}

.blog-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.blog-card__meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.blog-card__link {
    display: inline-block;
    color: #00d4ff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.blog-card__link:hover {
    color: #fff;
    transform: translateX(5px);
}

/* Ferramentas */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tool-card {
    background: rgba(15, 25, 55, 0.6);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.tool-card:hover {
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.2);
    transform: translateY(-5px);
}

.tool-card__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tool-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.tool-card > p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
}

.tool-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.tool-card__features li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.tool-card__features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
}

.tool-card .btn {
    width: 100%;
}

/* Responsivo */
@media (max-width: 768px) {
    .tech-stack-grid,
    .testimonials-grid-digital,
    .team-grid,
    .blog-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-badges {
        gap: 0.4rem;
    }
    
    .tech-badge {
        font-size: 0.8rem;
        padding: 0.35rem 0.7rem;
    }
}

/* ========== Fim CB Digital Novas Seções ========== */
