* {
    font-family: 'Inter', sans-serif;
}
.gradient-text {
    background: linear-gradient(135deg, #cfb2a6 0%, #cc250f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-gradient {
    background: linear-gradient(135deg, #0A1628 0%, #1A2D4A 50%, #0D1F3C 100%);
}
.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
}
.timeline-line {
    background: linear-gradient(180deg, #b17650 0%, #d82607 100%);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.accordion-content.active {
    max-height: 200px;
}
.pulse-glow {
    animation: pulse-glow 2s infinite;
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.4); }
    50% { box-shadow: 0 0 40px rgba(0, 212, 255, 0.8); }
}
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.logo-container {
    transition: transform 0.3s ease, filter 0.3s ease;
}
.logo-container:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}
.mobile-menu {
    display: none;
}
@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }
    .desktop-menu {
        display: none;
    }
}
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #06b6d4 0%, #22c55e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
    z-index: 1000;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.6);
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a2d4a 0%, #0d1f3c 100%);
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
    z-index: 9999;
}
.cookie-banner.visible {
    transform: translateY(0);
}
.whatsapp-float {
    position: fixed;
    bottom: 150px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}
.whatsapp-float svg {
    width: 26px;
    height: 26px;
    fill: white;
}
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 130px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    .whatsapp-float svg {
        width: 22px;
        height: 22px;
    }
}
.instagram-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}
.instagram-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.6);
}
.instagram-float svg {
    width: 26px;
    height: 26px;
    fill: white;
}
@media (max-width: 768px) {
    .instagram-float {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    .instagram-float svg {
        width: 22px;
        height: 22px;
    }
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
