:root {
    --primary-color: #2D3FE0;
    --secondary-color: #1D2B9E;
    --accent-color: #8A2BE2;
    --text-color: #2C3E50;
    --light-bg: #F8FAFF;
    --white: #ffffff;
    --dark: #1A1F3D;
    --gradient: linear-gradient(135deg, #2D3FE0, #1D2B9E);
    --accent-gradient: linear-gradient(135deg, #9370DB, #8A2BE2);
    --box-shadow: 0 20px 40px rgba(45, 63, 224, 0.1);
    --hover-transform: translateY(-5px) scale(1.02);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--light-bg);
}

/* Header y Navegación */
.header {
    position: fixed;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(45, 63, 224, 0.1);
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(45, 63, 224, 0.1);
    padding: 0.3rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    border-radius: 100px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    z-index: -1;
}

.nav-menu a:hover::before {
    opacity: 0.1;
    transform: scale(1);
}

/* Logo mejorado */
.logo {
    padding: 0.5rem 0;
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo a:hover img {
    transform: scale(1.05);
}

/* Botón hamburguesa mejorado */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease;
    background: var(--primary-color);
    border-radius: 3px;
}

/* Botón de contacto en nav */
.nav-menu .contact-btn {
    background: var(--accent-gradient);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 100px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.2);
}

.nav-menu .contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.3);
    color: var(--white);
}

.nav-menu .contact-btn::before {
    display: none;
}

/* Hero Section Mejorado */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    background: url('../assets/images/hero-bg.jpg') center/cover no-repeat;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(45, 63, 224, 0.95),
        rgba(138, 43, 226, 0.90));
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(2px 2px at 40px 60px, #fff 100%, transparent),
        radial-gradient(2px 2px at 20px 50px, #fff 100%, transparent),
        radial-gradient(2px 2px at 30px 100px, #fff 100%, transparent),
        radial-gradient(2px 2px at 40px 60px, #fff 100%, transparent),
        radial-gradient(2px 2px at 110px 90px, #fff 100%, transparent),
        radial-gradient(2px 2px at 190px 150px, #fff 100%, transparent);
    background-size: 200px 200px;
    animation: parallax 60s infinite linear;
    opacity: 0.5;
    z-index: 2;
}

.hero-content {
    max-width: 1200px;
    padding: 2rem;
    position: relative;
    z-index: 3;
    margin-top: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInDown 1s ease forwards;
}

.hero-badge i {
    font-size: 1rem;
    color: var(--accent-color);
}

.hero h1 {
    font-size: 6rem;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-transform: uppercase;
    position: relative;
    animation: fadeInUp 1s ease forwards 0.3s;
}

.gradient-text-wrapper {
    position: relative;
    display: inline-block;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: block;
}

.gradient-text-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s infinite;
    filter: blur(8px);
    opacity: 0.5;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1s ease forwards 0.6s;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease forwards 0.9s;
}

.btn {
    padding: 1.2rem 2.5rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--white);
}

.btn.primary {
    background: var(--accent-gradient);
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.3);
}

.btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.4);
}

.hero-features {
    display: flex;
    gap: 3rem;
    justify-content: center;
    animation: fadeInUp 1s ease forwards 1.2s;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.feature-item i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.feature-item span {
    font-weight: 500;
}

.hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: var(--light-bg);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
    z-index: 2;
}

@keyframes parallax {
    0% { background-position: 0 0; }
    100% { background-position: 100% 100%; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% { opacity: 0.3; transform: translateY(-2px); }
    50% { opacity: 0.6; transform: translateY(2px); }
    100% { opacity: 0.3; transform: translateY(-2px); }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        padding: 0 2rem;
        gap: 1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .feature-item {
        width: fit-content;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Estadísticas - Diseño Renovado */
.stats {
    padding: 8rem 5%;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.03), rgba(147, 112, 219, 0.08));
    clip-path: polygon(0 15%, 100% 0%, 100% 85%, 0% 100%);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stats-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stats-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.stats-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.stats-header p {
    color: var(--text-color);
    font-size: 1.2rem;
    opacity: 0.8;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.stat-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.08);
    border: 1px solid rgba(138, 43, 226, 0.1);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.15);
    border-color: transparent;
}

