/* Vantae - Estilos Compartidos */

:root {
    --brand-color: #ff7000;
    --brand-light: #ffe8d1;
    --brand-dark: #e66500;
}

*::selection {
    background-color: black;
    color: var(--brand-light);
}

section {
    scroll-margin: 50px;
}

/* Animated Gradient Background */
.animated-gradient {
    background: linear-gradient(-45deg, #fef7f0, #f0fdf4, #fef2f2, #fdf2f8, #f0f9ff, #fef7f0);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.bg-gradient-colors {
    background-size: cover;
    background-position: center;
    background-size: 100% 100%;
background-position: 0px 0px,0px 0px,0px 0px;
background-image: 
linear-gradient(175deg, white 40%, rgba(0, 0, 0, 0)),radial-gradient(100% 150% at 120% 118%, #FF7F14F5 35%, #073AFF00 100%),radial-gradient(74% 86% at 21% 22%, #2B8817F5 24%, #073AFF00 100%),linear-gradient(125deg, #4EB5FFFF 1%, #EB00FCFF 100%);
}
.bg-gradient-colors-2 {
    background-size: cover;
    background-position: center;
    background-size: 100% 100%;
background-position: 0px 0px,0px 0px,0px 0px;
background-image: 
radial-gradient(100% 150% at 120% 118%, #FF7F14F5 35%, #073AFF00 100%),radial-gradient(74% 86% at 21% 22%, #2B8817F5 24%, #073AFF00 100%),linear-gradient(125deg, #4EB5FFFF 1%, #EB00FCFF 100%);
}
.bg-gradient-colors-3 {
    background-size: cover;
    background-position: center;
    background-size: 100% 100%;
background-position: 0px 0px,0px 0px,0px 0px;
background-image: 
linear-gradient(to bottom, white 50%, rgba(0, 0, 0, 0)),radial-gradient(100% 150% at 120% 118%, #FF7F14F5 35%, #073AFF00 100%),radial-gradient(74% 86% at 21% 22%, #2B8817F5 24%, #073AFF00 100%),linear-gradient(125deg, #4EB5FFFF 1%, #EB00FCFF 100%);
}

/* Floating elements for extra visual interest */
.animated-gradient::before,
.animated-gradient::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 112, 0, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.animated-gradient::before {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.animated-gradient::after {
    bottom: 10%;
    left: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) scale(1.1);
        opacity: 0.6;
    }
}

/* Dropdown Styles */
.dropdown:hover .dropdown-menu,
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover #clientesDropdown .bi-chevron-down,
.dropdown-menu.show ~ #clientesDropdown .bi-chevron-down {
    transform: rotate(180deg);
}

/* Mobile Menu Styles */
.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background-color: #334155;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.hamburger-icon.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-icon.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-icon.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu.show {
    opacity: 1;
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.5);
}

.mobile-menu.show .mobile-menu-content {
    transform: translateY(0);
}

.mobile-menu-content {
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    overflow-x: hidden;
}

.mobile-menu-item {
    color: #334155;
    text-decoration: none;
}

.mobile-menu-item:hover {
    color: #ff7000;
}

.mobile-menu-subitem {
    color: #64748b;
}

.mobile-menu-subitem:hover {
    color: #ff7000;
} 