/*
Theme Name: Twenty Twenty-Five Child
Theme URI: https://wordpress.org/themes/twentytwentyfive/
Description: Tema hijo de Twenty Twenty-Five.
Author: Tu Nombre
Author URI: https://tusitio.com
Template: twentytwentyfive
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyfive-child
*/

/* Aquí puedes agregar tus estilos personalizados */
body {
    /* Esto es una prueba */
}
.fondo-de-texto-personalizado {
    background-color: #fac300;
    padding: 10px;
    border-radius: 5px;
    color: black;
    display: inline-block;
}
.ficha-producto {
    width: 385px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-family: 'Arial', sans-serif;
    background-color: #fff;
    text-align: center;
    margin: 20px auto;
}

.ficha-producto .titulo-producto {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.ficha-producto .imagen img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.ficha-producto .caracteristicas {
    text-align: left;
    padding-left: 20px;
    margin-bottom: 20px;
    color: #444;
    font-size: 0.95rem;
}

.ficha-producto .caracteristicas li {
    margin-bottom: 6px;
    position: relative;
}

.ficha-producto .btn-precio,
.ficha-producto .btn-info {
    display: inline-block;
    padding: 10px 18px;
    margin: 5px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease;
}

.ficha-producto .btn-precio {
    background-color: #0073aa;
    color: #fff;
}

.ficha-producto .btn-precio:hover {
    background-color: #005f8d;
}

.ficha-producto .btn-info {
    background-color: #555;
    color: #fff;
}

.ficha-producto .btn-info:hover {
    background-color: #333;
}
#popup-descarga {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-contenido {
    background: white;
    padding: 20px;
    border-radius: 5px;
    width: 90%;
    max-width: 500px;
}

.popup-contenido input {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
}
.boton-descarga-guia {
    padding: 10px 20px;
    background-color: #edd600;
    color: black;
    border: none;
    border-radius: 25px;
    cursor: pointer;
}