.stat-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(147, 112, 219, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.stat-icon-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed var(--accent-color);
    opacity: 0.2;
    animation: spin 20s linear infinite;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    transition: all 0.4s ease;
}

.stat-item:hover .stat-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: var(--accent-gradient);
}

.stat-item:hover .stat-icon {
    color: var(--white);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.stat-content p {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.8;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stats-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .stats {
        padding: 6rem 5%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-item {
        padding: 2rem 1.5rem;
    }
    
    .stats-header h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

/* Footer Mejorado */
.footer {
    background: var(--dark);
    padding: 4rem 5% 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info {
    color: var(--white);
}

.footer-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-links h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.social-icon:hover {
    background: var(--accent-gradient);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Servicios Mejorados */
.services {
    padding: 8rem 5%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(147, 112, 219, 0.1));
    position: relative;
}

.services .section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: var(--text-color);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.08);
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.15);
}

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
    background: var(--white);
    position: relative;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -30px;
    right: 2rem;
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.2);
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-content p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
    transform: translateX(5px);
}

/* Animación de entrada suave */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.service-card:nth-child(1) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }
.service-card:nth-child(3) { animation-delay: 0.6s; }
.service-card:nth-child(4) { animation-delay: 0.8s; }

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Testimonios - Diseño Compacto */
.testimonials {
    background: var(--white);
    padding: 6rem 5%;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.03), rgba(147, 112, 219, 0.05));
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
}

.testimonials .section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonials-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--text-color);
    font-size: 1rem;
    opacity: 0.8;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.testimonial-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.08);
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(138, 43, 226, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.testimonial-image {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    object-fit: cover;
    border: 2px solid var(--white);
    box-shadow: 0 3px 10px rgba(138, 43, 226, 0.2);
}

.testimonial-info h3 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0.2rem;
}

.testimonial-info .position {
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: 500;
}

.testimonial-quote {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
}

.rating {
    display: flex;
    gap: 0.2rem;
    margin-top: auto;
}

.rating i {
    color: #FFD700;
    font-size: 0.9rem;
}

@media (max-width: 1200px) {
    .testimonials-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-container {
        grid-template-columns: 1fr;
    }
}

/* Contacto - Nuevo Diseño */
.contact {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(147, 112, 219, 0.1));
    padding: 6rem 5%;
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    background: var(--white);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.1);
}

.contact-info {
    padding-right: 2rem;
    border-right: 1px solid rgba(138, 43, 226, 0.1);
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info p.description {
    color: var(--text-color);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 15px;
    background: rgba(138, 43, 226, 0.05);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
    background: rgba(138, 43, 226, 0.08);
}

.info-item i {
    font-size: 1.2rem;
    color: var(--accent-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.1);
}

.info-item p {
    font-size: 0.9rem;
    color: var(--text-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    opacity: 0.5;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border-radius: 15px;
    border: 2px solid rgba(138, 43, 226, 0.1);
    background: var(--white);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-form textarea {
    min-height: 150px;
    padding: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.1);
    outline: none;
}

.contact-form button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 15px;
    background: var(--accent-gradient);
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.2);
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(138, 43, 226, 0.1);
        padding-bottom: 2rem;
    }
}

/* Animaciones */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes particleFloat {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-50px);
    }
}

/* Efectos hover mejorados */
.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 60px rgba(45, 63, 224, 0.15);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(45, 63, 224, 0.12);
}

/* Estilos del logo actualizados */
.logo {
    padding: 0.5rem 0;
}

.logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo a:hover img {
    transform: scale(1.05);
}

.logo h1 {
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
} 
} 