/* ===== HERO SECTION ===== */
.psol-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: clamp(40px, 6vh, 0px) 0;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    animation: fadeIn 1s ease-out;
}

.psol-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(0, 45, 85, 0.85) 0%,
        rgba(0, 0, 0, 0.75) 50%,
        rgba(0, 45, 85, 0.85) 100%);
    z-index: 1;
}

.psol-hero .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    width: 100%;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-logo {
    animation: fadeInDown 1s ease;
    margin-bottom: 20px;
}

.hero-logo-img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 15px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-highlight {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    padding: 8px 30px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.95;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.3s both;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-btn-primary {
    background: var(--secondary);
    color: white;
    border: 2px solid var(--secondary);
    padding: 14px 32px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
}

.hero-btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 14px 32px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
}

.hero-btn-secondary:hover {
    background: white;
    color: var(--primary);
    border-color: white;
    transform: translateY(-3px);
}

/* ===== SEÇÃO CANAIS DIGITAIS ===== */
.psol-channels {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--surface) 0%, var(--muted) 100%);
}

.section-title span {
    color: var(--secondary);
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: -20px auto 50px;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.channel-card {
    background: var(--background);
    border-radius: 24px;
    padding: 35px 25px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 25px var(--shadow);
}

.channel-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    box-shadow: 0 20px 40px var(--shadow);
}

.channel-image {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border-radius: 20px;
    border: 2px solid var(--border);
    box-shadow: 0 8px 20px var(--shadow);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.channel-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--secondary-rgb), 0.1) 0%, rgba(var(--primary-rgb), 0.1) 100%);
    z-index: 1;
    pointer-events: none;
    transition: all 0.4s ease;
}

.channel-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 6px var(--shadow));
}

.channel-card:hover .channel-image {
    transform: translateY(-5px) scale(1.05);
    border-color: var(--secondary);
    box-shadow: 0 15px 30px rgba(var(--secondary-rgb), 0.3);
}

.channel-card:hover .channel-image::before {
    background: linear-gradient(135deg, rgba(var(--secondary-rgb), 0.2) 0%, rgba(var(--primary-rgb), 0.2) 100%);
}

.channel-card:hover .channel-image img {
    transform: scale(1.1);
}

.channel-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.channel-card:hover h3 {
    color: var(--secondary);
}

.channel-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.channel-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid var(--border);
}

.channel-link:hover {
    background: var(--secondary);
    color: white;
    gap: 12px;
    border-color: var(--secondary);
}

.channel-link i {
    font-size: 0.85rem;
}

/* ===== SEÇÃO LINHAS DE PRODUTOS ===== */
.psol-products {
    padding: 40px 0;
    background: var(--background);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.product-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 320px;
    cursor: pointer;
    box-shadow: 0 10px 25px var(--shadow);
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 45, 85, 0.8) 100%);
    transition: all 0.3s ease;
}

.product-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    color: white;
    text-align: center;
}

.product-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    background: var(--secondary);
    border-color: white;
    transform: scale(1.1);
}

.product-icon i {
    font-size: 2rem;
    color: white;
}

.card-content h3 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 250px;
}

/* ===== SEÇÃO DIFERENCIAIS ===== */
.psol-differentials {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--surface) 0%, var(--muted) 100%);
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.differential-card {
    text-align: center;
    padding: 35px 25px;
    background: var(--background);
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 25px var(--shadow);
}

.differential-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    box-shadow: 0 20px 40px var(--shadow);
}

.differential-card .card-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.differential-card .card-icon i {
    font-size: 2.5rem;
    color: white;
}

.differential-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.differential-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== SEÇÃO COMO COMPRAR ===== */
.psol-how-to-buy {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--surface) 0%, var(--muted) 100%);
    position: relative;
    overflow: hidden;
}

.psol-how-to-buy::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 95, 172, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 50px 0 40px;
}

.step-card {
    background: var(--background);
    border-radius: 24px;
    padding: 35px 25px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    box-shadow: 0 10px 25px var(--shadow);
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    box-shadow: 0 20px 40px var(--shadow);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    font-weight: 800;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 3px solid var(--surface);
    box-shadow: 0 5px 15px var(--shadow);
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 20px;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.1);
}

.step-icon i {
    font-size: 2.5rem;
    color: white;
}

.step-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.step-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    color: var(--text-light);
    font-size: 0.9rem;
    border-bottom: 1px dashed var(--border);
}

.step-list li:last-child {
    border-bottom: none;
}

.step-list li i {
    color: var(--secondary);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
}

.footer-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 2px;
}

.footer-tagline {
    color: var(--text-light);
    font-size: 1rem;
    text-align: center;
}

/* ===== RESPONSIVIDADE ===== */
@media screen and (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .channels-grid,
    .products-grid,
    .differentials-grid,
    .steps-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .channels-grid,
    .products-grid,
    .differentials-grid,
    .steps-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .numbers-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .product-card {
        height: 300px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .media-grid {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .testimonials-stats {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .stat-badge {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-highlight {
        padding: 6px 20px;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .about-paragraph {
        padding-left: 15px;
        font-size: 1rem;
    }
    
    .number-value {
        font-size: 2rem;
    }
    
    .step-card {
        padding: 30px 20px;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
    }
    
    .step-icon i {
        font-size: 2rem;
    }
    
    .step-card h3 {
        font-size: 1.2rem;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .stat-badge {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}