/* Regras específicas para o Elementor */
.elementor-widget-taplist-interactive .taplist-header {
    margin-bottom: 40px !important;
    padding: 0 !important;
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
}

.elementor-widget-taplist-interactive .chaos-background {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    pointer-events: none !important;
    overflow: hidden !important;
}

.elementor-widget-taplist-interactive .taplist-info-panel {
    position: relative !important;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%) !important;
    border-radius: 20px !important;
    padding: 30px !important;
    margin: 20px 0 !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 30px !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 107, 53, 0.2) !important;
}

.elementor-widget-taplist-interactive .chaos-shape {
    position: absolute !important;
    opacity: 0.1 !important;
    animation: chaosFloat 8s ease-in-out infinite !important;
}

.elementor-widget-taplist-interactive .chaos-triangle {
    width: 0 !important;
    height: 0 !important;
    border-left: 30px solid transparent !important;
    border-right: 30px solid transparent !important;
    border-bottom: 52px solid #ff6b35 !important;
    top: 20% !important;
    left: 10% !important;
    animation-delay: 0s !important;
}

.elementor-widget-taplist-interactive .chaos-circle {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: #ff6b35 !important;
    top: 60% !important;
    right: 15% !important;
    animation-delay: 2s !important;
}

.elementor-widget-taplist-interactive .chaos-hexagon {
    width: 35px !important;
    height: 20px !important;
    background: #ff6b35 !important;
    position: relative !important;
    top: 40% !important;
    left: 80% !important;
    animation-delay: 4s !important;
}

.elementor-widget-taplist-interactive .chaos-icon {
    font-size: 48px !important;
    animation: pulse 2s ease-in-out infinite !important;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5)) !important;
}

.elementor-widget-taplist-interactive .taplist-title .title-main {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
    display: block !important;
}

.elementor-widget-taplist-interactive .taplist-title .title-sub {
    font-size: 16px !important;
    color: #ff6b35 !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    display: block !important;
}

.elementor-widget-taplist-interactive .taplist-description {
    color: #e0e0e0 !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    margin: 15px 0 0 0 !important;
}

.elementor-widget-taplist-interactive .taplist-update-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
    border: none !important;
    border-radius: 15px !important;
    padding: 15px 25px !important;
    color: white !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3) !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.elementor-widget-taplist-interactive .taplist-update-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4) !important;
}

.elementor-widget-taplist-interactive .update-icon {
    font-size: 20px !important;
    animation: rotate 2s linear infinite paused !important;
}

.elementor-widget-taplist-interactive .taplist-update-btn.updating .update-icon {
    animation-play-state: running !important;
}

.taplist-header-widget .chaos-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.taplist-header-widget .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ff6b35;
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 6s ease-in-out infinite;
}

/* Responsividade para Widget de Cabeçalho */
@media (max-width: 1024px) {
    .taplist-header-widget .taplist-info-panel {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .taplist-header-widget .taplist-info-panel {
        padding: 20px;
        margin: 0 10px;
    }
    
    .taplist-header-widget .chaos-icon {
        font-size: 36px;
    }
    
    .taplist-header-widget .title-main {
        font-size: 22px;
    }
}

/* Animações */
@keyframes chaosFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(90deg); }
    50% { transform: translateY(-5px) rotate(180deg); }
    75% { transform: translateY(-15px) rotate(270deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.6; }
    25% { transform: translateY(-20px) translateX(10px); opacity: 0.8; }
    50% { transform: translateY(-10px) translateX(-5px); opacity: 0.4; }
    75% { transform: translateY(-30px) translateX(15px); opacity: 0.9; }
}

