/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    color: #C8C8C8;
}

/* Buttons */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    font-size: 1rem;
    letter-spacing: 0.025em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #9C46E6 0%, #7C3AED 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(156, 70, 230, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(156, 70, 230, 0.4);
    background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
}

.btn-secondary {
    background: white;
    color: #9C46E6;
    border: 2px solid #9C46E6;
    box-shadow: 0 4px 15px rgba(156, 70, 230, 0.1);
}

.btn-secondary:hover {
    background: #9C46E6;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(156, 70, 230, 0.3);
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.3);
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #000000;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-img {
    height: 40px;
    width: auto;
    margin-right: 0.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    position: relative;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #9C46E6, #7C3AED);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #9C46E6;
    transform: translateY(-1px);
}

.nav-link:hover::after {
    width: 80%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #000000;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background: #ffffff;
    overflow: hidden;
    padding: 1rem 0;
}

.hero::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="%23e2e8f0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    margin-bottom: 1rem;
    color: #000000;
}

.highlight {
    color: #9C46E6;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #000000;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-main-image:hover {
    transform: scale(1.05);
}

/* Posiciones específicas para las tarjetas flotantes */
.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 10%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1.25rem;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(229, 231, 235, 0.3);
    transition: all 0.3s ease;
    z-index: 10;
}

.floating-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.floating-card i {
    color: #9CF400;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.floating-card:hover i {
    transform: scale(1.2);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: #9CF400;
    font-size: 1.5rem;
    text-decoration: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    margin-bottom: 1rem;
    color: #000000;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #000000;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.services-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80') center/cover;
    opacity: 0.05;
    z-index: 0;
}

.services-slider {
    position: relative;
    overflow: hidden;
    margin: 0 -1rem;
}

.services-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
    padding: 0 1rem;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.services-track:active {
    cursor: grabbing;
}

.services-track .service-card {
    width: calc(33.333% - 1.33rem);
    flex-shrink: 0;
    flex-grow: 0;
}

.services-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.services-btn {
    background: white;
    border: 2px solid #C8C8C8;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #C8C8C8;
}

.services-btn:hover {
    border-color: #9CF400;
    color: #9CF400;
    transform: scale(1.05);
}

.services-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.services-dots {
    display: flex;
    gap: 0.5rem;
}

.services-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #C8C8C8;
    cursor: pointer;
    transition: all 0.3s ease;
}

.services-dots .dot.active {
    background: #9CF400;
    transform: scale(1.2);
}

/* Mejoras en las tarjetas de servicios */
.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(229, 231, 235, 0.5);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #9C46E6, #7C3AED);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(156, 70, 230, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #9C46E6 0%, #7C3AED 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(156, 70, 230, 0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(156, 70, 230, 0.4);
}

.service-icon i {
    color: white;
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

.service-title {
    margin-bottom: 1rem;
    color: #000000;
}

.service-description {
    margin-bottom: 1.5rem;
    color: #000000;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #6b7280;
}

.service-features i {
    color: #10b981;
    font-size: 0.875rem;
}

.service-cta {
    display: inline-block;
    color: #9C46E6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-cta:hover {
    color: #9C46E6;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: #f8fafc;
}

.testimonial-single {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Mejoras en el testimonio */
.testimonial-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(229, 231, 235, 0.3);
}

.testimonial-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.stars i {
    color: #fbbf24;
    font-size: 1.25rem;
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: #C8C8C8;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9C46E6 0%, #7C3AED 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(156, 70, 230, 0.3);
}

.testimonial-content:hover .author-avatar {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(156, 70, 230, 0.4);
}

.author-name {
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.25rem;
}

.author-position {
    color: #C8C8C8;
    font-size: 0.875rem;
}

/* Slider styles (commented out for future use) */
/*
.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 0 1rem;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 45px;
    height: 45px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: #9C46E6;
    border-color: #9C46E6;
    color: white;
    transform: translateY(-2px);
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    background: #d1d5db;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #9C46E6;
    transform: scale(1.2);
}
*/



/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #ffffff;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-title {
    margin-bottom: 1rem;
    color: #000000;
}

.contact-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #000000;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: #9C46E6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-item h4 {
    margin-bottom: 0.25rem;
    color: #000000;
}

.contact-item p {
    margin-bottom: 0;
    color: #000000;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: #f3f4f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C8C8C8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #9C46E6;
    color: white;
    transform: translateY(-2px);
}

