/* app-baseinet.mx - Estilo Vibrante y Dinámico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', sans-serif;
    line-height: 1.8;
    color: #2d3436;
    background: #fdcb6e;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,107,107,0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(116,185,255,0.3) 0%, transparent 50%);
    min-height: 100vh;
    overflow-x: hidden;
}

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

header {
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    color: white;
    padding: 2rem 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, -20px) rotate(180deg); }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo {
    font-size: 2.2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    letter-spacing: 2px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 600;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

nav a:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

.content {
    background: white;
    padding: 3.5rem;
    margin: 2rem 0;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border: 3px solid #ff6b6b;
    position: relative;
    animation: slideIn 0.8s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #ffe66d, #ff6b6b);
    border-radius: 25px;
    z-index: -1;
    animation: gradient 3s ease infinite;
    background-size: 400% 400%;
}

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

h1 {
    color: white;
    font-size: 3.5rem;
    text-align: center;
    padding: 3rem 0;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    font-weight: 900;
    animation: bounceIn 1s ease;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

h2 {
    color: #ff6b6b;
    font-size: 2.3rem;
    margin: 2.5rem 0 1.2rem;
    border-left: 6px solid #4ecdc4;
    padding-left: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s;
}

h2:hover {
    transform: translateX(10px);
}

.feature-box {
    background: linear-gradient(135deg, #a8e6cf 0%, #dcedc1 100%);
    border: 3px solid #4ecdc4;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.feature-box:hover {
    transform: scale(1.02) rotate(1deg);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
}

footer {
    background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
    color: white;
    text-align: center;
    padding: 2.5rem 20px;
    margin-top: 3rem;
}

.wiggle {
    animation: wiggle 0.5s ease;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}
