/*
Theme Name: Psychare Child
Theme URI: http://slashcreative.co
Author: SlashCreative 
Template: psychare
Author URI: https://themeforest.net/user/slashcreative
Description: A premium niche theme designed for businesses operating in the house cleaning and any other services related to the cleaning industry.
License: Themeforest Split Licence
License URI: - 
Text Domain: psychare
Version: 2.0.0
Domain Path: /languages
*/ 

/* Style pour le dégradé bleu */
.bloc-degrade {
    background: linear-gradient(
        90deg,
        #1e293b 0%,    /* Bleu foncé */
        #3b82f6 100%   /* Bleu clair */
    );
    padding: 40px;     /* Ajoutez du padding si nécessaire */
    border-radius: 8px;/* Coins arrondis comme dans l'image */
    color: white;      /* Texte en blanc */
}

/* Pour rendre le dégradé plus doux */
.bloc-degrade-doux {
    background: linear-gradient(
        90deg,
        #1e293b 0%,
        #2563eb 50%,
        #3b82f6 100%
    );
    padding: 40px;
    border-radius: 8px;
    color: white;
}

/* Version avec plus de contraste */
.bloc-degrade-contraste {
    background: linear-gradient(
        90deg,
        #0f172a 0%,
        #1d4ed8 100%
    );
    padding: 40px;
    border-radius: 8px;
    color: white;
}

.bloc-degrade-exact {
    /* Premier layer : le dégradé sombre */
    background: linear-gradient(
        to right,
        rgba(21, 17, 16, 1) 20%,
        rgba(21, 17, 16, 0.81) 35%,
        rgba(21, 17, 16, 0) 100%
    );
    /* Deuxième layer : la couleur de fond bleue */
    background-color: #0885d9 !important;
}

/* Version avec padding et border-radius pour correspondre au style de l'image */
.bloc-degrade-exact-complet {
    background: linear-gradient(
        to right,
        rgba(21, 17, 16, 1) 20%,
        rgba(21, 17, 16, 0.81) 35%,
        rgba(21, 17, 16, 0) 100%
    );
    background-color: #0885d9 !important;
    padding: 40px;
    border-radius: 8px;
    color: white;
}

/* Ciblage spécifique du bloc CTA de WPBakery */
.vc_general.vc_cta3.vc_cta3-style-custom {
    background: linear-gradient(
        to right,
        rgba(21, 17, 16, 1) 20%,
        rgba(21, 17, 16, 0.81) 35%,
        rgba(21, 17, 16, 0) 100%
    ) !important;
    background-color: #0885d9 !important;
}

/* Si vous voulez appliquer le style à tous les blocs CTA */
.vc_cta3-container .vc_general.vc_cta3 {
    background: linear-gradient(
        to right,
        rgba(21, 17, 16, 1) 20%,
        rgba(21, 17, 16, 0.81) 35%,
        rgba(21, 17, 16, 0) 100%
    ) !important;
    background-color: #0885d9 !important;
}