.claude-vs-chatgpt-presentation {
    max-width: 800px;
    margin: 0 auto;
    background-color: #1a202c;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
}

.presentation-title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
}

.slides-container {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    padding: 20px;
}

.slide-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.slide-icon {
    font-size: 24px;
    margin-right: 10px;
}

.slide h2 {
    font-size: 20px;
    margin: 0;
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.navigation button {
    background-color: #4a5568;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.slide-counter {
    font-size: 16px;
}

/* Cores dos slides */
.purple-indigo { background: linear-gradient(135deg, #9f7aea, #667eea); }
.yellow-orange { background: linear-gradient(135deg, #faf089, #ed8936); }
/* Adicione mais gradientes para os outros slides */