/* CSS Variação 3 - Estilo Comunidade e Formação */

/* Cores principais - tons acolhedores e educativos */
:root {
    --primary-color: #2d7d32;
    /* Verde educativo */
    --secondary-color: #388e3c;
    /* Verde médio */
    --accent-color: #66bb6a;
    /* Verde claro acolhedor */
    --warm-orange: #ff8f00;
    /* Laranja motivacional */
    --text-dark: #1b5e20;
    --text-light: #4caf50;
    --background-warm: #f1f8e9;
    --border-soft: #c8e6c9;
}

/* Elementos de destaque com tons educativos */
.meilleurpari-trnading-area h2:after {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--warm-orange));
    height: 4px;
    border-radius: 2px;
}

.meilleurpari-banner-text a,
.product-section-area a,
.meilleurpari-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;
}

.meilleurpari-banner-text a:hover,
.product-section-area a:hover,
.meilleurpari-send-free:hover {
    background: linear-gradient(135deg, var(--warm-orange), #ff6f00);
    border-color: var(--warm-orange);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 143, 0, 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(102, 187, 106, 0.1);
    border-radius: 20px;
    padding: 8px 16px;
}

/* Tipografia acolhedora e educativa */
body {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.8;
    letter-spacing: 0.2px;
}

.meilleurpari-welcome-text h2,
.meilleurpari-inner-details-section h2,
.meilleurpari-trnading-area h2 {
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: -0.3px;
    text-shadow: 0 2px 4px rgba(45, 125, 50, 0.1);
}

/* Cards de formação com design acolhedor */
.product-section-area {
    background: linear-gradient(145deg, #ffffff, var(--background-warm));
    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(45, 125, 50, 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(45, 125, 50, 0.2);
    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(102, 187, 106, 0.15),
            transparent);
    transition: left 0.8s ease;
}

.product-section-area:hover::after {
    left: 100%;
}

/* Header com espírito comunidade */
#menu1 {
    background: linear-gradient(135deg,
            rgba(45, 125, 50, 0.95),
            rgba(56, 142, 60, 0.9));
    backdrop-filter: blur(15px);
    border-bottom: 3px solid var(--accent-color);
}

.meilleurpari-logo a {
    font-weight: 700;
    letter-spacing: -0.8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

.meilleurpari-logo a::after {
    margin-left: 8px;
    font-size: 0.8em;
}

/* Seções com espírito educativo */
.meilleurpari-welcome-area {
    position: relative;
    border-radius: 0;
    overflow: hidden;
}

.meilleurpari-welcome-area:nth-child(even) {
    background: var(--background-warm);
}

.meilleurpari-welcome-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--warm-orange), var(--accent-color), var(--primary-color));
}

/* Formulários de contacto educativos */
.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-warm);
    box-shadow: 0 0 0 4px rgba(102, 187, 106, 0.15);
    transform: scale(1.02);
}

/* Labels com tom educativo */
label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 8px;
    position: relative;
}

label::before {
    content: '▸';
    margin-right: 5px;
    color: var(--warm-orange);
}

/* Footer comunidade */
footer {
    background: linear-gradient(135deg, var(--primary-color), #1b5e20);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--warm-orange), var(--accent-color));
}

.meilleurpari-footer-logo {
    padding: 40px 0;
}

.meilleurpari-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);
}

.meilleurpari-footer-logo img:hover {
    transform: scale(1.15) translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(255, 143, 0, 0.3);
}

/* Listas educativas */
.meilleurpari-welcome-text ol li,
.meilleurpari-inner-details-section li {
    margin-bottom: 12px;
    padding-left: 15px;
    position: relative;
}

.meilleurpari-welcome-text ol li::marker {
    content: '🏆 ';
    font-size: 1.2em;
}

/* Elementos de motivação */
.meilleurpari-welcome-text h2::after {
    content: '💡';
    margin-left: 10px;
    font-size: 0.8em;
    opacity: 0.7;
}

/* Botões com energia positiva */
.meilleurpari-banner-text a::before,
.product-section-area a::before {
    content: '🚀';
    margin-right: 8px;
    transition: all 0.3s ease;
}

.meilleurpari-banner-text a:hover::before,
.product-section-area a:hover::before {
    transform: scale(1.2) rotate(15deg);
}

/* Estrelas com estilo especial */
.star-area {
    position: relative;
    background: rgba(102, 187, 106, 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-orange), var(--accent-color));
    border-radius: 2px;
}

/* Animations de motivation */
@keyframes success {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.product-section-area:hover {
    animation: success 0.6s ease-in-out;
}

/* Design responsivo acolhedor */
@media (max-width: 768px) {
    .product-section-area {
        margin-bottom: 30px;
        border-radius: 15px;
    }

    .meilleurpari-welcome-text h2,
    .meilleurpari-inner-details-section h2 {
        font-size: 24px;
        line-height: 1.4;
    }

    .form-control {
        padding: 14px 16px;
        font-size: 14px;
    }
}

/* Headers estilo apprendre */
.meilleurpari-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;
}

.meilleurpari-inner-details-section h1::before {
    content: '📖';
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

/* Textos com tom educativo */
.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 effects motivacionais */
.meilleurpari-welcome-area img:hover {
    transform: scale(1.05) rotate(2deg);
    filter: brightness(1.1) saturate(1.2);
    box-shadow: 0 15px 40px rgba(45, 125, 50, 0.2);
}