/*======================================
Theme Name: Free Divi Child Theme By Pee-Aye Creative
Theme URI: https://www.peeayecreative.com/
Description: This is a free Divi child theme from Pee-Aye Creative!
Author: Nelson Lee Miller (aka The Divi Teacher)
Author URI: https://www.peeayecreative.com/
Author Email: nelson@peeayecreative.com
Template: Divi
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
======================================*/

 /* ===== NOTES ==================================================================
 * 
 * New to Divi? Take our full Divi course: https://www.peeayecreative.com/product/beyond-the-builder-the-ultimate-divi-website-course/
 * 
 * Learn cool tricks and features with our Divi tutorials: https://www.peeayecreative.com/blog/
 * 
 * Discover our premium Divi products: https://www.peeayecreative.com/shop/
 * 
 * =============================================================================== */

/*add your custom CSS below this line*/

.et_pb_blurb_container h4,
.et_pb_blurb_container h4 span {
  color: #ffffff; /* Blanc pur per als títols */
}

.et_pb_blurb_description p,
.et_pb_blurb_description span {
  color: #bfbfbf; /* Gris molt clar per al text normal */
}

/* pel footer dels idiomes*/
.footer-columns {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch; /* fa que totes les columnes tinguin la mateixa alçada */
}

.col-80 {
  flex: 0 0 80%;
  max-width: 80%;
}

.col-20 {
  flex: 0 0 20%;
  max-width: 20%;
  display: flex;
  align-items: center; /* centra verticalment */
  justify-content: center; /* opcional: centra horitzontalment */
}

/* Assegura que el contingut intern ocupa tota l’alçada */
.col-20 .et_pb_code_inner {
  width: 100%;
}


@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
  }

  .col-80, .col-20 {
    max-width: 100%;
    flex: 0 0 100%;
    display: block;
  }
}

