/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --secondary-color: #f97316;
    --accent-color: #0ea5e9;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    --gradient-text: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-orange: linear-gradient(135deg, var(--secondary-color) 0%, #ea580c 100%);
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.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;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo .logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 0;
    background: none;
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-banner-full {
    position: relative;
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    overflow: hidden;
}

.full-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(30, 64, 175, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 80px;
    z-index: 10;
}

.overlay-content-right {
    max-width: 600px;
    text-align: right;
    color: var(--text-white);
}

.overlay-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.highlight-text {
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.overlay-description {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    opacity: 0.95;
}

.btn-primary-overlay {
    background: var(--primary-color);
    color: var(--text-white);
    border: 2px solid var(--primary-color);
    font-weight: 700;
    padding: 15px 30px;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
}

.btn-primary-overlay:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(30, 64, 175, 0.6);
}

.btn-secondary-overlay {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
    font-weight: 700;
    padding: 15px 30px;
    font-size: 1.1rem;
}

.btn-secondary-overlay:hover {
    background: var(--text-white);
    color: var(--primary-color);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes float-orbit {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    50% { 
        transform: translateY(-15px) scale(1.1);
        box-shadow: 0 15px 35px rgba(30, 64, 175, 0.25);
    }
}

@keyframes pulse-expand {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@keyframes main-float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
    }
    50% { 
        transform: translateY(-10px) rotate(5deg);
    }
}

@keyframes bounce-icon {
    0%, 100% { 
        transform: scale(1.2) rotate(10deg);
    }
    50% { 
        transform: scale(1.4) rotate(-5deg);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateY(30px);
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.15);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
}

.service-card:hover h3 {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.service-card h3 {
    transition: all 0.3s ease;
}

.service-card p {
    transition: all 0.3s ease;
}

.service-card:hover p {
    color: var(--text-dark);
}

.service-icon {
    margin: 0 auto 1.5rem;
    display: flex;
    justify-content: center;
}

.service-icon i {
    font-size: 4rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
    cursor: pointer;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.service-icon:hover i {
    transform: scale(1.2) rotate(10deg);
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(4px 4px 8px rgba(0,0,0,0.2));
    animation: bounce-icon 0.6s ease;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Plans Section */
.plans {
    padding: 80px 0;
    background: var(--bg-light);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.plan-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    min-height: auto;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.plan-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
    box-shadow: 0 0 0 2px rgba(30, 64, 175, 0.1), var(--shadow-lg);
}

.plan-card.premium {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
    box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.1);
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.plan-badge.premium {
    background: var(--gradient-orange);
}

.plan-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.plan-name {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 1.25rem;
    color: var(--text-light);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.period {
    font-size: 1rem;
    color: var(--text-light);
}

.plan-features {
    margin-bottom: 1.5rem;
    text-align: left;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-check {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-check:hover {
    background: #e0f2fe;
    transform: translateX(5px);
}

.feature-check i {
    color: var(--accent-color);
    font-size: 0.875rem;
    min-width: 16px;
}

.feature-text {
    flex: 1;
    font-size: 0.875rem;
    color: var(--text-dark);
    font-weight: 500;
}

.feature-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.plan-ideal, .plan-business {
    background: rgba(255, 247, 237, 0.8);
    border: 1px solid rgba(254, 215, 170, 0.5);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0.8rem;
    text-align: left;
    transition: all 0.2s ease;
}

.plan-ideal:hover, .plan-business:hover {
    background: rgba(255, 244, 229, 0.9);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.08);
    transform: translateX(2px);
}

.plan-ideal h5, .plan-business h5 {
    color: #ea580c;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
}

.plan-ideal p, .plan-business p {
    color: #c2410c;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Estilos minimalistas para tarjetas destacadas */
.plan-card .plan-ideal,
.plan-card .plan-business {
    background: rgba(255, 247, 237, 0.8);
    border: 1px solid rgba(254, 215, 170, 0.5);
    padding: 1rem;
    border-radius: 8px;
    margin: 0.8rem 0;
    transition: all 0.2s ease;
}

.plan-card .plan-ideal:hover,
.plan-card .plan-business:hover {
    background: rgba(255, 244, 229, 0.9);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.08);
    transform: translateX(2px);
}

.plan-card .plan-ideal h5,
.plan-card .plan-business h5 {
    color: #ea580c;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
}

.plan-card .plan-ideal p,
.plan-card .plan-business p {
    color: #c2410c;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Colores de fondo suaves para cada plan */
.plan-basico {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%) !important;
    border-color: #93c5fd !important;
}

.plan-inicial {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%) !important;
    border-color: #93c5fd !important;
}

.plan-intermedio {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%) !important;
    border-color: #fdba74 !important;
}

.plan-basico:hover {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%) !important;
    border-color: #60a5fa !important;
}

.plan-inicial:hover {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%) !important;
    border-color: #60a5fa !important;
}

.plan-intermedio:hover {
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%) !important;
    border-color: #fb923c !important;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-subtitle {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.feature h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.feature p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-graphic {
    width: 250px;
    height: 250px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transform: rotate(15deg);
}

