/* =================================
   PÁGINA: INDEX (HOME) - EXTRAÍDA DO HTML
   ================================= */

/* Header específico do index (position absolute) */
.page-index .header {
    position: absolute;
    right: 30px;
}

/* ===== HERO SECTION INDEX ===== */
.hero {
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero__content-wrapper {
    display: flex;
    min-height: inherit;
    position: relative;
    -webkit-mask-image: var(--mask-gradient);
    mask-image: var(--mask-gradient);
}

.hero__side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5rem 2.5rem;
    position: relative;
    z-index: 2;
    transition: transform var(--transition-slow);
}

.hero__side:hover {
    transform: scale(1.02);
}

.hero__side--client {
    background: radial-gradient(circle at top left, rgba(72, 0, 170, 0.95), rgba(20, 0, 60, 0.95)),
                linear-gradient(135deg, rgba(58, 0, 136, 0.85), rgba(90, 0, 153, 0.85));
}

.hero__side--promoter {
    background: radial-gradient(circle at bottom right, rgba(255, 90, 0, 0.95), rgba(90, 0, 40, 0.95)),
                linear-gradient(135deg, rgba(255, 90, 0, 0.85), rgba(202, 144, 74, 0.85));
}

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.hero__tag {
    background: rgba(255, 255, 255, 0.25);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-lg);
    font-size: 0.85rem;
    margin-bottom: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero__title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero__description {
    font-size: 1.1rem;
    max-width: 22rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 400;
}

/* Hero description responsiva com data attributes */
.hero__description[data-full],
.hero__description[data-medium],
.hero__description[data-short] {
    transition: opacity var(--transition-normal);
}

/* Extra info específica do index */
.hero__extra-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.benefit-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

/* Logo central específico do index */
.hero__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: transform var(--transition-normal);
}

.hero__logo:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.hero__logo img {
    width: clamp(500px, 30vw, 450px);
    height: auto;
    
    user-select: none;
    touch-action: none;
    background: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* Logo home específica */
.hero__logo.home {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Botões hero específicos do index */
.hero__button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: all var(--transition-normal);
}

/* Cores específicas do index (diferentes do cliente) */
.hero__side--client .hero__button {
    background-color: #3a0088;
    color: var(--text-primary);
}

.hero__side--promoter .hero__button {
    background-color: #ff5a00;
    color: var(--text-primary);
}

.hero__button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* ===== ELEMENTOS FLUTUANTES INDEX ===== */
.floating-elements {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 1001 !important;
    pointer-events: none !important;
    overflow: visible !important;
}

.floating-element {
    position: absolute !important;
    z-index: 1001 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: none !important;
    box-shadow: none !important;
    border: none !important;
    transition: transform var(--transition-normal) !important;
}

.floating-element:hover {
    transform: scale(1.15) !important;
    pointer-events: auto !important;
}

.floating-element img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    border-radius: 0 !important;
    opacity: 1 !important;
    background: none !important;
}

.floating-element::before,
.floating-element::after {
    content: none !important;
}

/* Elementos posicionados específicos do index */
.element-1 {
    width: 45px !important;
    height: 45px !important;
    top: 25% !important;
    left: 10% !important;
    animation: float-circular 8s ease-in-out infinite !important;
}

.element-2 {
    width: 40px !important;
    height: 40px !important;
    top: 65% !important;
    right: 15% !important;
    animation: float-vertical 6s ease-in-out infinite !important;
    animation-delay: -2s !important;
}

.element-3 {
    width: 50px !important;
    height: 50px !important;
    bottom: 20% !important;
    left: 20% !important;
    animation: float-diagonal 10s ease-in-out infinite !important;
    animation-delay: -4s !important;
}

.element-4 {
    width: 35px !important;
    height: 35px !important;
    top: 40% !important;
    right: 30% !important;
    animation: float-horizontal 7s ease-in-out infinite !important;
    animation-delay: -1s !important;
}