/* Responsividade Geral */
@media (max-width: 1024px) {
    .taplist-info-panel {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .taplist-info-panel {
        padding: 20px;
        margin: 0 10px;
    }
    
    .chaos-icon {
        font-size: 36px;
    }
    
    .title-main {
        font-size: 22px;
    }
}
/* Widget de Cabeçalho Separado */
.taplist-header-widget .taplist-header {
    margin-bottom: 40px;
    padding: 0;
    position: relative;
    overflow: hidden;
    display: block;
}

.taplist-header-widget .chaos-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.taplist-header-widget .taplist-info-panel {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 20px;
    padding: 30px;
    margin: 20px 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.taplist-header-widget .chaos-shape {
    position: absolute;
    opacity: 0.1;
    animation: chaosFloat 8s ease-in-out infinite;
}

.taplist-header-widget .chaos-triangle {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 52px solid #ff6b35;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.taplist-header-widget .chaos-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ff6b35;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.taplist-header-widget .chaos-hexagon {
    width: 35px;
    height: 20px;
    background: #ff6b35;
    position: relative;
    top: 40%;
    left: 80%;
    animation-delay: 4s;
}

.taplist-header-widget .chaos-icon {
    font-size: 48px;
    animation: pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
}

.taplist-header-widget .taplist-title .title-main {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    display: block;
}

.taplist-header-widget .taplist-title .title-sub {
    font-size: 16px;
    color: #ff6b35;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
}

.taplist-header-widget .taplist-description {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.6;
    margin: 15px 0 0 0;
}

.taplist-header-widget .taplist-update-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border: none;
    border-radius: 15px;
    padding: 15px 25px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.taplist-header-widget .taplist-update-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.taplist-header-widget .update-icon {
    font-size: 20px;
    animation: rotate 2s linear infinite paused;
}

.taplist-header-widget .taplist-update-btn.updating .update-icon {
    animation-play-state: running;
}

.taplist-header-widget .chaos-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.taplist-header-widget .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ff6b35;
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 6s ease-in-out infinite;
}

/* Responsividade para Widget de Cabeçalho */
@media (max-width: 1024px) {
    .taplist-header-widget .taplist-info-panel {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .taplist-header-widget .taplist-info-panel {
        padding: 20px;
        margin: 0 10px;
    }
    
    .taplist-header-widget .chaos-icon {
        font-size: 36px;
    }
    
    .taplist-header-widget .title-main {
        font-size: 22px;
    }
}

/* Cabeçalho Moderno Inspirado no Site da Teoria do Caos */
.taplist-header-widget .chaos-hero-section {
    position: relative;
    min-height: 300px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #1a1a2e 100%);
    overflow: hidden;
    border-radius: 25px;
    margin: 20px 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.taplist-header-widget .chaos-geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.taplist-header-widget .geometric-pattern {
    position: absolute;
    border: 2px solid #ff6b35;
    animation: geometricFloat 12s ease-in-out infinite;
}

.taplist-header-widget .pattern-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 5%;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.taplist-header-widget .pattern-2 {
    width: 60px;
    height: 60px;
    top: 70%;
    right: 10%;
    border-radius: 50%;
    animation-delay: 4s;
}

.taplist-header-widget .pattern-3 {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid #ff6b35;
    top: 40%;
    right: 20%;
    animation-delay: 8s;
}

.taplist-header-widget .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.taplist-header-widget .float-element {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ff6b35;
    border-radius: 50%;
    opacity: 0.6;
    animation: floatParticle 8s ease-in-out infinite;
}

.taplist-header-widget .hero-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    min-height: 300px;
    gap: 40px;
}

.taplist-header-widget .hero-left {
    flex: 0 0 auto;
}

.taplist-header-widget .chaos-logo-area {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.taplist-header-widget .logo-geometric-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.taplist-header-widget .frame-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid #ff6b35;
}

.taplist-header-widget .corner-tl {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.taplist-header-widget .corner-tr {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.taplist-header-widget .corner-bl {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.taplist-header-widget .corner-br {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.taplist-header-widget .beer-icon-modern {
    font-size: 60px;
    z-index: 3;
    position: relative;
    animation: iconPulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.6));
}

.taplist-header-widget .chaos-rings-modern {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.taplist-header-widget .ring-modern {
    position: absolute;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    animation: ringRotate 10s linear infinite;
}

.taplist-header-widget .ring-1 {
    width: 100px;
    height: 100px;
    top: -50px;
    left: -50px;
    animation-delay: 0s;
}

.taplist-header-widget .ring-2 {
    width: 130px;
    height: 130px;
    top: -65px;
    left: -65px;
    animation-delay: 3s;
    animation-direction: reverse;
}

.taplist-header-widget .ring-3 {
    width: 160px;
    height: 160px;
    top: -80px;
    left: -80px;
    animation-delay: 6s;
}

.taplist-header-widget .hero-center {
    flex: 1;
    text-align: center;
}

.taplist-header-widget .title-section-modern {
    margin-bottom: 30px;
}

.taplist-header-widget .main-title-modern {
    margin: 0;
    line-height: 1.2;
}

.taplist-header-widget .title-line {
    display: block;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.taplist-header-widget .title-main-line {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 8px;
    animation: titleGlow 4s ease-in-out infinite;
}

.taplist-header-widget .title-sub-line {
    font-size: 24px;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 4px;
    animation: subtitleShimmer 3s ease-in-out infinite;
}

.taplist-header-widget .title-underline {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.taplist-header-widget .underline-segment {
    height: 4px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
    border-radius: 2px;
    animation: segmentPulse 2s ease-in-out infinite;
}

.taplist-header-widget .segment-1 {
    width: 60px;
    animation-delay: 0s;
}

.taplist-header-widget .segment-2 {
    width: 40px;
    animation-delay: 0.5s;
}

.taplist-header-widget .segment-3 {
    width: 80px;
    animation-delay: 1s;
}

.taplist-header-widget .description-modern {
    max-width: 600px;
    margin: 0 auto;
}

.taplist-header-widget .description-frame {
    position: relative;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
}

.taplist-header-widget .frame-decoration {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid #ff6b35;
}

.taplist-header-widget .deco-left {
    top: -10px;
    left: -10px;
    border-right: none;
    border-bottom: none;
}

.taplist-header-widget .deco-right {
    bottom: -10px;
    right: -10px;
    border-left: none;
    border-top: none;
}

.taplist-header-widget .description-text {
    color: #e0e0e0;
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
    text-align: center;
}

.taplist-header-widget .hero-right {
    flex: 0 0 auto;
}

.taplist-header-widget .update-btn-modern {
    position: relative;
    background: none;
    border: none;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
}

.taplist-header-widget .btn-bg-layers {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.taplist-header-widget .btn-layer {
    position: absolute;
    border-radius: 50%;
    animation: layerPulse 3s ease-in-out infinite;
}

.taplist-header-widget .layer-1 {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    animation-delay: 0s;
}

.taplist-header-widget .layer-2 {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: linear-gradient(135deg, #f7931e, #ff6b35);
    animation-delay: 1s;
}

.taplist-header-widget .layer-3 {
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    animation-delay: 2s;
}

.taplist-header-widget .btn-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: white;
}

.taplist-header-widget .btn-icon {
    font-size: 32px;
    margin-bottom: 8px;
    animation: iconSpin 2s linear infinite paused;
}

.taplist-header-widget .btn-text-main {
    font-size: 16px;
    font-weight: 700;
    display: block;
}

.taplist-header-widget .btn-text-sub {
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.taplist-header-widget .update-btn-modern:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.taplist-header-widget .update-btn-modern:hover .btn-icon {
    animation-play-state: running;
}

.taplist-header-widget .update-btn-modern.updating .btn-icon {
    animation-play-state: running;
}

.taplist-header-widget .btn-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.taplist-header-widget .btn-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0.8;
    animation: particleOrbit 4s linear infinite;
}

/* Animações */
@keyframes geometricFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(90deg); }
    50% { transform: translateY(-8px) rotate(180deg); }
    75% { transform: translateY(-20px) rotate(270deg); }
}

@keyframes floatParticle {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.6; }
    25% { transform: translateY(-30px) translateX(15px); opacity: 1; }
    50% { transform: translateY(-15px) translateX(-10px); opacity: 0.4; }
    75% { transform: translateY(-40px) translateX(20px); opacity: 0.9; }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes ringRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); }
    50% { text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 255, 255, 0.3); }
}

@keyframes subtitleShimmer {
    0%, 100% { color: #ff6b35; }
    50% { color: #f7931e; }
}

@keyframes segmentPulse {
    0%, 100% { opacity: 0.6; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.2); }
}

@keyframes layerPulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

@keyframes iconSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes particleOrbit {
    from { transform: rotate(0deg) translateX(60px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(60px) rotate(-360deg); }
}

/* Responsividade */
@media (max-width: 1024px) {
    .taplist-header-widget .hero-content-wrapper {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }
    
    .taplist-header-widget .title-main-line {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .taplist-header-widget .chaos-hero-section {
        min-height: 250px;
    }
    
    .taplist-header-widget .hero-content-wrapper {
        padding: 20px;
    }
    
    .taplist-header-widget .chaos-logo-area {
        width: 80px;
        height: 80px;
    }
    
    .taplist-header-widget .beer-icon-modern {
        font-size: 40px;
    }
    
    .taplist-header-widget .title-main-line {
        font-size: 28px;
    }
    
    .taplist-header-widget .title-sub-line {
        font-size: 18px;
    }
    
    .taplist-header-widget .update-btn-modern {
        width: 100px;
        height: 100px;
    }
}