﻿/* Plataforma Page Specific Styles - Minimalist Design */

/* Hero Section - Clean Minimalist */
.hero-section {
    background: rgba(13, 40, 24, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 45px;
    margin: 40px 0;
    backdrop-filter: blur(10px);
}

/* Hero Title - Simple Clean */
.hero-title {
    text-align: center;
    color: #9B59B6;
    font-size: 2.4em;
    font-weight: 700;
    margin: 0 0 25px 0;
    line-height: 1.2;
}

/* Promo Text - Subtle Background */
.promo-text {
    background: rgba(255, 215, 0, 0.05);
    border: none;
    color: #e0e0e0;
    font-size: 1.05em;
    padding: 25px;
    margin: 0 0 30px 0;
    line-height: 1.75;
    text-align: left;
    border-radius: 8px;
}

.promo-banner-image {
    width: 100%;
    max-width: 850px;
    height: auto;
    border-radius: 12px;
    margin: 25px 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 25px;
}

.hero-cta .btn {
    font-size: 1.05em;
    padding: 16px 38px;
    border-radius: 8px;
    font-weight: 600;
}

/* Content Sections - Minimalist Cards */
.content-section {
    margin: 65px 0;
}

.content-block {
    background: rgba(13, 40, 24, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 12px;
    padding: 42px;
    margin-bottom: 45px;
    transition: all 0.35s ease;
    display: flex;
    align-items: center;
    gap: 45px;
}

.content-block:hover {
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.15);
    transform: translateY(-2px);
    background: rgba(13, 40, 24, 0.65);
}

.content-block-left {
    flex-direction: row;
}

.content-block-right {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
    min-width: 0;
}

.content-text h2 {
    color: #9B59B6;
    font-size: 1.85em;
    margin-bottom: 22px;
    font-weight: 700;
    line-height: 1.35;
}

.content-text p {
    color: #e5e5e5;
    font-size: 1.05em;
    line-height: 1.85;
    margin-bottom: 28px;
}

.content-text .btn {
    margin-top: 22px;
    padding: 13px 30px;
    border-radius: 8px;
    font-weight: 600;
}

.content-image-wrapper {
    flex-shrink: 0;
    width: 360px;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    display: block;
    transition: opacity 0.3s;
}

.content-image:hover {
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        border-radius: 0;
        margin: 20px 0;
        padding: 32px 20px;
    }
    
    .hero-title {
        font-size: 1.85em;
        margin-bottom: 20px;
    }
    
    .promo-text {
        padding: 20px;
        font-size: 1em;
    }
    
    .content-block {
        flex-direction: column !important;
        padding: 28px 20px;
        border-radius: 0;
        margin-left: 0;
        margin-right: 0;
        gap: 28px;
    }
    
    .content-block-left,
    .content-block-right {
        flex-direction: column !important;
    }
    
    .content-image-wrapper {
        width: 100%;
        max-width: 100%;
    }
    
    .content-image {
        width: 100%;
    }
    
    .content-text {
        width: 100%;
    }
    
    .content-text h2 {
        font-size: 1.55em;
    }
    
    .hero-cta {
        gap: 12px;
    }
    
    .hero-cta .btn {
        font-size: 0.95em;
        padding: 14px 26px;
    }
}
