/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

/* CSS LISTADO SINGLE POST EXPERENCIES */

.listado-caracteristicas-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: 'Figtree', sans-serif;
}

/* Alineación horizontal total */
.bloque-texto-inline {
    display: flex;
    align-items: center; /* Alinea el icono verticalmente con el texto */
    gap: 8px;           /* Espacio entre elementos */
    flex-wrap: wrap;
}

/* El Icono de Google */
.icono-check {
    font-size: 22px !important; /* Tamaño del icono */
    color: #2D3E40;             /* Color similar a tu imagen */
    flex-shrink: 0;
    user-select: none;
}

/* Textos */
.txt-nombre, .txt-desc {
    display: inline;
    margin: 0 !important;
    line-height: 1.2;
}

.txt-nombre {
    font-weight: 700;
    font-size: 20px;
    color: #333;
}

/* Añadimos dos puntos después del nombre si hay descripción, parecido a tu captura */
.txt-nombre::after {
    content: ":";
    margin-right: 4px;
}

.txt-desc {
    font-weight: 400;
    font-size: 20px;
    color: #555;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .txt-nombre, .txt-desc { font-size: 18px; }
    .icono-check { font-size: 20px !important; }
}

@media (max-width: 767px) {
    .txt-nombre, .txt-desc { font-size: 16px; }
    .icono-check { font-size: 18px !important; }
}

/* FIN CSS LISTADO SINGLE POST EXPERENCIES */

/* CARDS EXPERIENCE DETAILS */

.img-exp-individual {
    width: 100%;
    height: 500px !important;
    display: block;
    border-radius: 15px !important; /* Ajusta según tu diseño */
    object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
	.img-exp-individual {
		height: 300px !important;
	}
}

@media (max-width: 767px) {
    .img-exp-individual {
		height: 300px !important;
	}
}

/* FIN CARDS EXPERIENCE DETAILS */


/* 1. RESET GENERAL (Para toda la web) */
body .button-book-now {
    display: none !important;
}

body .button-start-planning {
    display: inline-block !important;
}

/* 2. EXCEPCIÓN: PÁGINA DE LISTADO Y SINGLE POSTS */
/* Usamos el selector de body para darle más fuerza al código */

body.page-id-35 .button-book-now,
body.single-experiencias .button-book-now {
    display: inline-block !important;
}

body.page-id-35 .button-start-planning,
body.single-experiencias .button-start-planning {
    display: none !important;
}
