/*
 Theme Name:   Astra child
 Theme URI:    http://example.com/astra/
 Description:  Astra Theme
 Author:       John Doe
 Author URI:   http://example.com
 Template:     astra
 Version:      4.8.10
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
 Text Domain:  astra-child
*/

/* =Aquí empieza la personalización de tu tema
-------------------------------------------------------------- */
/* --- Estilo para formulario de farmacovigilancia --- */
.wpcf7 .wpcf7-form-control {
    border: 2px solid #85AADA !important;
    border-radius: 5px;
}

/* --- Efecto popup en botones --- */
.popup-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.popup-buttons button {
    padding: 10px 20px;
}

/* --- Zoom en imágenes --- */
.zoom-img {
    transition: transform 0.3s ease;
}

.zoom-img:hover {
    transform: scale(1.1);
}

/* --- Customización de contenedor --- */
.custom-full-width {
    width: 100vw;
    height: auto;
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* --- Zoom solo en texto --- */
.zoom-text {
    transition: transform 0.5s ease !important;
}

.zoom-text:hover {
    transform: scale(1.2) !important;
}