<!-- AGREGAR ESTE CSS AL HEAD DE TU PÁGINA -->
<style>
/* ===== MEJORAS VISUALES MODERNAS ===== */

/* Variables CSS para consistencia */
:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Tipografía mejorada */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* Header mejorado con glassmorphism */
.header.isSticky {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

/* Botones modernos */
.bes_button, .bes_button2, .bes_button3, .bes_button4 {
    background: var(--gradient-primary);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.bes_button:hover, .bes_button2:hover, .bes_button3:hover, .bes_button4:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: white;
}

.bes_button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: left 0.3s ease;
    z-index: -1;
}

.bes_button:hover::before {
    left: 0;
}

/* Cards modernas con hover effects */
.singleTeam, .singleBlog, .singleClient, .singleWork {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
    background: white;
}

.singleTeam:hover, .singleBlog:hover, .singleClient:hover, .singleWork:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

/* Efectos de imagen con overlay gradiente */
.singleWork .singleWorkContent {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    border-radius: 15px 15px 0 0;
}

/* Sección About con parallax mejorado */
.about {
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    z-index: 1;
}

.about > * {
    position: relative;
    z-index: 2;
}

/* Badges profesionales mejorados */
.professional-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 8px;
    display: inline-block;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.professional-badge:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

/* Formulario de contacto mejorado */
.contactForm .single_form {
    margin-bottom: 25px;
    position: relative;
}

.contactForm input, .contactForm textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.contactForm input:focus, .contactForm textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.contactForm label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
}

/* Testimoniales con estilo moderno */
.singleTestmn {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--primary-color);
    margin: 20px 0;
    position: relative;
}

.singleTestmn::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.3;
}

/* Footer moderno */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

/* Iconos sociales mejorados */
.socialIcon a {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    margin: 5px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.socialIcon a.fb { background: linear-gradient(135deg, #3b5998, #4c70ba); }
.socialIcon a.tw { background: linear-gradient(135deg, #1da1f2, #0d95e8); }
.socialIcon a.gp { background: linear-gradient(135deg, #0077b5, #0099cc); }
.socialIcon a.dr { background: linear-gradient(135deg, #ea4c89, #f082ac); }
.socialIcon a.be { background: linear-gradient(135deg, #25d366, #128c7e); }

.socialIcon a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-medium);
}

/* Animaciones personalizadas */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Mejoras responsive */
@media (max-width: 768px) {
    .professional-badge {
        font-size: 11px;
        padding: 8px 15px;
        margin: 5px;
    }
    
    .bes_button {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .singleTestmn {
        padding: 20px;
        margin: 15px 0;
    }
}

/* Efectos de loading mejorados */
.preloader {
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    position: relative;
}

.loader::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Sección de servicios con iconos mejorados */
.singleService {
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    background: white;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.singleService:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.serImg {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-light);
}
</style>