.elementor-487 .elementor-element.elementor-element-aefa52e{--display:flex;}.elementor-487 .elementor-element.elementor-element-aefa52e .trx_addons_bg_text{z-index:0;}.elementor-487 .elementor-element.elementor-element-aefa52e .trx_addons_bg_text.trx_addons_marquee_wrap:not(.trx_addons_marquee_reverse) .trx_addons_marquee_element{padding-right:50px;}.elementor-487 .elementor-element.elementor-element-aefa52e .trx_addons_bg_text.trx_addons_marquee_wrap.trx_addons_marquee_reverse .trx_addons_marquee_element{padding-left:50px;}/* Start custom CSS for html, class: .elementor-element-952dbbd *//* ============ STYLES MENTIONS LÉGALES ============ */
.legal-notice-container {
    font-family: inherit;
    line-height: 1.6;
}

/* En-tête avec animation mentions légales */
.hero-section {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    padding: 60px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><text y="15" font-size="14" fill="rgba(255,255,255,0.05)">⚖️</text></svg>') repeat;
    opacity: 0.1;
}

/* Particules juridiques qui tombent */
.hero-section::after {
    content: '⚖️';
    position: absolute;
    top: -50px;
    left: 20%;
    font-size: 2rem;
    animation: legalFall 15s linear infinite;
    opacity: 0.2;
}

@keyframes legalFall {
    0% {
        transform: translateY(-50px) rotate(0deg);
        opacity: 0;
        left: 20%;
    }
    25% {
        left: 40%;
        opacity: 0.3;
    }
    50% {
        left: 60%;
        opacity: 0.2;
    }
    75% {
        left: 80%;
        opacity: 0.3;
    }
    100% {
        transform: translateY(calc(100vh + 50px)) rotate(360deg);
        opacity: 0;
        left: 10%;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content .main-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    
    /* Animation d'apparition */
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: titleAppear 1.2s ease-out forwards;
    position: relative;
    overflow: hidden;
}

/* Animations du titre */
@keyframes titleAppear {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
        letter-spacing: 0px;
    }
    60% {
        transform: translateY(-5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        letter-spacing: 2px;
    }
}

/* BANDEROLE LÉGALE SUR LE TITRE */
.hero-content .main-title::after {
    content: 'INFORMATIONS LÉGALES';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 30px;
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8);
    font-size: 0.6rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%) skew(-15deg);
    animation: legalBanner 4s ease-in-out infinite;
    animation-delay: 2s;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 1;
}

@keyframes legalBanner {
    0% { left: -100%; opacity: 0; }
    20% { left: -10%; opacity: 1; }
    80% { left: 110%; opacity: 1; }
    100% { left: 200%; opacity: 0; }
}

.hero-content .main-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: titleSweep 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes titleSweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Section contenu */
.legal-content-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Blocs légaux */
.legal-block {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    
    /* Animation d'entrée */
    opacity: 0;
    transform: translateY(20px);
    animation: blockSlideIn 0.8s ease-out forwards;
}

.legal-block:nth-child(1) { animation-delay: 0.2s; }
.legal-block:nth-child(2) { animation-delay: 0.4s; }
.legal-block:nth-child(3) { animation-delay: 0.6s; }
.legal-block:nth-child(4) { animation-delay: 0.8s; }
.legal-block:nth-child(5) { animation-delay: 1.0s; }
.legal-block:nth-child(6) { animation-delay: 1.2s; }
.legal-block:nth-child(7) { animation-delay: 1.4s; }
.legal-block:nth-child(8) { animation-delay: 1.6s; }
.legal-block:nth-child(9) { animation-delay: 1.8s; }
.legal-block:nth-child(10) { animation-delay: 2.0s; }
.legal-block:nth-child(11) { animation-delay: 2.2s; }

@keyframes blockSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.legal-block:hover {
    transform: translateY(-8px);
    border-color: #2c3e50;
    box-shadow: 0 12px 25px rgba(44, 62, 80, 0.15);
}

.legal-block:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c3e50, #34495e);
    border-radius: 12px 12px 0 0;
    animation: barSlide 0.5s ease-out;
}

@keyframes barSlide {
    from { width: 0; }
    to { width: 100%; }
}

/* Titres des blocs */
.legal-title {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ecf0f1;
}

/* Contenu des blocs */
.legal-info {
    margin: 0;
    padding: 0;
}

.legal-info p {
    color: #34495e;
    margin: 15px 0;
    font-size: 1rem;
    line-height: 1.7;
}

.legal-info a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.legal-info a:hover {
    color: #3498db;
    border-bottom-color: #3498db;
}

.legal-info strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Bloc contact spécial */
.contact-block {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    border-color: #2c3e50;
    position: relative;
    color: white;
}

.contact-block .legal-title {
    color: white;
    border-bottom-color: rgba(255,255,255,0.3);
}

.contact-block .legal-info {
    color: white;
}

.contact-block .legal-info p {
    color: rgba(255,255,255,0.9);
}

.contact-block .legal-info a {
    color: #3498db;
}

.contact-block .legal-info a:hover {
    color: #5dade2;
}

.contact-block::after {
    content: '⚖️';
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    opacity: 0.1;
    animation: legalRotate 10s linear infinite;
}

@keyframes legalRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Contact info dans le bloc contact */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    position: relative;
}

.contact-item:hover {
    border-color: #3498db;
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.2);
    background: rgba(255,255,255,0.15);
}

.contact-item::before {
    content: '⚖️';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.contact-item:hover::before {
    opacity: 0.4;
    transform: translateY(-50%) scale(1);
    right: 15px;
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 35px;
    text-align: center;
}

.contact-item span:last-child {
    color: white;
    font-weight: 500;
    font-size: 1rem;
}

.contact-item:hover span:last-child {
    color: #3498db;
}

/* Icônes spécifiques pour chaque type de bloc */
.legal-block[data-legal-type="company"]::after {
    content: '🏢';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.2rem;
    opacity: 0.1;
    animation: fadeIn 2s ease-in-out;
}

.legal-block[data-legal-type="hosting"]::after {
    content: '🖥️';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.2rem;
    opacity: 0.1;
    animation: fadeIn 2s ease-in-out;
}

.legal-block[data-legal-type="privacy"]::after {
    content: '🔒';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.2rem;
    opacity: 0.1;
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 0.1; }
}

/* Footer */
.footer-info {
    background: #2c3e50;
    padding: 25px 0;
    color: white;
    text-align: center;
}

.last-update {
    color: #bdc3c7;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content .main-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-section::after {
        display: none;
    }
    
    .hero-content .main-title::after {
        display: none; /* Pas de banderole sur mobile */
    }
    
    .legal-content-section {
        padding: 40px 0;
    }
    
    .legal-block {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .legal-title {
        font-size: 1.2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .contact-info {
        gap: 12px;
    }
    
    .contact-item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-item:hover {
        transform: translateY(-5px);
    }
    
    .contact-item::before {
        display: none;
    }
    
    .contact-block::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-content .main-title {
        font-size: 1.5rem;
    }
    
    .legal-title {
        font-size: 1.1rem;
    }
    
    .legal-info p {
        font-size: 0.95rem;
    }
    
    .contact-item {
        padding: 12px;
    }
}

/* États focus pour l'accessibilité */
.contact-item:focus-within {
    outline: 3px solid rgba(52, 152, 219, 0.5);
    outline-offset: 2px;
}

.legal-info a:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
    border-radius: 3px;
}/* End custom CSS */