/*
Theme Name: RC PRINT - Soluciones Gráficas
Theme URI: https://rcprint.mx
Author: RC PRINT Team
Author URI: https://rcprint.mx
Description: Tema Oficial de WordPress para RC PRINT | Soluciones gráficas para hacer crecer tu marca. Incluye plantilla original con animaciones Swiper slider, WOW.js, preloader, mouse cursor y paleta oficial gráfica.
Version: 2.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rcprint
Tags: printing, responsive-layout, custom-menu, custom-logo, hostgator-ready, whatsapp-integration

==================================================
|***    RC PRINT Original Visual Aesthetics      ***|
==================================================
*/

:root {
    --rc-red: #E30613;
    --rc-red-hover: #C2040F;
    --rc-dark: #121820;
    --rc-dark-card: #1E2530;
    --rc-gray-bg: #F8F9FA;
    --rc-gray-text: #555555;
    --rc-whatsapp: #25D366;
    --rc-whatsapp-hover: #1EBE57;
    --rc-shadow: 0 10px 30px rgba(0,0,0,0.08);
    --rc-shadow-hover: 0 15px 40px rgba(227,6,19,0.15);
}

body {
    font-family: 'Outfit', 'Inter', sans-serif;
    color: #333333;
    overflow-x: hidden;
}

/* Theme Button Styling Original */
.theme-btn {
    background-color: var(--rc-red) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    padding: 14px 32px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.3) !important;
    transition: all 0.3s ease-in-out !important;
    border: 2px solid var(--rc-red) !important;
    text-transform: uppercase !important;
    font-size: 15px !important;
    letter-spacing: 0.5px !important;
    text-decoration: none !important;
}
.theme-btn:hover {
    background-color: var(--rc-red-hover) !important;
    border-color: var(--rc-red-hover) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(227, 6, 19, 0.4) !important;
    color: #ffffff !important;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: var(--rc-whatsapp);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 0px 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    background-color: var(--rc-whatsapp-hover);
    color: #fff;
    transform: scale(1.12);
}

/* Feature & Trust Badges */
.trust-badge-card, .feature-box-items {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--rc-shadow);
    border-top: 4px solid var(--rc-red);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.trust-badge-card:hover, .feature-box-items:hover {
    transform: translateY(-6px);
    box-shadow: var(--rc-shadow-hover);
}

/* Portfolio Filter Buttons */
.portfolio-filter-btn {
    border: 2px solid #E2E8F0;
    background: #ffffff;
    color: var(--rc-dark);
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 30px;
    margin: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.portfolio-filter-btn.active, .portfolio-filter-btn:hover {
    background: var(--rc-red);
    color: #ffffff;
    border-color: var(--rc-red);
}

/* Card Hover Zoom */
.card-hover-zoom {
    overflow: hidden;
    border-radius: 16px;
}
.card-hover-zoom img {
    transition: transform 0.5s ease;
}
.card-hover-zoom:hover img {
    transform: scale(1.07);
}
