/* style_solucoes.css — Premium custom styles for the Solutions hub page */
/* Complements Tailwind utility classes with animations, custom visuals, and hero effects */

/* ========================= */
/* Hero Mesh Gradient Orbs    */
/* ========================= */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    animation: orbFloat 12s ease-in-out infinite alternate;
}

.hero-orb--green {
    width: 500px;
    height: 500px;
    background: rgba(37, 211, 102, 0.08);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.hero-orb--purple {
    width: 450px;
    height: 450px;
    background: rgba(142, 68, 173, 0.07);
    bottom: -15%;
    left: -10%;
    animation-delay: -4s;
}

.hero-orb--blue {
    width: 300px;
    height: 300px;
    background: rgba(52, 152, 219, 0.05);
    top: 40%;
    left: 50%;
    animation-delay: -8s;
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(30px, -20px) scale(1.08);
    }
}

/* ========================= */
/* Hero Grid Pattern          */
/* ========================= */
.hero-grid {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* ========================= */
/* Hero Gradient Text         */
/* ========================= */
.hero-gradient-text {
    background: linear-gradient(135deg, #25d366 0%, #a855f7 50%, #3b82f6 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

/* ========================= */
/* Fade-In Animations         */
/* ========================= */
.animate-fade-in {
    animation: fadeInUp 0.8s ease-out both;
}

.animate-fade-in-delayed {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.animate-fade-in-delayed-2 {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.animate-fade-in-delayed-3 {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================= */
/* Sites — Browser Mockup     */
/* ========================= */
.sites-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.sites-browser {
    width: 380px;
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.sites-browser-bar {
    display: flex;
    gap: 6px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sites-browser-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.sites-browser-bar span:first-child {
    background: #ef4444;
}

.sites-browser-bar span:nth-child(2) {
    background: #f59e0b;
}

.sites-browser-bar span:nth-child(3) {
    background: #22c55e;
}

.sites-browser-content {
    padding: 24px 20px 32px;
}

.sites-line {
    height: 10px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
    margin-bottom: 12px;
}

.sites-line--w80 { width: 80%; }
.sites-line--w70 { width: 70%; }
.sites-line--w50 { width: 50%; }
.sites-line--w40 { width: 40%; }

.sites-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 20px 0;
}

.sites-block {
    height: 72px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.08), rgba(142, 68, 173, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.04);
}

/* Floating labels */
.sites-float {
    position: absolute;
    background: rgba(17, 24, 39, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #22c55e;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    animation: float 4s ease-in-out infinite alternate;
}

.sites-float--1 {
    top: 10%;
    right: -10px;
    animation-delay: 0s;
}

.sites-float--2 {
    bottom: 20%;
    left: -20px;
    animation-delay: -1.5s;
}

.sites-float--3 {
    top: 40%;
    right: -30px;
    animation-delay: -3s;
    color: #a855f7;
}

@keyframes float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-12px); }
}

/* ========================= */
/* Personalizados — Showcase  */
/* ========================= */
.personalizados-showcase {
    position: relative;
    width: 380px;
    height: 380px;
}

.personalizados-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    border-radius: 16px;
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.personalizados-item:hover {
    border-color: rgba(245, 158, 11, 0.3);
    transform: scale(1.05);
}

.personalizados-item i {
    font-size: 1.5rem;
    color: #f59e0b;
}

.personalizados-item span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #d1d5db;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.personalizados-item--1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.personalizados-item--2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.personalizados-item--3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.personalizados-item--4 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.personalizados-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 0 40px rgba(245, 158, 11, 0.2);
}

/* Connecting lines */
.personalizados-showcase::before,
.personalizados-showcase::after {
    content: '';
    position: absolute;
    background: rgba(245, 158, 11, 0.1);
}

.personalizados-showcase::before {
    top: 50%;
    left: 15%;
    right: 15%;
    height: 1px;
}

.personalizados-showcase::after {
    left: 50%;
    top: 15%;
    bottom: 15%;
    width: 1px;
}

/* ========================= */
/* WhatsApp Float Pulse       */
/* ========================= */
@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.fixed.bottom-6.right-6 {
    animation: whatsappPulse 2s infinite;
}
