/*
Theme Name: Consultor Marca Personal
Theme URI: https://tusitio.com
Author: Tu Nombre
Author URI: https://tusitio.com
Description: Tema para consultoría de marca personal con Bootstrap 3.
Version: 1.0
Text Domain: marca-personal
*/

/* Colores personalizados */
h1, h2, h3, h4, h5, h6, .navbar-default .navbar-nav > li > a:hover {
    color: #df0961 !important;
}

.btn-primary, .btn-primary:hover {
    background-color: #df0961;
    border-color: #d40a5b;
}

body {
    background: #fff;
    padding-top: 70px; /* Ajuste para navbar fija */
}
/* Efecto fade-in al hacer scroll */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Estilos para los botones sociales */
.btn-social {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-social:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Autor */
.author-box {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
}
.blog-post {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.post-thumbnail img {
    transition: transform 0.3s ease;
}

.post-thumbnail:hover img {
    transform: scale(1.02);
}

.entry-title a {
    color: #df0961;
    text-decoration: none;
}

.entry-title a:hover {
    text-decoration: underline;
}

.pagination {
    margin-top: 30px;
}
/* Grid layout for blog posts */
.blog .posts-grid, 
.archive .posts-grid, 
.search .posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 0 -15px;
}

.blog article, 
.archive article, 
.search article {
    margin-bottom: 0;
    padding: 15px;
}

/* Optional: Style for grid items */
.post-grid-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.post-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
/* BOTÓN WHATSAPP - ESTILOS FORZADOS */
body .whatsapp-float {
    position: fixed !important;
    width: 60px !important;
    height: 60px !important;
    bottom: 30px !important;
    right: 30px !important;
    background-color: #25d366 !important;
    border-radius: 50% !important;
    text-align: center !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2) !important;
    z-index: 999999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    visibility: visible !important;
    opacity: 1 !important;
}

body .whatsapp-float a {
    display: flex !important;
    width: 100% !important;
    height: 100% !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
}

body .whatsapp-float svg {
    width: 40px !important;
    height: 40px !important;
    fill: white !important;
}