:root {
    --primary-yellow: #FFD700;
    --primary-blue: #003399;
    --accent-red: #EC1C24;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --rainbow-gradient: linear-gradient(90deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #8b00ff);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: var(--primary-yellow);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    color: var(--text-dark);
}

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #ffe135 0%, #ffcc00 100%);
    z-index: -1;
    animation: gradientShift 10s ease infinite alternate;
}

@keyframes gradientShift {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.1); opacity: 1; }
}

/* Floating Blobs */
.blobs {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    top: 0;
    left: 0;
}

.blob {
    position: absolute;
    width: 300px;
    height: 300px;
    filter: blur(80px);
    opacity: 0.4;
    border-radius: 50%;
    animation: blobMove 15s infinite alternate ease-in-out;
}

.blob-1 {
    background: #ff0000;
    top: -100px;
    left: -100px;
    animation-duration: 25s;
}

.blob-2 {
    background: #003399;
    bottom: -150px;
    right: -100px;
    animation-duration: 30s;
    animation-delay: -5s;
}

.blob-3 {
    background: #00ff00;
    top: 50%;
    right: -150px;
    animation-duration: 20s;
    animation-delay: -10s;
}

@keyframes blobMove {
    0% { transform: translate(0, 0) scale(1.1); }
    50% { transform: translate(50px, 100px) scale(0.9); }
    100% { transform: translate(-50px, -50px) scale(1.1); }
}

.container {
    width: 90%;
    max-width: 600px;
    perspective: 1000px;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
    animation: cardEntry 0.8s ease-out forwards;
}

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

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

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

header {
    margin-bottom: 30px;
}

.logo-container {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.rainbow-stripe {
    width: 100px;
    height: 8px;
    background: var(--rainbow-gradient);
    border-radius: 4px;
    margin-bottom: 10px;
    animation: rainbowPulse 3s infinite alternate;
}

@keyframes rainbowPulse {
    from { opacity: 0.7; transform: scaleX(0.9); }
    to { opacity: 1; transform: scaleX(1.1); }
}

h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    letter-spacing: -1px;
}

h1 span {
    color: var(--accent-red);
}

.subtitle {
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--text-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.status-badge {
    background: var(--primary-blue);
    color: white;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 900;
    margin-bottom: 20px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    background: var(--rainbow-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    animation: shimmer 5s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
}

.contact-info {
    text-align: left;
    background: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.info-item h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #888;
}

.info-item p {
    font-weight: 700;
}

.map-container {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-container iframe {
    display: block;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    background: #1eb956;
}

@media (max-width: 480px) {
    .glass-card {
        padding: 25px;
    }
    h1 {
        font-size: 1.8rem;
    }
    h2 {
        font-size: 1.4rem;
    }
}
