/* Designs Ideais Page Specific Styles */

/* Persona Showcase */
.persona-showcase {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    margin-top: 2rem;
}

.persona-card-mini {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.persona-card-mini .persona-avatar {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.persona-card-mini .persona-info h3 {
    margin: 0;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.persona-card-mini .persona-info p {
    margin: 0.25rem 0;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

.persona-tag {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.persona-description {
    flex: 1;
}

.persona-description p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Bot Flow Section */
.bot-flow-section {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
}

.bot-flow-section h2 {
    text-align: center;
    color: #2C3E50;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.flow-container {
    max-width: 600px;
    margin: 0 auto;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #FF6B35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: #2C3E50;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.whatsapp-message {
    background: #E8F5E8;
    padding: 1rem 1.5rem;
    border-radius: 18px;
    position: relative;
    max-width: 400px;
    margin-bottom: 1rem;
}

.whatsapp-message.user {
    background: #DCF8C6;
    margin-left: auto;
}

.whatsapp-message.bot {
    background: #F0F0F0;
}

.whatsapp-message p {
    margin: 0;
    color: #2C3E50;
    font-size: 0.95rem;
    line-height: 1.4;
}

.generated-preview {
    margin: 1rem 0;
    text-align: center;
}

.generated-preview img {
    max-width: 150px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.processing-info {
    background: #F8F9FA;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #FF6B35;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #2C3E50;
    font-size: 0.9rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    color: #FF6B35;
    width: 16px;
}

.flow-arrow {
    text-align: center;
    margin: 1rem 0;
}

.flow-arrow i {
    color: #FF6B35;
    font-size: 1.5rem;
}

/* Designs Gallery */
.designs-gallery-section {
    margin-bottom: 3rem;
}

.designs-gallery-section h2 {
    color: #2C3E50;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.section-description {
    text-align: center;
    color: #7F8C8D;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.designs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.design-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.design-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.design-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.design-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.design-card:hover .design-image img {
    transform: scale(1.05);
}

.design-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.design-card:hover .design-overlay {
    opacity: 1;
}

.preview-btn, .download-btn {
    background: white;
    color: #2C3E50;
    border: none;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-btn:hover, .download-btn:hover {
    background: #FF6B35;
    color: white;
    transform: scale(1.1);
}

.design-info {
    padding: 1.5rem;
}

.design-info h3 {
    color: #2C3E50;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.design-description {
    color: #7F8C8D;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.design-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.spec-tag {
    background: #ECF0F1;
    color: #2C3E50;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.design-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #7F8C8D;
}

.feature i {
    color: #27AE60;
    font-size: 0.75rem;
}

/* Bot Features Section */
.bot-features-section {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
}

.bot-features-section h2 {
    text-align: center;
    color: #2C3E50;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #F8F9FA;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #FF6B35;
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: #FF6B35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: #2C3E50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #7F8C8D;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-card li {
    color: #7F8C8D;
    font-size: 0.9rem;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.feature-card li:before {
    content: "•";
    color: #FF6B35;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Implementation Section */
.implementation-section {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
}

.implementation-section h2 {
    text-align: center;
    color: #2C3E50;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.implementation-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.implementation-text h3 {
    color: #2C3E50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.implementation-text h4 {
    color: #FF6B35;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem 0;
}

.implementation-text p {
    color: #7F8C8D;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.implementation-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.implementation-text li {
    color: #7F8C8D;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.implementation-text li:before {
    content: "→";
    color: #FF6B35;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.implementation-stats {
    background: #F8F9FA;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #FF6B35;
}

.stat-item {
    text-align: center;
    margin-bottom: 2rem;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #7F8C8D;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Preview Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
}

.close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #FF6B35;
}

/* Responsive Design */
@media (max-width: 768px) {
    .persona-showcase {
        flex-direction: column;
        text-align: center;
    }
    
    .designs-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .implementation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .flow-step {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-message {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .bot-flow-section,
    .bot-features-section,
    .implementation-section {
        padding: 2rem 1rem;
    }
    
    .design-card {
        margin: 0 -1rem;
        border-radius: 0;
    }
    
    .designs-grid {
        gap: 1rem;
    }
}