.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(229, 231, 235, 0.5);
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #000000;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #9CF400;
    box-shadow: 0 0 0 3px rgba(156, 244, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.error-message {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #dc2626;
}

.form-group.error .error-message {
    display: block;
}

/* Contact CTA Container */
.contact-cta-container {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(229, 231, 235, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.whatsapp-cta {
    max-width: 400px;
}

.cta-content h3 {
    color: #000000;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-content p {
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    margin-top: 1.5rem;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.btn-whatsapp i {
    font-size: 1.3rem;
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-logo i {
    color: #9C46E6;
    font-size: 1.8rem;
}

.footer-description {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.footer-social .social-link {
    background: #374151;
    color: #9ca3af;
}

.footer-social .social-link:hover {
    background: #9CF400;
    color: white;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

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

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

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #9CF400;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #9ca3af;
    margin-bottom: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #9CF400;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #9C46E6 0%, #7C3AED 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(156, 70, 230, 0.3);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(156, 70, 230, 0.4);
    background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        align-items: flex-start;
        padding-top: 6rem;
        padding-bottom: 2rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding-top: 2rem;
    }
    
    .hero-title {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    
    .hero-subtitle {
        margin-bottom: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .hero-graphic {
        width: 250px;
        height: 250px;
    }
    
    .hero-main-image {
        border-radius: 12px;
    }
    
    .services-slider {
        overflow: hidden;
    }
    
    .services-track {
        flex-direction: row;
        gap: 0;
        padding: 0;
        cursor: grab;
        touch-action: pan-y pinch-zoom;
    }
    
    .services-track .service-card {
        width: 100%;
        min-width: 100%;
        flex-shrink: 0;
    }
    
    .services-controls {
        display: flex;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding-top: 5rem;
        padding-bottom: 1rem;
    }
    
    .hero-container {
        padding-top: 1rem;
    }
    
    .hero-title {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    .hero-subtitle {
        margin-bottom: 2rem;
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        margin-bottom: 1.5rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .services-slider {
        overflow: hidden;
    }
    
    .services-track {
        flex-direction: row;
        gap: 0;
        padding: 0;
        cursor: grab;
        touch-action: pan-y pinch-zoom;
    }
    
    .services-track .service-card {
        width: 100%;
        min-width: 100%;
        flex-shrink: 0;
    }
    
    .services-controls {
        display: flex;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .testimonial-content {
        padding: 2rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .contact-cta-container {
        padding: 2rem;
    }
    
    .cta-content h3 {
        font-size: 1.3rem;
    }
    
    .btn-whatsapp {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    .hero {
        padding-top: 4rem;
        padding-bottom: 1rem;
    }
    
    .hero-container {
        padding-top: 0.5rem;
    }
    
    .hero-title {
        margin-top: 1rem;
        margin-bottom: 1rem;
        font-size: clamp(1.8rem, 7vw, 2.2rem);
    }
    
    .hero-subtitle {
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }
    
    .hero-buttons {
        margin-bottom: 1rem;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Animaciones de entrada para elementos */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Aplicar animaciones a elementos específicos */
.hero-content {
    animation: fadeInLeft 1s ease-out;
}

.hero-image {
    animation: fadeInRight 1s ease-out 0.3s both;
}

.service-card {
    animation: scaleIn 0.8s ease-out;
}

.testimonial-content {
    animation: fadeInUp 1s ease-out;
}

/* Efectos de hover mejorados para enlaces sociales */
.social-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    color: #9C46E6;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(156, 70, 230, 0.1);
    border: 2px solid transparent;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #9C46E6 0%, #7C3AED 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    color: white;
    box-shadow: 0 8px 25px rgba(156, 70, 230, 0.3);
    border-color: transparent;
}

.social-link:hover::before {
    opacity: 1;
}

/* Efectos de hover para el formulario */
.form-group input:focus,
.form-group textarea:focus {
    border-color: #9C46E6;
    box-shadow: 0 0 0 3px rgba(156, 70, 230, 0.1);
    transform: translateY(-1px);
}

/* Efectos de hover para el botón de WhatsApp */
.btn-whatsapp {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-whatsapp:hover::before {
    left: 100%;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Efectos de scroll suave */
html {
    scroll-behavior: smooth;
}

/* Mejoras en el contraste y legibilidad */
.hero-title {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-title {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Efectos de partículas en el fondo */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(156, 70, 230, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(156, 244, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Mejoras en la responsividad de las animaciones */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
    
    .service-card {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .btn {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        color: #fff;
    }
    
    .service-card {
        border: 2px solid #000;
    }
}

/* Print styles */
@media print {
    .header,
    .hero-scroll,
    .back-to-top {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .services,
    .testimonials,
    .contact {
        padding: 2rem 0;
    }
} 

.contact-info {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(229, 231, 235, 0.3);
    max-width: 600px;
    width: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contact-team-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.contact-card-content {
    padding: 2rem;
}

.whatsapp-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(229, 231, 235, 0.5);
    text-align: center;
}

.whatsapp-section h3 {
    margin-bottom: 1.5rem;
    color: #000000;
    font-size: 2rem;
    font-weight: 600;
} 

/* Responsive para las tarjetas flotantes */
@media (max-width: 768px) {
    .floating-card {
        padding: 1rem;
        font-size: 0.875rem;
    }
    
    .floating-card i {
        font-size: 1.1rem;
    }
    
    .card-1 {
        top: 15%;
        left: 5%;
    }
    
    .card-2 {
        top: 45%;
        right: 5%;
    }
    
    .card-3 {
        bottom: 15%;
        left: 15%;
    }
}

@media (max-width: 480px) {
    .floating-card {
        padding: 0.75rem;
        font-size: 0.8rem;
        gap: 0.5rem;
    }
    
    .floating-card i {
        font-size: 1rem;
    }
    
    .card-1 {
        top: 10%;
        left: 2%;
    }
    
    .card-2 {
        top: 40%;
        right: 2%;
    }
    
    .card-3 {
        bottom: 10%;
        left: 10%;
    }
} 