.about-graphic i {
    font-size: 4rem;
    color: var(--text-white);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: var(--gradient);
    color: var(--text-white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: var(--text-white);
    color: var(--primary-color);
}

.cta .btn-secondary {
    border-color: var(--text-white);
    color: var(--text-white);
}

.cta .btn-secondary:hover {
    background: var(--text-white);
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.25rem;
}

.contact-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-light);
}

.contact-form {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="fade" cx="50%" cy="0%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(255,255,255,0);stop-opacity:0" /></radialGradient></defs><ellipse cx="50" cy="0" rx="100" ry="20" fill="url(%23fade)" /></svg>') repeat-x;
    opacity: 0.5;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-white);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--text-white);
}

.footer-logo .logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--text-white) 0%, #f1f5f9 100%);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255,255,255,0.2);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ea580c 100%);
    color: var(--text-white);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    border-color: var(--secondary-color);
}

.social-links a i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover i {
    transform: scale(1.2) rotate(15deg);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .hero-container {
        padding: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-banner-full {
        height: 100vh;
    }

    .banner-text-overlay {
        padding: 0 20px;
        justify-content: center;
    }

    .overlay-content-right {
        text-align: center;
        max-width: 100%;
    }

    .overlay-title {
        font-size: 2.5rem;
    }

    .overlay-description {
        font-size: 1.2rem;
    }

    .btn-primary-overlay,
    .btn-secondary-overlay {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-icon i {
        font-size: 3rem;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-card.featured {
        transform: none;
    }

    .feature-check {
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .feature-text {
        font-size: 0.8rem;
    }

    .feature-price {
        font-size: 0.9rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .plan-card {
        padding: 1rem;
    }

    .amount {
        font-size: 2.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .feature-check {
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .feature-check i {
        font-size: 0.75rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float-around {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(90deg);
    }
    50% {
        transform: translateY(-4px) rotate(180deg);
    }
    75% {
        transform: translateY(-12px) rotate(270deg);
    }
}

@keyframes icon-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    40% {
        transform: translate(-50%, -50%) scale(1.1);
    }
    60% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.service-card,
.plan-card,
.contact-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Animaciones específicas por servicio */
.service-card[data-service="meta"]:hover .main-icon {
    animation: icon-bounce 1s ease-in-out;
}

.service-card[data-service="seo"]:hover .main-icon {
    animation: icon-bounce 1s ease-in-out 0.2s;
}

.service-card[data-service="design"]:hover .main-icon {
    animation: icon-bounce 1s ease-in-out 0.4s;
}

.service-card[data-service="social"]:hover .main-icon {
    animation: icon-bounce 1s ease-in-out 0.6s;
}

.service-card[data-service="email"]:hover .main-icon {
    animation: icon-bounce 1s ease-in-out 0.8s;
}

.service-card[data-service="analytics"]:hover .main-icon {
    animation: icon-bounce 1s ease-in-out 1s;
}

/* Smooth scrolling enhancement */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}