/* Project Details CSS */

/* Project Hero Section */
.project-hero {
    background: linear-gradient(135deg, var(--primary), #3a66aa);
    color: var(--light);
    padding: 160px 0 80px;
    position: relative;
}

.project-hero-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.breadcrumbs {
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumbs a:hover {
    color: #fff;
}

.project-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.project-tagline {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.project-hero .project-tags {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.project-hero .project-tag {
    background-color: rgba(255, 255, 255, 0.3);
}

.project-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.project-cta .btn {
    padding: 12px 25px;
    font-weight: 500;
    font-size: 1rem;
}

.project-cta .btn-primary {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.project-cta .btn-primary:hover {
    background-color: #0ea06e;
    border-color: #0ea06e;
}

.project-cta .btn-outline {
    border-color: white;
    color: white;
}

.project-cta .btn-outline:hover {
    background-color: white;
    color: var(--primary);
}

/* Project Sections Common Styles */
.project-section {
    padding: 100px 0;
}

.project-section:nth-child(even) {
    background-color: #f9fafc;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Overview Section */
.overview-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
    align-items: center;
}

.overview-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.stat-card {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
    font-family: 'Space Grotesk', sans-serif;
}

.stat-desc {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.feature-card:hover::before {
    transform: translateY(0);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
}

.feature-card.highlight {
    background-color: #f0f9f4;
    border: 2px solid var(--secondary);
}

.feature-card.highlight::before {
    background: var(--secondary);
}

.highlight-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 30px;
    text-transform: uppercase;
}

/* Chat Highlight Section */
.chat-highlight {
    background-color: #f3f6fb;
}

.chat-highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.chat-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.chat-content p {
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark);
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: var(--secondary);
    margin-right: 15px;
    font-size: 1.1rem;
}

.chat-image {
    position: relative;
}

.chat-mockup {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.chat-mockup:hover {
    transform: scale(1.03);
}

/* Screenshots Slider */
.slider-container {
    position: relative;
    margin-top: 40px;
    padding: 20px 0;
}

.slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding: 20px 0;
    scrollbar-width: none; /* Firefox */
}

.slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.slide {
    flex: 0 0 calc(80% - 20px);
    scroll-snap-align: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.slide:hover {
    transform: translateY(-10px);
}

.slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    font-size: 0.9rem;
    text-align: center;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: var(--primary);
    color: white;
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary);
}

/* Feature Detail Section */
.feature-detail {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    padding: 40px 0;
    border-bottom: 1px solid #eaeaea;
}

.feature-detail:last-child {
    border-bottom: none;
}

.feature-detail-icon {
    font-size: 2.5rem;
    color: var(--primary);
    padding-top: 10px;
}

.feature-detail-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-detail-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--dark);
}

.feature-detail-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    list-style: none;
}

.feature-detail-list li {
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
}

.feature-detail-list li::before {
    content: "•";
    color: var(--primary);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* Case Studies */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.case-card {
    background-color: white;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.case-company {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.case-quote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
    padding-left: 25px;
    color: var(--dark);
}

.case-quote::before {
    content: "";
    font-size: 4rem;
    position: absolute;
    left: -15px;
    top: -30px;
    color: rgba(74, 119, 194, 0.1);
    font-family: serif;
}

.case-person {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.case-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.case-name {
    font-weight: 600;
    margin-bottom: 3px;
}

.case-position {
    font-size: 0.85rem;
    color: var(--gray);
}

.case-results {
    background-color: #f3f6fb;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    justify-content: space-around;
}

.case-result {
    display: flex;
    align-items: center;
    font-weight: 600;
}

.case-result i {
    margin-right: 5px;
    color: var(--secondary);
}

/* Contact/Demo Form */
.contact {
    background-color: #f9fafc;
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    margin-top: 15px;
    color: var(--gray);
}

.demo-options {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.demo-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.demo-option i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

/* Related Projects */
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .overview-grid,
    .chat-highlight-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .chat-content {
        order: 1;
    }
    
    .chat-image {
        order: 0;
    }
    
    .feature-detail {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-detail-icon {
        font-size: 2rem;
        padding-top: 0;
    }
    
    .project-hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .slide {
        flex: 0 0 calc(100% - 20px);
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }
    
    .slider-arrow.prev {
        left: 10px;
    }
    
    .slider-arrow.next {
        right: 10px;
    }
    
    .demo-options {
        flex-direction: column;
        gap: 20px;
    }
    
    .demo-option {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }
    
    .demo-option i {
        margin-bottom: 0;
    }
    
    .project-hero h1 {
        font-size: 2.2rem;
    }
    
    .project-tagline {
        font-size: 1.1rem;
    }
    
    .feature-detail-list {
        grid-template-columns: 1fr;
    }
}

/* Adicionais para o projeto DISC */

/* Seção de benefícios */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.benefit-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Demo includes */
.demo-includes {
    margin-top: 30px;
    background-color: #f3f6fb;
    padding: 25px;
    border-radius: 10px;
}

.demo-includes h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--dark);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}