/* CSS Variação 4 - Estilo Inspirador e Tecnológico */

/* Cores principais - tons futuristas e motivacionais */
:root {
    --primary-color: #1e3a8a;
    /* Azul profundo */
    --secondary-color: #3b82f6;
    /* Azul vibrante */
    --accent-color: #06b6d4;
    /* Ciano neon */
    --warm-purple: #8b5cf6;
    /* Roxo inspirador */
    --text-dark: #111827;
    --text-light: #60a5fa;
    --background-cool: #f0f9ff;
    --border-soft: #dbeafe;
}

/* Elementos de destaque com tons tecnológicos */
.parisportifpro-trnading-area h2:after {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--warm-purple));
    height: 4px;
    border-radius: 2px;
}

.parisportifpro-banner-text a,
.product-section-area a,
.parisportifpro-send-free {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: 2px solid var(--primary-color);
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.parisportifpro-banner-text a:hover,
.product-section-area a:hover,
.parisportifpro-send-free:hover {
    background: linear-gradient(135deg, var(--warm-purple), #7c3aed);
    border-color: var(--warm-purple);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.footer-menu ul li a:hover {
    color: var(--accent-color);
}

ul.menu a:hover,
ul.menu a.current {
    color: var(--accent-color);
    background: rgba(6, 182, 212, 0.1);
    border-radius: 20px;
    padding: 8px 16px;
}

/* Tipografia tecnológica */
body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.8;
    letter-spacing: 0.2px;
}

.parisportifpro-welcome-text h2,
.parisportifpro-inner-details-section h2,
.parisportifpro-trnading-area h2 {
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: -0.3px;
    text-shadow: 0 2px 6px rgba(30, 58, 138, 0.15);
}

/* Cards de formação futuristas */
.product-section-area {
    background: linear-gradient(145deg, #ffffff, var(--background-cool));
    border: 2px solid var(--border-soft);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.12);
}

.product-section-area::before {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    opacity: 0.3;
    transition: all 0.4s ease;
}

.product-section-area:hover::before {
    opacity: 0.8;
    transform: scale(1.2) rotate(10deg);
}

.product-section-area:hover {
    transform: translateY(-12px) rotate(1deg);
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.25);
    border-color: var(--accent-color);
}

.product-section-area::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(6, 182, 212, 0.15),
            transparent);
    transition: left 0.8s ease;
}

.product-section-area:hover::after {
    left: 100%;
}

/* Header com espírito tecnológico */
#menu1 {
    background: linear-gradient(135deg,
            rgba(30, 58, 138, 0.95),
            rgba(59, 130, 246, 0.9));
    backdrop-filter: blur(15px);
    border-bottom: 3px solid var(--accent-color);
}

.parisportifpro-logo a {
    font-weight: 700;
    letter-spacing: -0.8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* Seções com espírito inspirador */
.parisportifpro-welcome-area:nth-child(even) {
    background: var(--background-cool);
}

.parisportifpro-welcome-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--warm-purple), var(--accent-color), var(--primary-color));
}

/* Formulários tecnológicos */
.form-control {
    border: 2px solid var(--border-soft);
    border-radius: 15px;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 500;
    background: #ffffff;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-color);
    background: var(--background-cool);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.15);
    transform: scale(1.02);
}

/* Labels inspiradores */
label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 8px;
    position: relative;
}

label::before {
    margin-right: 5px;
    color: var(--warm-purple);
}

/* Footer tecnológico */
footer {
    background: linear-gradient(135deg, var(--primary-color), #0f172a);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--warm-purple), var(--accent-color));
}

.parisportifpro-footer-logo img {
    filter: brightness(1.2) saturate(1.1);
    transition: all 0.4s ease;
    border-radius: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
}

.parisportifpro-footer-logo img:hover {
    transform: scale(1.15) translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

/* Listas futuristas */
.parisportifpro-welcome-text ol li::marker {

    font-size: 1.2em;
}

/* Elementos de motivação */
.parisportifpro-welcome-text h2::after {

    margin-left: 10px;
    font-size: 0.8em;
    opacity: 0.7;
}

/* Botões com energia futurista */
.parisportifpro-banner-text a::before,
.product-section-area a::before {

    margin-right: 8px;
    transition: all 0.3s ease;
}

.parisportifpro-banner-text a:hover::before,
.product-section-area a:hover::before {
    transform: scale(1.2) rotate(15deg);
}

/* Estrelas inspiradoras */
.star-area {
    background: rgba(6, 182, 212, 0.1);
    border-radius: 15px;
    padding: 15px;
    margin: 20px 0;
}

.star-area::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--warm-purple), var(--accent-color));
    border-radius: 2px;
}

/* Animation inspiradora */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.product-section-area:hover {
    animation: pulse 0.6s ease-in-out;
}

/* Responsivo */
@media (max-width: 768px) {
    .product-section-area {
        margin-bottom: 30px;
        border-radius: 15px;
    }

    .parisportifpro-welcome-text h2,
    .parisportifpro-inner-details-section h2 {
        font-size: 24px;
        line-height: 1.4;
    }

    .form-control {
        padding: 14px 16px;
        font-size: 14px;
    }
}

/* Headers inspiradores */
.parisportifpro-inner-details-section h1 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
    margin-top: 35px;
    margin-bottom: 18px;
    position: relative;
    padding-left: 30px;
}

.parisportifpro-inner-details-section h1::before {

    position: absolute;
    left: 0;
    font-size: 1.2em;
}

/* Textos com tom tecnológico */
.product-section-area p {
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.7;
    font-weight: 500;
    text-align: left;
    padding: 0 10px;
}

/* Hover motivacional em imagens */
.parisportifpro-welcome-area img:hover {
    transform: scale(1.05) rotate(2deg);
    filter: brightness(1.15) saturate(1.3);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.25);
}